In [1]:
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
  • Reading dataframe
In [2]:
df = pd.read_csv("tweet_data.csv")
  • Viewing tweets present in our dataset
In [3]:
df.sample(10)
Out[3]:
textID tweet_text sentiment
18208 1753727872 @tommk tell your friends to tie you to the rai... negative
15846 1752750806 finally gave twitter a try, will find out why ... positive
6384 1964042635 @tinyraisins Im in so deep its disgusting. I w... negative
11265 1694745588 @cosmicmother some great stuff on website today positive
4760 1962803229 @ClintonSparks I told u I tried but 88 said it... negative
2777 1961063064 @CharPower I gave up cable in these tough eco... positive
4945 1962898374 http://twitpic.com/675t7 - Square B - she is s... negative
6128 1963810183 "The things, you say, your purple prose j... negative
14159 1751641828 @BruceOCz Thanks for the advice! Went to the d... positive
11311 1694768606 Thanks for the follow, Doug. I like that hat positive
  • Checking total number of tweets
In [4]:
print("Number of tweets: {}".format(len(df)))
Number of tweets: 18727
  • Printing a tweet and sentiment based on a tweet ID
In [5]:
tweet_id =4879
tweet = df.iloc[tweet_id]
In [6]:
print("Tweet:{}".format(tweet["tweet_text"]))
print("Tweet sentiment:{}".format(tweet["sentiment"]))
Tweet:Bad Day. History Test Tommorrow. And I want to go out in the sun and play..
Tweet sentiment:negative
  • Using piechart to show how tweets are distributed over the dataset
In [7]:
import matplotlib.pyplot as plt
sentiment_count = df["sentiment"].value_counts()
plt.pie(sentiment_count, labels=sentiment_count.index, 
        autopct='%1.1f%%', shadow=True, startangle=140)
plt.show()
In [8]:
print("Number of + tweets: {}".format(df[df["sentiment"]=="positive"].count()[0]))
print("Number of - tweets: {}".format(df[df["sentiment"]=="negative"].count()[0]))
Number of + tweets: 9897
Number of - tweets: 8830
  • Display the most often positive words in the tweets
In [9]:
from wordcloud.wordcloud import WordCloud
In [10]:
pos_tweets = df[df["sentiment"]=="positive"]
txt = " ".join(tweet.lower() 
               for tweet in pos_tweets["tweet_text"])
wordcloud = WordCloud().generate(txt)
plt.imshow(wordcloud, interpolation="bilinear")
plt.axis("off")
plt.show()
  • Display the most often negative words in the tweets
In [11]:
neg_tweets = df[df["sentiment"]=="negative"]
txt = " ".join(tweet.lower() for tweet in neg_tweets["tweet_text"])
wordcloud = WordCloud().generate(txt)
plt.imshow(wordcloud, interpolation="bilinear")
plt.axis("off")
plt.show()
  • Text Normalization (Reducing randomness in a particular piece of text) To achieve this we will use REGEX
In [12]:
import re
  • Example of a twitter's random tweet
In [13]:
tweet = "RT @AIOutsider I love this! 👍 https://AIOutsider.com #NLP #Fun"
  • Handling Retweet Tag Replacing the occurences of RT(Retweets) with a default value
In [14]:
def replace_retweet(tweet, default_replace=""):
    tweet = re.sub('RT\s+', default_replace, tweet)
    return tweet
In [15]:
print("Processed tweet: {}".format(replace_retweet(tweet)))
Processed tweet: @AIOutsider I love this! 👍 https://AIOutsider.com #NLP #Fun
  • Handling User Tag Replacing @Someone with a default user tag
In [16]:
def replace_user(tweet, default_replace="twitteruser"):
    tweet = re.sub('\B@\w+', default_replace, tweet)
    return tweet
In [17]:
print("Processed tweet: {}".format(replace_user(tweet)))
Processed tweet: RT twitteruser I love this! 👍 https://AIOutsider.com #NLP #Fun
  • Emojis Replacing emojis with meaningful text
In [18]:
import emoji
In [19]:
def demojize(tweet):
    tweet = emoji.demojize(tweet)
    return tweet
In [20]:
print("Processed tweet: {}".format(demojize(tweet)))
Processed tweet: RT @AIOutsider I love this! :thumbs_up: https://AIOutsider.com #NLP #Fun
  • Handling URL Replacing the occurences of http:// or https:// with a default value
In [21]:
def replace_url(tweet, default_replace=""):
    tweet = re.sub('(http|https):\/\/\S+', default_replace, tweet)
    return tweet
In [22]:
print("Processed tweet: {}".format(replace_url(tweet)))
Processed tweet: RT @AIOutsider I love this! 👍  #NLP #Fun
  • Handling Hashtags Replacing occurence of #something with a default value
In [23]:
def replace_hashtag(tweet, default_replace=""):
    tweet = re.sub('#+', default_replace, tweet)
    return tweet
In [24]:
print("Processed tweet: {}".format(replace_hashtag(tweet)))
Processed tweet: RT @AIOutsider I love this! 👍 https://AIOutsider.com NLP Fun

TEXT CLEANING¶

Removing or replacing all the items that do not provide additional information

  • considering other features that are not really Twitter-dependant
In [25]:
tweet = "LOOOOOOOOK at this ... I'd like it so much!"
  • Removing upper capitilization lower case each letter in a specific tweet
In [26]:
def to_lowercase(tweet):
    tweet = tweet.lower()
    return tweet
In [27]:
print("Processed tweet: {}".format(to_lowercase(tweet)))
Processed tweet: looooooook at this ... i'd like it so much!

Word Repetition¶

  • Replacing word repetition with a single occurence("oooooooo" becomes "oo")
In [28]:
def word_repetition(tweet):
    tweet = re.sub(r'(.)\1+',r'\1\1', tweet)
    return tweet
In [29]:
print("Processed tweet: {}".format(word_repetition(tweet)))
Processed tweet: LOOK at this .. I'd like it so much!

Punctuation Repetition¶

  • Replacing punctuation repetition with a single occurence("!!!!!" becomes "!")
In [30]:
def punct_repetition(tweet, default_replace=""):
    tweet = re.sub(r'[\?\.\!]+(?=[\?\.\!])', default_replace, tweet)
    return tweet
In [31]:
print("Processed tweet: {}".format(punct_repetition(tweet)))
Processed tweet: LOOOOOOOOK at this . I'd like it so much!

Word Contraction¶

In [32]:
import contractions
  • Use contractions_dict to list most common contractions
In [33]:
print(contractions.contractions_dict)
{"I'm": 'I am', "I'm'a": 'I am about to', "I'm'o": 'I am going to', "I've": 'I have', "I'll": 'I will', "I'll've": 'I will have', "I'd": 'I would', "I'd've": 'I would have', 'Whatcha': 'What are you', "amn't": 'am not', "ain't": 'are not', "aren't": 'are not', "'cause": 'because', "can't": 'cannot', "can't've": 'cannot have', "could've": 'could have', "couldn't": 'could not', "couldn't've": 'could not have', "daren't": 'dare not', "daresn't": 'dare not', "dasn't": 'dare not', "didn't": 'did not', 'didn’t': 'did not', "don't": 'do not', 'don’t': 'do not', "doesn't": 'does not', "e'er": 'ever', "everyone's": 'everyone is', 'finna': 'fixing to', 'gimme': 'give me', "gon't": 'go not', 'gonna': 'going to', 'gotta': 'got to', "hadn't": 'had not', "hadn't've": 'had not have', "hasn't": 'has not', "haven't": 'have not', "he've": 'he have', "he's": 'he is', "he'll": 'he will', "he'll've": 'he will have', "he'd": 'he would', "he'd've": 'he would have', "here's": 'here is', "how're": 'how are', "how'd": 'how did', "how'd'y": 'how do you', "how's": 'how is', "how'll": 'how will', "isn't": 'is not', "it's": 'it is', "'tis": 'it is', "'twas": 'it was', "it'll": 'it will', "it'll've": 'it will have', "it'd": 'it would', "it'd've": 'it would have', 'kinda': 'kind of', "let's": 'let us', 'luv': 'love', "ma'am": 'madam', "may've": 'may have', "mayn't": 'may not', "might've": 'might have', "mightn't": 'might not', "mightn't've": 'might not have', "must've": 'must have', "mustn't": 'must not', "mustn't've": 'must not have', "needn't": 'need not', "needn't've": 'need not have', "ne'er": 'never', "o'": 'of', "o'clock": 'of the clock', "ol'": 'old', "oughtn't": 'ought not', "oughtn't've": 'ought not have', "o'er": 'over', "shan't": 'shall not', "sha'n't": 'shall not', "shalln't": 'shall not', "shan't've": 'shall not have', "she's": 'she is', "she'll": 'she will', "she'd": 'she would', "she'd've": 'she would have', "should've": 'should have', "shouldn't": 'should not', "shouldn't've": 'should not have', "so've": 'so have', "so's": 'so is', "somebody's": 'somebody is', "someone's": 'someone is', "something's": 'something is', 'sux': 'sucks', "that're": 'that are', "that's": 'that is', "that'll": 'that will', "that'd": 'that would', "that'd've": 'that would have', "'em": 'them', "there're": 'there are', "there's": 'there is', "there'll": 'there will', "there'd": 'there would', "there'd've": 'there would have', "these're": 'these are', "they're": 'they are', "they've": 'they have', "they'll": 'they will', "they'll've": 'they will have', "they'd": 'they would', "they'd've": 'they would have', "this's": 'this is', "this'll": 'this will', "this'd": 'this would', "those're": 'those are', "to've": 'to have', 'wanna': 'want to', "wasn't": 'was not', "we're": 'we are', "we've": 'we have', "we'll": 'we will', "we'll've": 'we will have', "we'd": 'we would', "we'd've": 'we would have', "weren't": 'were not', "what're": 'what are', "what'd": 'what did', "what've": 'what have', "what's": 'what is', "what'll": 'what will', "what'll've": 'what will have', "when've": 'when have', "when's": 'when is', "where're": 'where are', "where'd": 'where did', "where've": 'where have', "where's": 'where is', "which's": 'which is', "who're": 'who are', "who've": 'who have', "who's": 'who is', "who'll": 'who will', "who'll've": 'who will have', "who'd": 'who would', "who'd've": 'who would have', "why're": 'why are', "why'd": 'why did', "why've": 'why have', "why's": 'why is', "will've": 'will have', "won't": 'will not', "won't've": 'will not have', "would've": 'would have', "wouldn't": 'would not', "wouldn't've": 'would not have', "y'all": 'you all', "y'all're": 'you all are', "y'all've": 'you all have', "y'all'd": 'you all would', "y'all'd've": 'you all would have', "you're": 'you are', "you've": 'you have', "you'll've": 'you shall have', "you'll": 'you will', "you'd": 'you would', "you'd've": 'you would have', 'to cause': 'to cause', 'will cause': 'will cause', 'should cause': 'should cause', 'would cause': 'would cause', 'can cause': 'can cause', 'could cause': 'could cause', 'must cause': 'must cause', 'might cause': 'might cause', 'shall cause': 'shall cause', 'may cause': 'may cause', 'jan.': 'january', 'feb.': 'february', 'mar.': 'march', 'apr.': 'april', 'jun.': 'june', 'jul.': 'july', 'aug.': 'august', 'sep.': 'september', 'oct.': 'october', 'nov.': 'november', 'dec.': 'december', 'I’m': 'I am', 'I’m’a': 'I am about to', 'I’m’o': 'I am going to', 'I’ve': 'I have', 'I’ll': 'I will', 'I’ll’ve': 'I will have', 'I’d': 'I would', 'I’d’ve': 'I would have', 'amn’t': 'am not', 'ain’t': 'are not', 'aren’t': 'are not', '’cause': 'because', 'can’t': 'cannot', 'can’t’ve': 'cannot have', 'could’ve': 'could have', 'couldn’t': 'could not', 'couldn’t’ve': 'could not have', 'daren’t': 'dare not', 'daresn’t': 'dare not', 'dasn’t': 'dare not', 'doesn’t': 'does not', 'e’er': 'ever', 'everyone’s': 'everyone is', 'gon’t': 'go not', 'hadn’t': 'had not', 'hadn’t’ve': 'had not have', 'hasn’t': 'has not', 'haven’t': 'have not', 'he’ve': 'he have', 'he’s': 'he is', 'he’ll': 'he will', 'he’ll’ve': 'he will have', 'he’d': 'he would', 'he’d’ve': 'he would have', 'here’s': 'here is', 'how’re': 'how are', 'how’d': 'how did', 'how’d’y': 'how do you', 'how’s': 'how is', 'how’ll': 'how will', 'isn’t': 'is not', 'it’s': 'it is', '’tis': 'it is', '’twas': 'it was', 'it’ll': 'it will', 'it’ll’ve': 'it will have', 'it’d': 'it would', 'it’d’ve': 'it would have', 'let’s': 'let us', 'ma’am': 'madam', 'may’ve': 'may have', 'mayn’t': 'may not', 'might’ve': 'might have', 'mightn’t': 'might not', 'mightn’t’ve': 'might not have', 'must’ve': 'must have', 'mustn’t': 'must not', 'mustn’t’ve': 'must not have', 'needn’t': 'need not', 'needn’t’ve': 'need not have', 'ne’er': 'never', 'o’': 'of', 'o’clock': 'of the clock', 'ol’': 'old', 'oughtn’t': 'ought not', 'oughtn’t’ve': 'ought not have', 'o’er': 'over', 'shan’t': 'shall not', 'sha’n’t': 'shall not', 'shalln’t': 'shall not', 'shan’t’ve': 'shall not have', 'she’s': 'she is', 'she’ll': 'she will', 'she’d': 'she would', 'she’d’ve': 'she would have', 'should’ve': 'should have', 'shouldn’t': 'should not', 'shouldn’t’ve': 'should not have', 'so’ve': 'so have', 'so’s': 'so is', 'somebody’s': 'somebody is', 'someone’s': 'someone is', 'something’s': 'something is', 'that’re': 'that are', 'that’s': 'that is', 'that’ll': 'that will', 'that’d': 'that would', 'that’d’ve': 'that would have', '’em': 'them', 'there’re': 'there are', 'there’s': 'there is', 'there’ll': 'there will', 'there’d': 'there would', 'there’d’ve': 'there would have', 'these’re': 'these are', 'they’re': 'they are', 'they’ve': 'they have', 'they’ll': 'they will', 'they’ll’ve': 'they will have', 'they’d': 'they would', 'they’d’ve': 'they would have', 'this’s': 'this is', 'this’ll': 'this will', 'this’d': 'this would', 'those’re': 'those are', 'to’ve': 'to have', 'wasn’t': 'was not', 'we’re': 'we are', 'we’ve': 'we have', 'we’ll': 'we will', 'we’ll’ve': 'we will have', 'we’d': 'we would', 'we’d’ve': 'we would have', 'weren’t': 'were not', 'what’re': 'what are', 'what’d': 'what did', 'what’ve': 'what have', 'what’s': 'what is', 'what’ll': 'what will', 'what’ll’ve': 'what will have', 'when’ve': 'when have', 'when’s': 'when is', 'where’re': 'where are', 'where’d': 'where did', 'where’ve': 'where have', 'where’s': 'where is', 'which’s': 'which is', 'who’re': 'who are', 'who’ve': 'who have', 'who’s': 'who is', 'who’ll': 'who will', 'who’ll’ve': 'who will have', 'who’d': 'who would', 'who’d’ve': 'who would have', 'why’re': 'why are', 'why’d': 'why did', 'why’ve': 'why have', 'why’s': 'why is', 'will’ve': 'will have', 'won’t': 'will not', 'won’t’ve': 'will not have', 'would’ve': 'would have', 'wouldn’t': 'would not', 'wouldn’t’ve': 'would not have', 'y’all': 'you all', 'y’all’re': 'you all are', 'y’all’ve': 'you all have', 'y’all’d': 'you all would', 'y’all’d’ve': 'you all would have', 'you’re': 'you are', 'you’ve': 'you have', 'you’ll’ve': 'you shall have', 'you’ll': 'you will', 'you’d': 'you would', 'you’d’ve': 'you would have'}
  • Create a _fix_contractions function used to replace contractions with their extended forms by using the contractions dictionary
In [34]:
def _fix_contractions(tweet):
    for k, v in contractions.contractions_dict.items():
        tweet = tweet.replace(k, v)
        return tweet
In [35]:
print("Processed tweet: {}".format(_fix_contractions(tweet)))
Processed tweet: LOOOOOOOOK at this ... I'd like it so much!
  • Create a _fix_contractions function used to replace contractions with their extended forms by using the contractions packages
In [36]:
def fix_contractions(tweet):
    tweet = contractions.fix(tweet)
    return tweet
In [37]:
print("Processed tweet: {}".format(fix_contractions(tweet)))
Processed tweet: LOOOOOOOOK at this ... I would like it so much!

TOKENIZATION¶

The way to separate text into smaller chunks that can be used by computers to learn

Tokenization exceptions

Punctuations- hello!!!!!!!! - !!!!!!

Stop words - I am happy - I am

Numbers - I won $50, so nice - $50

      Almost won $1M,  so angry  - $1M
  • Install NLTK package
In [38]:
pip install nltk
Requirement already satisfied: nltk in c:\users\administrator\anaconda3\lib\site-packages (3.7)
Requirement already satisfied: regex>=2021.8.3 in c:\users\administrator\anaconda3\lib\site-packages (from nltk) (2022.7.9)
Requirement already satisfied: joblib in c:\users\administrator\anaconda3\lib\site-packages (from nltk) (1.1.0)
Requirement already satisfied: click in c:\users\administrator\anaconda3\lib\site-packages (from nltk) (8.0.4)
Requirement already satisfied: tqdm in c:\users\administrator\anaconda3\lib\site-packages (from nltk) (4.64.1)
Requirement already satisfied: colorama in c:\users\administrator\anaconda3\lib\site-packages (from click->nltk) (0.4.5)
Note: you may need to restart the kernel to use updated packages.

Easy Tokenization¶

  • -Import NLTK

  • -Import the word_tokenize module from NLTK

  • -Download the punkt tokenizer model from NLTK

In [39]:
import nltk
from nltk.tokenize import word_tokenize
nltk.download('punkt')
[nltk_data] Downloading package punkt to
[nltk_data]     C:\Users\Administrator\AppData\Roaming\nltk_data...
[nltk_data]   Package punkt is already up-to-date!
Out[39]:
True
  • simple tweet to be tokenized
In [40]:
tweet = "These are 5 different words!"
  • Create a tokenize() function that takes a tweet as input and returns a list of tokens
In [41]:
def tokenize(tweet):
    tokens = word_tokenize(tweet)
    return tokens
  • Use the tokenize() function to print the tokenized version of a tweet
In [42]:
print(type(tokenize(tweet)))
print("Tweet tokens: {}".format(tokenize(tweet)))
<class 'list'>
Tweet tokens: ['These', 'are', '5', 'different', 'words', '!']

Custom Tokenization¶

  • Import the string package
In [43]:
import string
  • Retrieve English punctuation signs by using the string package
In [44]:
print(string.punctuation)
!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~
  • Import the stopwords module from NLTK

  • Download stopwords data from NLTK

In [45]:
from nltk.corpus import stopwords
nltk.download('stopwords')
[nltk_data] Downloading package stopwords to
[nltk_data]     C:\Users\Administrator\AppData\Roaming\nltk_data...
[nltk_data]   Package stopwords is already up-to-date!
Out[45]:
True
  • Create a set of English stopwords
In [46]:
stop_words = set(stopwords.words('english'))
print(stop_words)
{'myself', 'mightn', 'not', 'weren', 'through', 'y', "mightn't", 'while', 'ma', 'herself', 'wasn', 'in', 'what', 'so', 'between', 'am', "you'd", 'his', 'further', 'mustn', 'until', 'has', 'doesn', 'again', 'hers', 'against', 'her', 'our', 'how', 'down', 'ours', 'he', 'being', 'we', 'above', 'out', 'wouldn', 'ain', "couldn't", 'those', 'below', 'o', "mustn't", 'did', 'or', "doesn't", 'needn', 'ourselves', "hasn't", 're', 'is', 'there', 'shouldn', 'yourself', 'each', 'it', 'for', 'were', 'm', 'that', 'its', "shan't", 'are', 'hadn', 'be', 'on', 'during', 'when', 'have', 'if', 'own', 'shan', 't', 'had', 'll', 'from', 'once', 'my', 'under', 'your', 'an', 'them', 'all', 'other', 'now', 'very', 'was', "don't", 'theirs', 'hasn', 'the', 'at', 'than', 'where', "you're", 'i', 'as', 'only', 'both', 'having', 'themselves', 'they', 'this', 'over', "it's", 'a', 'isn', 'him', 'nor', 'been', 'you', 'yours', 'some', "isn't", 'about', 'couldn', 'here', "haven't", "won't", 'and', 'doing', "she's", 'few', 'itself', 'no', 'yourselves', 'aren', 'whom', 'more', 'will', "that'll", 'does', 've', "wasn't", "aren't", 'with', "needn't", 'then', 'by', 'because', 'can', "you've", 'before', "you'll", 'didn', 'do', 'off', 'who', 'me', 'their', 'of', 'after', 'such', 'haven', 's', 'to', 'same', 'don', 'himself', 'should', "should've", 'd', 'which', "weren't", 'into', 'why', "didn't", 'up', 'she', 'but', 'most', 'any', "wouldn't", 'won', 'just', 'these', "shouldn't", 'too', "hadn't"}
  • Removing some stopwords from the set
In [47]:
stop_words.discard('not')
print(stop_words)
{'myself', 'mightn', 'weren', 'through', 'y', "mightn't", 'while', 'ma', 'herself', 'wasn', 'in', 'what', 'so', 'between', 'am', "you'd", 'his', 'further', 'mustn', 'until', 'has', 'doesn', 'again', 'hers', 'against', 'her', 'our', 'how', 'down', 'ours', 'he', 'being', 'we', 'above', 'out', 'wouldn', 'ain', "couldn't", 'those', 'below', 'o', "mustn't", 'did', 'or', "doesn't", 'needn', 'ourselves', "hasn't", 're', 'is', 'there', 'shouldn', 'yourself', 'each', 'it', 'for', 'were', 'm', 'that', 'its', "shan't", 'are', 'hadn', 'be', 'on', 'during', 'when', 'have', 'if', 'own', 'shan', 't', 'had', 'll', 'from', 'once', 'my', 'under', 'your', 'an', 'them', 'all', 'other', 'now', 'very', 'was', "don't", 'theirs', 'hasn', 'the', 'at', 'than', 'where', "you're", 'i', 'as', 'only', 'both', 'having', 'themselves', 'they', 'this', 'over', "it's", 'a', 'isn', 'him', 'nor', 'been', 'you', 'yours', 'some', "isn't", 'about', 'couldn', 'here', "haven't", "won't", 'and', 'doing', "she's", 'few', 'itself', 'no', 'yourselves', 'aren', 'whom', 'more', 'will', "that'll", 'does', 've', "wasn't", "aren't", 'with', "needn't", 'then', 'by', 'because', 'can', "you've", 'before', "you'll", 'didn', 'do', 'off', 'who', 'me', 'their', 'of', 'after', 'such', 'haven', 's', 'to', 'same', 'don', 'himself', 'should', "should've", 'd', 'which', "weren't", 'into', 'why', "didn't", 'up', 'she', 'but', 'most', 'any', "wouldn't", 'won', 'just', 'these', "shouldn't", 'too', "hadn't"}
  • Creating a custom_tokenize function
In [48]:
def custom_tokenize(tweet,
                   keep_punct = False,
                   keep_alnum = False,
                   keep_stop = False):
    
    token_list = word_tokenize(tweet)
    
    if not keep_punct:
        token_list = [token for token in token_list
                      if token not in string.punctuation]
        
    if not keep_alnum:
        token_list = [token for token in token_list if token.isalpha()]
        
    if not keep_stop:
        stop_words = set(stopwords.words('english'))
        stop_words.discard('not')
        token_list = [token for token in token_list if not token in stop_words]
    return token_list
  • Testing the function with a particular tweet
In [49]:
tweet = "these are 5 different words!"
In [50]:
print("Tweet tokens: {}".format(custom_tokenize(tweet,
                                                keep_punct=True,
                                                keep_alnum=True,
                                                keep_stop=True)))
print("Tweet tokens: {}".format(custom_tokenize(tweet, keep_stop=True)))
print("Tweet tokens: {}".format(custom_tokenize(tweet, keep_alnum=True)))
Tweet tokens: ['these', 'are', '5', 'different', 'words', '!']
Tweet tokens: ['these', 'are', 'different', 'words']
Tweet tokens: ['5', 'different', 'words']

Stemming¶

Stemming is the process of reducing words to their root form. Stemming follows a Rule-based approach (It is an algorith which decides which part of words are cut off). It is faster but it chops words, meaning is less important.

Over stemming- when too much of words are chopped off- universal university universe

Under stemming- when words are not chopped off enough- alumnus alumni alumnae

  • Import different libraries and modules used for stemming
In [51]:
from nltk.stem import PorterStemmer
from nltk.stem import LancasterStemmer
from nltk.stem.snowball import SnowballStemmer
  • List of tokens to stem (remember that we stem tokens and not entire sentences)
In [52]:
tokens = ["manager", "management", "managing"]
  • Stemmers can be defined by directly using NLTK
In [53]:
porter_stemmer = PorterStemmer()
lancaster_stemmer = LancasterStemmer()
snowball_stemmer = SnowballStemmer('english')
  • Create a stem_tokens function that takes the list of tokens as input and returns a list of stemmed tokens
In [54]:
def stem_tokens(tokens, stemmer):
    token_list = []
    for token in tokens:
        token_list.append(stemmer.stem(token))
    return token_list
  • Print the different results and compare the stemmed tokens
In [55]:
print("Porter stems: {}".format(stem_tokens(tokens, porter_stemmer)))
print("Lancaster stems: {}".format(stem_tokens(tokens, lancaster_stemmer)))
print("Snowball stems: {}".format(stem_tokens(tokens, snowball_stemmer)))
Porter stems: ['manag', 'manag', 'manag']
Lancaster stems: ['man', 'man', 'man']
Snowball stems: ['manag', 'manag', 'manag']
  • Check over-stemming and under-stemming
In [56]:
tokens = ["international", "companies", "had", "interns"]
In [57]:
print("Porter stems: {}".format(stem_tokens(tokens, porter_stemmer)))
print("Lancaster stems: {}".format(stem_tokens(tokens, lancaster_stemmer)))
print("Snowball stems: {}".format(stem_tokens(tokens, snowball_stemmer)))
Porter stems: ['intern', 'compani', 'had', 'intern']
Lancaster stems: ['intern', 'company', 'had', 'intern']
Snowball stems: ['intern', 'compani', 'had', 'intern']

Lemmatization¶

Lemmatization serves the same purpose as stemming but makes use of word context. Lemmatization follows Dictionary-based approach(it will always return words found in the dictionary). Lemmatization uses context to determine their shortest but existing dictionary forms. Lemmatization is slower than stemming but it uses context. Meaning is important too.

  • Import different libraries and modules used for lemmatization
In [58]:
from nltk.stem import WordNetLemmatizer
from nltk.corpus import wordnet
nltk.download('wordnet')
[nltk_data] Downloading package wordnet to
[nltk_data]     C:\Users\Administrator\AppData\Roaming\nltk_data...
[nltk_data]   Package wordnet is already up-to-date!
Out[58]:
True
  • List of tokens to lemmatize (remember that we lemmatize tokens and not entire sentences)
In [59]:
tokens = ["international", "companies", "had", "interns"]

Part of Speech (POS) Tagging¶

In [60]:
import nltk
nltk.download('omw-1.4')
[nltk_data] Downloading package omw-1.4 to
[nltk_data]     C:\Users\Administrator\AppData\Roaming\nltk_data...
[nltk_data]   Package omw-1.4 is already up-to-date!
Out[60]:
True
In [61]:
word_type = {"international": wordnet.ADJ,
             "companies": wordnet.NOUN,
             "had": wordnet.VERB,
             "interns": wordnet.NOUN
            }
  • Create the lemmatizer by using the WordNet module
In [62]:
lemmatizer = WordNetLemmatizer()
  • Create a lemmatize_tokens function that takes the list of tokens as input and returns a list of lemmatized tokens
In [63]:
def lemmatize_tokens(tokens, word_type, lemmatizer):
    token_list = []
    for token in tokens:
        token_list.append(lemmatizer.lemmatize(token, word_type[token]))
    return token_list
In [64]:
print("Tweet lemma: {}".format(lemmatize_tokens(tokens, word_type, lemmatizer)))
Tweet lemma: ['international', 'company', 'have', 'intern']

TWEET PRE_PROCESSOR¶

Putting it al together

  • Long and complex tweet to be processed
In [65]:
complex_tweet = r"""RT @AIOutsider : he looooook, 
THis is a big and complex TWeet!!! 👍 ... 
We'd be glad if you couldn't normalize it! 
Check https://t.co/7777 and LET ME KNOW!!! #NLP #Fun"""
  • Create a custom process_tweet function that can be used to process tweets end-to-end

  • Note that this functon will be used as a base for the following sections

In [66]:
def process_tweet(tweet, verbose=False):
  if verbose: print("Initial tweet: {}".format(tweet))

  ## Twitter Features
  tweet = replace_retweet(tweet) # replace retweet
  tweet = replace_user(tweet, "") # replace user tag
  tweet = replace_url(tweet) # replace url
  tweet = replace_hashtag(tweet) # replace hashtag
  if verbose: print("Post Twitter processing tweet: {}".format(tweet))

  ## Word Features
  tweet = to_lowercase(tweet) # lower case
  tweet = fix_contractions(tweet) # replace contractions
  tweet = punct_repetition(tweet) # replace punctuation repetition
  tweet = word_repetition(tweet) # replace word repetition
  tweet = demojize(tweet) # replace emojis
  if verbose: print("Post Word processing tweet: {}".format(tweet))

  ## Tokenization & Stemming
  tokens = custom_tokenize(tweet, keep_alnum=False, keep_stop=False) # tokenize
  stemmer = SnowballStemmer("english") # define stemmer
  stem = stem_tokens(tokens, stemmer) # stem tokens

  return stem
  • Test your process_tweet function!
In [67]:
print(process_tweet(complex_tweet, verbose=False))
['look', 'big', 'complex', 'tweet', 'would', 'glad', 'could', 'not', 'normal', 'check', 'let', 'know', 'nlp', 'fun']
  • Note: it's totally possible you encounter some strange tweet processing (happens if the original tweet is initially strangely written)
In [68]:
import random
In [69]:
for i in range(5):
  tweet_id = random.randint(0,len(df))
  tweet = df.iloc[tweet_id]["tweet_text"]
  print(process_tweet(tweet, verbose=True))
  print("\n")
Initial tweet: @adamjackson Better than what I did to my MacBook keyboard yesterday! (Spilled a whole cup of hot chocolate on it.)
Post Twitter processing tweet:  Better than what I did to my MacBook keyboard yesterday! (Spilled a whole cup of hot chocolate on it.)
Post Word processing tweet:  better than what i did to my macbook keyboard yesterday! (spilled a whole cup of hot chocolate on it.)
['better', 'macbook', 'keyboard', 'yesterday', 'spill', 'whole', 'cup', 'hot', 'chocol']


Initial tweet: I hate the fact that I'm 4.5 hours away from you tonight and tomorrow we'll be 1946 miles apart  I wish you were here (
Post Twitter processing tweet: I hate the fact that I'm 4.5 hours away from you tonight and tomorrow we'll be 1946 miles apart  I wish you were here (
Post Word processing tweet: i hate the fact that i am 4.5 hours away from you tonight and tomorrow we will be 1946 miles apart  i wish you were here (
['hate', 'fact', 'hour', 'away', 'tonight', 'tomorrow', 'mile', 'apart', 'wish']


Initial tweet: has on music at work today its so painful
Post Twitter processing tweet: has on music at work today its so painful
Post Word processing tweet: has on music at work today its so painful
['music', 'work', 'today', 'pain']


Initial tweet: Working late at night on a Dell notebook, Dell's quality has gone down hill, warrenty service sucks too, poor people  buy a Mac instead
Post Twitter processing tweet: Working late at night on a Dell notebook, Dell's quality has gone down hill, warrenty service sucks too, poor people  buy a Mac instead
Post Word processing tweet: working late at night on a dell notebook, dell's quality has gone down hill, warrenty service sucks too, poor people  buy a mac instead
['work', 'late', 'night', 'dell', 'notebook', 'dell', 'qualiti', 'gone', 'hill', 'warrenti', 'servic', 'suck', 'poor', 'peopl', 'buy', 'mac', 'instead']


Initial tweet: @Mr_Kimbalicious you can have the milk i have, i only have that here to drink  i think thats whats making me feel sick
Post Twitter processing tweet:  you can have the milk i have, i only have that here to drink  i think thats whats making me feel sick
Post Word processing tweet:  you can have the milk i have, i only have that here to drink  i think that is what is making me feel sick
['milk', 'drink', 'think', 'make', 'feel', 'sick']


VECTORIZATION¶

REPRESENTING TEXT¶

Representing text numerically allows it to be understood by ML models

Lets consider Three methods to represent Text

Positive/Negative Frequencies

Bag of Words

TF-IDF

Processing Tweets

Install the Scikit-Learn package which is versy useful for a lot of different Ml tasks.

In [70]:
#pip install -U scikit-learn
  • Apply process_tweet function created in section 2 to the entire DataFrame

  • Convert sentiment to 1 for "positive" and 0 for "negative" sentiment

In [71]:
df["tokens"] = df["tweet_text"].apply(process_tweet)
df["tweet_sentiment"] = df["sentiment"].apply(lambda i: 1
                                             if i == "positive" else 0)
df.head(10)
Out[71]:
textID tweet_text sentiment tokens tweet_sentiment
0 1956967666 Layin n bed with a headache ughhhh...waitin o... negative [layin, n, bed, headach, call] 0
1 1956967696 Funeral ceremony...gloomy friday... negative [funer, friday] 0
2 1956967789 wants to hang out with friends SOON! positive [want, hang, friend, soon] 1
3 1956968477 Re-pinging @ghostridah14: why didn't you go to... negative [not, go, prom, bf, not, like, friend] 0
4 1956968636 Hmmm. http://www.djhero.com/ is down negative [hmm] 0
5 1956969035 @charviray Charlene my love. I miss you negative [charlen, love, miss] 0
6 1956969172 @kelcouch I'm sorry at least it's Friday? negative [sorri, least, friday] 0
7 1956969531 Choked on her retainers negative [choke, retain] 0
8 1956970047 Ugh! I have to beat this stupid song to get to... negative [ugh, beat, stupid, song, get, next, rude] 0
9 1956970424 @BrodyJenner if u watch the hills in london u ... negative [watch, hill, london, realis, tourtur, week, w... 0
  • Convert DataFrame to two lists: one for tweet tokens (x) and one for the tweet sentiment (y)
In [72]:
X = df["tokens"].tolist()
y = df["tweet_sentiment"].tolist()
In [73]:
print(X)
print(y)
[['layin', 'n', 'bed', 'headach', 'call'], ['funer', 'friday'], ['want', 'hang', 'friend', 'soon'], ['not', 'go', 'prom', 'bf', 'not', 'like', 'friend'], ['hmm'], ['charlen', 'love', 'miss'], ['sorri', 'least', 'friday'], ['choke', 'retain'], ['ugh', 'beat', 'stupid', 'song', 'get', 'next', 'rude'], ['watch', 'hill', 'london', 'realis', 'tourtur', 'week', 'week', 'late', 'watch', 'itonlinelol'], ['sleepi', 'not', 'even', 'late', 'fail'], ['ladi', 'gaga', 'tweet', 'not', 'impress', 'video', 'leak', 'know'], ['convinc', 'alway', 'want', 'signal', 'give', 'think', 'lost', 'anoth', 'friend'], ['way', 'home', 'n', 'deal', 'w', 'underag', 'girl', 'drink', 'gin', 'da', 'bus', 'talk', 'bout', 'feel', 'old'], ['sorri', 'peopl', 'rude', 'isaac', 'get', 'manner', 'know', 'better', 'lewd'], ['damm', 'server', 'still', 'need', 'hit', 'koxper', 'pass'], ['fudg', 'bs', 'whole', 'paper', 'tire', 'ugh', 'hate', 'school', 'time', 'sleep'], ['hate', 'cancer', 'hate', 'hate', 'hate'], ['annoy', 'start', 'type', 'comput', 'middl', 'night'], ['not', 'sleep'], ['miss', 'bl', 'bus'], ['yeah', 'feel', 'funni', 'not', 'slept', 'enough', 'woke', 'mum', 'sing', 'not', 'impress'], ['mm', 'much', 'better', 'day', 'far', 'still', 'quit', 'earli', 'last', 'day', 'ud'], ['lt', 'go', 'first', 'twitter', 'amaz', 'lol', 'come', 'canada', 'would', 'anyth', 'see', 'perform'], ['pick', 'blackberri', 'middl', 'street', 'crush'], ['bed', 'time', 'hope', 'go', 'school', 'tomorrow', 'though', 'not', 'feel', 'well', 'right'], ['well', 'hope', 'could', 'learn', 'stuff', 'not', 'work', 'separ', 'thing', 'also'], ['problem', 'photo', 'twitter', 'not', 'see', 'face'], ['chocol', 'milk', 'much', 'better', 'straw', 'lack', 'said', 'straw'], ['tire'], ['way', 'damn', 'suck', 'b', 'ok'], ['suck', 'not', 'abl', 'take', 'day', 'work', 'money', 'take', 'trip', 'sad'], ['today', 'good', 'sara', 'strep', 'thought', 'angelina', 'share', 'water', 'told', 'prob', 'get'], ['haha', 'poor', 'abi', 'still', 'get', 'sore'], ['want', 'buy', 'great', 'album', 'unfortun', 'not', 'hav', 'enuff', 'fund', 'quot', 'long', 'time', 'noisi', 'quot'], ['ok', 'passeng', 'one', 'aliv', 'dead', 'not', 'know', 'til', 'end', 'cri'], ['ia', 'much', 'not', 'realli', 'happi', 'cook', 'choic', 'singl'], ['woman', 'transfer', 'first', 'impress', 'onto', 'less', 'man', 'weak'], ['brother', 'bloom', 'not', 'open', 'weekend', 'el', 'paso', 'buy', 'brick', 'enjoy', 'watch', 'brother', 'bloom'], ['say', 'miss', 'plurk'], ['bitten', 'blood', 'cat', 'way', 'rabi', 'bacterin', 'seem', 'shot', 'month', 'never', 'wash', 'cat', 'home', 'hate', 'water'], ['sad', 'shin', 'ae', 'got', 'not', 'alex'], ['sure', 'tweet', 'back', 'news', 'abuzz', 'tr', 'knight', 'leav', 'quot', 'confirm', 'quot', 'today', 'muy', 'trist'], ['dammit', 'hulu', 'desktop', 'total', 'screw', 'abil', 'talk', 'particular', 'port', 'one', 'dev', 'server', 'not', 'watch', 'code'], ['jealous', 'mom', 'talk', 'want', 'see', 'twitter', 'make', 'miss'], ['go', 'sweetheart'], ['freak', 'difficult', 'get', 'spellcheck', 'shit', 'would', 'settl', 'offic', 'suit', 'one', 'stupid', 'unhelp', 'window'], ['last', 'one', 'month', 'due', 'summer', 'strawberri', 'not', 'availbl', 'chennai', 'market'], ['correct', 'ador', 'pluck', 'put', 'arm', 'cuz', 'cryin', 'better', 'hahaha'], ['feel', 'sad', 'coz', 'not', 'abl', 'play', 'guy'], ['cayogi', 'want', 'come', 'bz', 'summer', 'not', 'sure', 'anymor', 'teacher', 'life', 'summer', 'suck'], ['first', 'ever', 'drop', 'call', 'mobil', 'call', 'less', 'charg', 'data', 'even', 'though', 'data', 'pack'], ['win', 'sigh', 'rakeem'], ['websit', 'gave', 'virus', 'open', 'window', 'kept', 'pop'], ['ahh', 'big', 'scari', 'bug', 'fli', 'around', 'room'], ['wish', 'knew', 'put', 'stole', 'heart', 'never', 'gave', 'occasion', 'like', 'like', 'look'], ['nasti', 'cough', 'not', 'sick', 'huge', 'weekend', 'ahead'], ['stone', 'cold', 'crazi'], ['tire'], ['second', 'wish', 'rain'], ['feel', 'deflat', 'ugh', 'dog'], ['allergi', 'suck', 'duck', 'nut', 'lt', 'gt'], ['well', 'almost', 'good', 'day', 'guess', 'retri', 'tomorrow'], ['sound', 'good', 'appreci', 'suggest', 'week', 'still', 'offlin', 'time', 'ask', 'refund'], ['youstinkatrespondingtotext'], ['miser', 'feel', 'like', 'gona', 'cri', 'suck'], ['well', 'ran', 'beer', 'left', 'not', 'sure', 'eta', 'wait', 'wait', 'wait', 'bleh', 'go', 'long', 'nite', 'methink'], ['nose', 'stud', 'fell', 'not', 'find', 'look', 'like', 'head', 'amsterdam', 'today', 'get', 'new', 'one'], ['clair', 'love', 'show', 'got', 'offic', 'radio'], ['sigh', 'go', 'bed', 'not', 'feel', 'right', 'anymor'], ['depress', 'watch', 'think', 'danc'], ['cross', 'stuck', 'twiddl', 'thumb', 'ugh'], ['not', 'sleep', 'sore', 'move'], ['awe', 'miss', 'babi'], ['answer', 'never', 'learn', 'write', 'basic'], ['rip', 'leonardo', 'great', 'mini', 'fiddler', 'crab'], ['last', 'day', 'work', 'uni', 'today', 'sad', 'time'], ['thank', 'neemah', 'go', 'soo', 'close', 'izzi', 'yet', 'far'], ['head', 'hurt', 'bad', 'could', 'scream'], ['new', 'work', 'well', 'challeng', 'not', 'go', 'well', 'commit', 'not', 'check', 'email', 'pm', 'fail', 'first', 'day', 'twice'], ['new', 'blog', 'post', 'blog', 'auto', 'insuran', 'found', 'auto', 'insur', 'polici', 'expir', 'careless', 'meanw'], ['not', 'hate', 'finish', 'work', 'still', 'hour', 'left', 'work', 'time'], ['still', 'miss', 'husband', 'realli', 'want', 'home'], ['miss', 'puppi'], ['not', 'get', 'memo', 'look', 'amaz'], ['given', 'pizza', 'kid', 'would', 'never', 'let', 'fav', 'hot', 'one'], ['yearl', 'pet', 'home', 'die', 'sad', 'whole', 'famili'], ['feel', 'sad', 'reason'], ['upload', 'new', 'blog', 'pain', 'stori', 'year', 'old', 'man', 'cri', 'want', 'die', 'sad'], ['addict', 'kind', 'curs', 'night', 'time', 'everytim', 'one', 'feel', 'like', 'make', 'music', 'afterward'], ['headach', 'go', 'bed', 'goodnight'], ['get', 'california', 'vintag', 'ahahah', 'best', 'dress', 'want', 'not', 'ebay'], ['took', 'shift', 'tomorrow', 'not', 'realli', 'feel', 'like', 'work', 'right'], ['money', 'phone'], ['day', 'readi', 'visit', 'torchwood', 'see', 'heard', 'anyth'], ['bris', 'not', 'hear', 'thunder'], ['bad', 'red', 'devil', 'disappoint', 'say', 'least'], ['not', 'fast', 'enough', 'ssd', 'iop', 'hpt', 'might', 'tri', 'adaptec'], ['da', 'heck', 'garag', 'man', 'get', 'ask'], ['ate', 'mandi', 'pleas', 'forgiv', 'realli', 'sorri', 'not', 'want', 'lose', 'bff'], ['umm', 'yeah', 'probabl', 'pretti', 'good', 'note', 'self', 'eeww'], ['plane', 'ticket', 'expens'], ['need', 'job', 'bad'], ['daammnn', 'wish'], ['nite', 'n', 'bore', 'oppos', 'almost', 'sleep', 'frm', 'b'], ['happi', 'birthdayi', 'hope', 'awesom', 'day', 'not', 'see', 'next', 'last', 'night'], ['would', 'wish', 'sever', 'migrain', 'would', 'stop', 'doc', 'prescript', 'not', 'work'], ['miss', 'game'], ['cuz', 'airlin', 'super', 'lame'], ['still', 'piti', 'come', 'lamb', 'though'], ['sorri', 'hear', 'optimist', 'thing', 'get', 'better', 'us'], ['done', 'paint', 'bedroom', 'furnitur', 'still', 'tabl', 'wait', 'move', 'uggh', 'move', 'heat'], ['insomnia'], ['peopl', 'hous', 'not', 'know', 'close', 'door'], ['amp', 'soo', 'hungri'], ['not', 'like', 'possibl', 'left', 'side', 'brain', 'hurt', 'thing', 'call', 'vp', 'shunt', 'possibl', 'death'], ['hear', 'helicopt', 'fli', 'hous', 'kind', 'weird', 'news', 'headach', 'back', 'boo'], ['think', 'vog', 'make', 'sicker', 'think', 'feel', 'slight', 'achi'], ['homework', 'suck', 'big', 'time', 'math', 'worst'], ['never', 'start'], ['loov', 'guitar', 'play', 'think', 'sound', 'magnific', 'better'], ['not', 'cri', 'lol'], ['hate', 'new', 'mt', 'dew', 'one', 'giant', 'scare', 'gross', 'time'], ['aw', 'not', 'let', 'secret'], ['transport', 'church', 'not', 'make', 'crush', 'oh', 'well', 'time', 'assign', 'suppos', 'throat', 'realli', 'hurt'], ['hate', 'see', 'pregnant', 'women', 'smokingg', 'soo', 'irrespons', 'n', 'selfish', 'saad', 'ultim', 'babi', 'one', 'suffer'], ['not', 'avoid', 'lie'], ['piss', 'not', 'let', 'follow', 'ericka'], ['close', 'spot', 'late'], ['not', 'seen', 'muffin', 'two', 'whole', 'day'], ['miss', 'back', 'give', 'regard'], ['admit', 'bit', 'bum', 'not', 'friend', 'walk', 'today'], ['girl', 'blunt', 'soo', 'thought', 'right', 'absolut', 'great', 'day', 'home'], ['twitter', 'hack'], ['found', 'mj', 'mous', 'flat', 'djs', 'cours', 'none', 'left', 'size'], ['hahaha', 'well', 'tri', 'ugli'], ['not', 'even', 'want', 'know', 'know', 'vhemt', 'not', 'go', 'would', 'miss'], ['awesom', 'weekend', 'not', 'go', 'move', 'sat', 'lot', 'fun', 'though'], ['pm', 'need', 'beup', 'earli', 'set', 'garag', 'sale', 'start', 'wish', 'said', 'beat'], ['kno', 'doo', 'partyin'], ['go', 'sleep', 'go', 'fall', 'asleep', 'play', 'app', 'tomorrow', 'go', 'suck'], ['hate', 'bf', 'beat', 'da', 'dog', 'guess', 'way', 'teach', 'pitt'], ['sprain', 'ankl', 'like', 'realli', 'bad', 'tore', 'stuff', 'hurt', 'birthday', 'weekend'], ['think', 'may', 'broke', 'toe', 'bar', 'drunk', 'girl', 'steppin'], ['diabet', 'dad', 'amp', 'might', 'not', 'sure', 'still', 'allow', 'eat', 'sugar', 'throughout', 'day'], ['scari', 'lightn', 'thunder', 'glad', 'go', 'sleep', 'hope', 'not', 'late', 'school', 'tomorow', 'haha'], ['teeth', 'head', 'hurt'], ['hang', 'sam', 'billi', 'veronica', 'not', 'go', 'school', 'tomorrow', 'take', 'sam', 'bodi', 'shop', 'dang', 'car', 'accid'], ['arrest', 'develop', 'sad'], ['wick', 'time', 'leav', 'come', 'not', 'stay', 'night'], ['feel', 'deflat', 'doggi'], ['got', 'home', 'not', 'want', 'read', 'last', 'chaper', 'break', 'dawn', 'not', 'want'], ['manual', 'process', 'take', 'outlook', 'databas', 'pff', 'crappi', 'msft', 'product'], ['alo', 'sad', 'quiet', 'empti', 'tonight'], ['hahahaha', 'not', 'horribl', 'other', 'sing', 'sure', 'could', 'work', 'wish', 'could', 'afford', 'drum', 'set'], ['cystic', 'lacrim', 'infectect', 'eye', 'face', 'swollen', 'hurt'], ['oh', 'nevermind', 'think', 'thing', 'unsalvag'], ['sad', 'christian', 'lacroix', 'file', 'bankruptci'], ['not', 'feel', 'good', 'fuckk'], ['ohh', 'poor', 'girl', 'email', 'reli', 'octob', 'mr'], ['bad', 'time'], ['aarrgghh', 'fu', 'hose', 'leak', 'water', 'new', 'float', 'floor'], ['go', 'dread', 'dmv', 'tomorrow'], ['puppi', 'gizmo', 'haha', 'still', 'growl', 'alway', 'look', 'back', 'long', 'prupl', 'scar', 'fingi'], ['yeah', 'plus', 'littl', 'far', 'walk', 'pinocchio', 'sushi'], ['feel', 'deflat', 'doggi'], ['found', 'book', 'start', 'real', 'journal', 'tonight', 'annoy', 'zit', 'lip', 'make', 'look', 'like', 'herp'], ['feel', 'bad', 'got', 'bad', 'news', 'mum'], ['damn', 'girl', 'ya', 'got', 'let', 'know', 'get', 'kit', 'togeth', 'amp', 'got', 'flyer', 'next', 'weekend', 'quot'], ['dbl', 'boo', 'sick', 'flippin', 'blow', 'bahaha', 'kno', 'not', 'mani', 'friend', 'either', 'feel', 'lame', 'haha'], ['feel', 'sick', 'stomach', 'idkk', 'whyy'], ['count', 'hour', 'lost', 'sunshin', 'weekend'], ['got', 'final', 'tabl', 'third', 'not', 'think', 'get', 'free', 'seat'], ['work', 'morn', 'friend', 'get', 'parti', 'bberri', 'lite', 'flash', 'red', 'messag'], ['fb', 'bore', 'want', 'sing', 'right'], ['last', 'day', 'bone'], ['feel', 'like', 'hous', 'arrest'], ['know', 'shortag', 'shell', 'crab', 'use', 'beach', 'due', 'beach', 'comber', 'sad'], ['stupid', 'tooth', 'hurt'], ['love', 'song', 'quot', 'togeth', 'quot', 'quot', 'quot', 'song', 'think', 'still'], ['comput', 'broken', 'broke', 'laptop', 'use', 'phone', 'ahh', 'still', 'fuck', 'order'], ['good', 'not', 'holiday', 'chalet', 'sight', 'look', 'v', 'similar', 'one', 'go', 'home', 'today'], ['sad', 'economi', 'heard', 'anoth', 'friend', 'lose', 'job', 'sad', 'remind'], ['start', 'feel', 'realli', 'panicki', 'anxious', 'someth', 'bad', 'happen', 'cos', 'seem', 'like', 'age'], ['dog', 'ran', 'awayi'], ['suck', 'bad'], ['anyon', 'know', 'good', 'rap', 'song', 'need', 'make', 'cd', 'idea', 'hellpp'], ['awak', 'anybodi', 'els', 'awak', 'wish', 'live', 'us', 'sinc', 'fun', 'happen', 'asleep'], ['mobil', 'phone', 'refus', 'charg', 'either', 'batteri', 'broken', 'chargerr', 'boo'], ['hmm', 'thought', 'sleep', 'bad', 'not', 'see', 'video', 'tomorrow', 'night'], ['morn', 'everyon', 'sorri', 'go', 'earli', 'last', 'night', 'bad', 'news', 'felt', 'total', 'crap', 'today', 'new', 'day'], ['wish', 'parent', 'put', 'chines', 'school', 'younger', 'much', 'easier', 'get', 'job'], ['jealous', 'look', 'like', 'schindler', 'list', 'toronto'], ['near', 'fell', 'asleep', 'jolt', 'bed', 'massiv', 'panic', 'attack', 'not', 'sure', 'sleep'], ['oh', 'f', 'ck', 'complet', 'forgot', 'thirsti', 'thursday', 'oh', 'gaga', 'suck'], ['one', 'peopl', 'wrong', 'world', 'blame', 'peopl', 'great', 'world', 'live', 'shit'], ['bet', 'cool', 'sr', 'huh', 'not', 'not', 'stop', 'sweat', 'sinc', 'noon', 'dad', 'pack'], ['eww', 'dislik'], ['decid', 'tran', 'frm', 'relax', 'natur', 'hair', 'wish', 'whole', 'head', 'look', 'like', 'root', 'age', 'instant', 'gratif'], ['sorri', 'bout', 'cat'], ['stomach', 'feel', 'like', 'touch', 'full'], ['pug', 'woke', 'incred', 'sleep'], ['wait', 'hear', 'new', 'album', 'sure', 'replay', 'love', 'much'], ['soo', 'much', 'work', 'littl', 'time'], ['miss', 'iron', 'chef'], ['ds', 'version', 'suck'], ['know', 'ridicul', 'never', 'got', 'hang', 'love', 'chicago', 'want', 'go', 'shop', 'trip', 'sound', 'like', 'fun'], ['hate', 'net', 'ayaw', 'bumuka', 'ng', 'twitter'], ['ugh', 'internet'], ['omg', 'not', 'tweet', 'much', 'today', 'sad'], ['feel', 'giddi', 'want', 'go', 'home'], ['link', 'not', 'work'], ['somebodi', 'pleas', 'save', 'polar', 'bear'], ['miss', 'mom', 'quot', 'may', 'angel', 'lead', 'quot'], ['jacksonvill', 'beach', 'walk', 'cold', 'ass', 'water', 'work', 'morn', 'ili', 'lt', 'gt'], ['not', 'sleep', 'suck', 'one', 'day', 'sleep', 'get', 'go', 'shop', 'mom', 'ugh'], ['well', 'got', 'home', 'not', 'till', 'tmw', 'comcast', 'right', 'not', 'miss'], ['hope', 'ya', 'sleepin', 'well', 'guy', 'still'], ['finish', 'not', 'color', 'draw', 'come'], ['laker', 'babi', 'laker', 'miss', 'game', 'tmwr', 'work', 'keep', 'post', 'pleas'], ['damn', 'drunk', 'hot', 'suck'], ['miss', 'babi'], ['shower', 'water', 'sweat', 'mean', 'one', 'thing', 'sick'], ['poor', 'not', 'sleep'], ['went', 'pole', 'class', 'feel', 'discourag', 'hopeless', 'cone', 'danc', 'sexi', 'move', 'spread', 'leg'], ['poor', 'unfortun', 'soul', 'not', 'appear', 'pant'], ['look', 'like', 'anoth', 'sleepless', 'night', 'dedic', 'homework', 'sorri', 'advanc', 'chapman'], ['lot', 'mock'], ['not', 'pussi', 'damnit', 'send', 'right', 'way'], ['not', 'sleep', 'noth', 'tv'], ['oh', 'superseed', 'not', 'good', 'enough'], ['realli', 'realli', 'bore', 'guess', 'go', 'bed'], ['sometim', 'thing', 'say', 'hurt', 'one', 'love', 'unintent', 'never', 'ever', 'take', 'back', 'fix'], ['suck'], ['ii', 'know', 'mean'], ['fever', 'not', 'feel', 'work'], ['take', 'hors', 'pill', 'hope', 'get', 'sleep', 'tonight'], ['pgpm', 'student', 'pgpm', 'student', 'year', 'back', 'wish', 'could', 'stay', 'one'], ['hey', 'school', 'hate', 'place'], ['work', 'home', 'today', 'back', 'kill', 'doctor', 'physio', 'later', 'today'], ['back', 'work', 'distract'], ['demi', 'say', 'hi', 'enough', 'replay', 'pleas', 'love', 'much'], ['first', 'impress', 'silverlight', 'sad', 'base', 'saw', 'today', 'quit', 'problemat'], ['desperat', 'hope', 'dad', 'take', 'vanessa', 'game'], ['hi', 'fuck', 'job'], ['miss', 'deepli'], ['big', 'vanessa', 'go', 'septemb', 'go', 'fast', 'hard', 'cuz', 'workin', 'much', 'miss', 'alot'], ['somebodi', 'pleas', 'save', 'polar', 'bear'], ['nose', 'runni', 'head', 'pound', 'teeth', 'hurt', 'like', 'bitch', 'man', 'feel', 'aw'], ['headin', 'mind', 'soul', 'justa', 'lil', 'realiti'], ['grove', 'hell', 'hope', 'not', 'suck'], ['feel', 'like', 'shit', 'say', 'happi', 'belat', 'birfdayi', 'month', 'late'], ['sad', 'kind', 'discourag', 'goin', 'shit', 'wack'], ['fc', 'final', 'time', 'hate', 'keep', 'happen'], ['serious', 'bore', 'without', 'anyon', 'talk', 'not', 'tire', 'enough', 'sleep'], ['bed', 'bed', 'bed', 'never', 'answer', 'text', 'anymor', 'thought', 'day', 'sent', 'one', 'never', 'heard', 'back', 'sad', 'day'], ['hope', 'not', 'fail', 'english', 'would', 'sad'], ['sorri', 'bad', 'drive', 'experi'], ['alreadi', 'miss'], ['plan', 'may', 'chang', 'noo'], ['sister', 'douchebag'], ['relist', 'fee', 'not', 'complet', 'sale', 'suck'], ['knew', 'worn', 'sar', 'mask', 'plane', 'socal', 'feel', 'begin', 'sore', 'throat'], ['juli', 'long'], ['wear', 'glass', 'give', 'headach'], ['finish', 'sew', 'night', 'upload', 'pictur', 'slidebar', 'beach', 'not', 'believ', 'difficulti', 'twitter'], ['liesgirlstel', 'guy', 'call', 'phone', 'see', 'number', 'real', 'ohh', 'phone', 'not', 'work', 'tri', 'tomorrow'], ['bum', 'not', 'wear', 'sweet', 'nike', 'kick', 'work'], ['night', 'tweeti', 'oc', 'tomorrow', 'hope', 'pray', 'rachyl', 'get', 'better', 'soon'], ['depress', 'stuck', 'insid', 'day'], ['even', 'saw', 'news', 'feed', 'archi', 'websit', 'not', 'believ', 'would', 'choos', 'veronica', 'disappoint'], ['hate', 'sick', 'miss'], ['depress', 'not', 'includ', 'morcom', 'garden', 'quiz', 'facebook'], ['upsidedown', 'tomato', 'plant', 'die'], ['friday', 'last', 'not', 'much', 'fun', 'skint', 'though'], ['caa', 'iht', 'earlier', 'icant', 'wait', 'long', 'ahar'], ['friday', 'yay', 'bonus', 'not', 'drive', 'wale', 'tonight', 'athough', 'miss', 'kitten', 'cuddl', 'go', 'ride'], ['children', 'promis', 'birthday', 'brekki', 'bed', 'problem', 'bugger', 'food', 'hous'], ['not', 'use', 'blackberri', 'today', 'suck'], ['q', 'studio', 'creat', 'season', 'googl', 'look', 'dvd', 'downstair', 'feel', 'lazi'], ['hate'], ['time', 'tv', 'spend', 'day', 'catch', 'studi', 'hate', 'onlin', 'summer', 'class'], ['want', 'visit', 'anim', 'late'], ['pc', 'agre', 'problem', 'must', 'stop', 'spend', 'work'], ['jonaswebcast', 'miss'], ['dang', 'realli', 'look', 'like', 'crap', 'sigh', 'shower', 'get', 'readi'], ['not', 'sleep', 'not', 'like', 'night'], ['go', 'miss', 'live', 'comet', 'action', 'tomorrow', 'go', 'take', 'care', 'cousin', 'not', 'access', 'interwebz'], ['lol', 'not', 'drink'], ['found', 'not', 'drink', 'bar', 'boo', 'miss', 'palomino', 'cheer', 'sad', 'face'], ['not', 'sleep', 'hour', 'toss', 'turn'], ['omg', 'go', 'die', 'swine', 'flu', 'go', 'melbourn'], ['pack', 'not', 'like'], ['plus', 'deposit', 'tax', 'return', 'chequ', 'first', 'time', 'year', 'not', 'clear', 'immedi'], ['holi', 'crap', 'rain', 'la', 'not', 'jacket', 'oh'], ['aright', 'twitter', 'fam', 'guess', 'outti', 'go', 'tri', 'n', 'sleep', 'horribl', 'pain'], ['lol', 'hi', 'emmi', 'latin', 'would', 'help', 'studi', 'aptitud', 'test', 'get', 'grad', 'school', 'want', 'take'], ['reject', 'food', 'substanc'], ['tri', 'interview', 'dr', 'paul', 'twomey', 'ceo', 'icann', 'phone', 'issu', 'cut', 'interview', 'min'], ['not', 'think', 'take', 'needl', 'watch', 'horribl', 'gori', 'short', 'film', 'drug', 'month', 'ago', 'scar', 'life'], ['not', 'want', 'go', 'back', 'work', 'sleepi', 'time'], ['watch', 'biggest', 'loser', 'hallmark', 'never', 'fail', 'make', 'cri', 'nyeh'], ['suck', 'old', 'actual'], ['better', 'missi', 'tell', 'biggest', 'loser'], ['saw', 'fox', 'get', 'freeway', 'hope', 'goe', 'home'], ['recap', 'britain', 'got', 'talent', 'britain', 'seem', 'talent', 'america'], ['cnt', 'get', 'goin', 'old', 'messag', 'gt', 'gt', 'gt', 'gt', 'help', 'lt', 'lt', 'lt', 'lt'], ['good', 'time', 'rock', 'open', 'mic', 'thank', 'love', 'n', 'support', 'work', 'busi', 'plan', 'present', 'cg'], ['swim', 'go'], ['hmm', 'use', 'tinytwitt', 'small', 'screen', 'realli', 'not', 'much', 'fun'], ['unfortun', 'not'], ['love', 'johnni', 'carson', 'go', 'hate', 'see', 'jay', 'leno', 'go'], ['even', 'though', 'everyon', 'want', 'newish', 'song', 'teacher', 'agre', 'old', 'grumpi', 'not', 'like', 'us', 'happi', 'haha'], ['english', 'essay', 'r', 'amp', 'done', 'long', 'time', 'ago', 'assign', 'last', 'thursday'], ['internet', 'server', 'phoenix', 'fuck'], ['sorri', 'guy', 'drop', 'trip', 'person', 'commit'], ['awesom', 'wish', 'could', 'fli', 'see'], ['nope', 'het', 'lost', 'amp', 'found'], ['rocki', 'cola', 'diner', 'whittier', 'tonight', 'teacher', 'pal', 'b', 'great', 'time', 'chat', 'one', 'els', 'came'], ['bed', 'still', 'exhaust', 'vega'], ['lol', 'true', 'mayb', 'next', 'year', 'loov', 'siggi', 'not', 'rememb', 'password', 'mod', 'thing', 'cake'], ['umm', 'soo', 'realli', 'hard', 'concentr', 'rite', 'wen', 'weird', 'lupus', 'feel', 'goin', 'thro', 'bodi'], ['know', 'enjoy', 'watch', 'two', 'twitter', 'entertain', 'comic', 'miss'], ['not', 'yet', 'sorri'], ['fall', 'asleep', 'know', 'feel', 'lol', 'drag', 'hell', 'tonight', 'quit', 'excit'], ['god', 'not', 'even', 'catch', 'public', 'transport', 'swine', 'flu', 'shit', 'hous'], ['dad', 'said', 'trip', 'uk', 'cancel', 'due', 'da', 'swine', 'flu', 'oop', 'sorri', 'abang'], ['hahaha', 'alright'], ['wake', 'earlier', 'thought', 'dad', 'want', 'take', 'food'], ['um', 'not', 'think', 'text', 'msgs', 'quot', 'subject', 'line', 'quot', 'fail'], ['want', 'see', 'friend'], ['unless', 'invit', 'come', 'beta', 'key', 'not', 'go', 'much', 'help'], ['sorri', 'andrew', 'wish', 'someth', 'could'], ['finsh', 'work', 'eleven', 'even', 'allowd', 'cauz', 'realli', 'not', 'want', 'lol'], ['anybodi', 'soo', 'bore'], ['not', 'chaseton', 'either', 'pleas', 'not', 'die', 'heart', 'realli', 'sad'], ['interest', 'show', 'say', 'least', 'recap', 'tomorrow', 'first', 'must', 'sleep', 'work'], ['feel', 'like', 'hot', 'box', 'matter', 'go', 'still', 'feel', 'like', 'hot', 'box', 'ice', 'cream', 'not', 'work', 'n', 'e'], ['uugh', 'hate', 'everyth'], ['take', 'moment', 'want', 'annonym', 'back', 'fb', 'safe', 'say', 'anyth', 'someon', 'els', 'anoth', 'friend'], ['not', 'not', 'sister', 'hous', 'tonit'], ['damn', 'hi', 'facebook', 'wrong', 'not', 'add', 'photo'], ['aku', 'kbangun', 'mimpi', 'bad', 'dream'], ['follow', 'follow', 'love', 'pout', 'pleas'], ['not', 'even', 'wii', 'b', 'like', 'xbox', 'use'], ['not', 'sleep', 'darn', 'frustrat'], ['bff', 'rock', 'hotel', 'california', 'song', 'done', 'stay', 'next', 'hmm', 'careless', 'whisper'], ['one', 'day', 'loneli', 'creep', 'slap', 'face'], ['not', 'feel', 'good'], ['go', 'home', 'serious', 'enough'], ['miss', 'oklahomaa', 'listen', 'citizen', 'cope', 'til', 'pass'], ['make', 'sad'], ['feel', 'like', 'go', 'cough', 'lung'], ['wish', 'teas', 'movi', 'night'], ['lost', 'follow', 'night', 'nobodi', 'like'], ['miss', 'one', 'year', 'forbidden', 'fruit', 'tree', 'garden', 'munch', 'disappoint', 'one'], ['want', 'new', 'phone', 'seen', 'much', 'cellphon', 'commerci'], ['soo', 'sad', 'edg', 'page', 'not', 'go', 'come', 'cri'], ['time', 'realli', 'need', 'shut', 'go', 'sleep', 'head', 'ach', 'bad', 'realli', 'not', 'take'], ['becuz', 'braggin'], ['strict', 'diet', 'ugh', 'feel', 'like', 'cheat', 'one', 'day', 'ill', 'throw', 'everyth'], ['ze', 'franz', 'not', 'friend', 'think', 'think', 'creepi', 'stalker', 'sommat', 'hmph'], ['take', 'back', 'horribl', 'shoe', 'mum', 'made', 'get', 'urggh', 'nasti', 'footwear', 'problem', 'not', 'find', 'shoe'], ['wow', 'feel', 'like', 'ish', 'realli', 'feel', 'bad', 'ignor', 'ahol', 'not', 'overturn', 'prop'], ['wish', 'not', 'teas', 'movi', 'night'], ['not', 'know', 'tire', 'today', 'bye', 'time', 'beddi'], ['mayb', 'take', 'drink', 'feel', 'massiv', 'hangov', 'still', 'not', 'yself', 'today'], ['friend', 'travel', 'tale', 'held', 'farewel', 'parti', 'kind', 'disappoint', 'would', 'still', 'septemb', 'fault'], ['night', 'not', 'talk', 'victor', 'bore', 'night', 'grr', 'hate', 'shit'], ['go', 'die', 'tomorrow', 'night'], ['go', 'get', 'tri', 'catch', 'z', 'high', 'school', 'tomorrow', 'realli', 'suck', 'wish', 'not', 'grow'], ['sleep', 'lost', 'voic', 'coupl', 'day', 'ago'], ['big', 'day', 'xt', 'launch', 'amaz', 'much', 'free', 'stuff', 'thanx', 'edg', 'telecom', 'found', 'phone', 'afford', 'yet', 'though'], ['oh', 'yeah', 'poorest', 'person', 'not', 'joke', 'poor', 'peopl'], ['oh', 'well', 'hope', 'get', 'better'], ['cycl', 'though', 'good', 'healthi', 'eat', 'healthi', 'eat', 'contradict', 'term'], ['kind', 'sick', 'n', 'tire', 'bs', 'guy', 'dish'], ['wish', 'carlton', 'game', 'live', 'stupid', 'channel', 'lol'], ['bt', 'gamer', 'like', 'year', 'made', 'attempt', 'lol', 'yea', 'luvd', 'extent'], ['hahaha', 'oh', 'man', 'pleas', 'come', 'pomona', 'would', 'love', 'see', 'everyday', 'instead', 'like', 'year'], ['miss', 'come', 'michigan', 'like', 'not', 'wait', 'till', 'juli'], ['mayb', 'good', 'night', 'sleep', 'everyon'], ['yea', 'tough', 'keep', 'go', 'sometim', 'not', 'sure', 'worth'], ['dissapoint', 'hhaha'], ['hun', 'okay', 'see', 'alot', 'post', 'exercis', 'like', 'mad', 'not', 'eat', 'sleep'], ['oh', 'tweetdeck', 'malfunct', 'il', 'web', 'fixd'], ['sorri', 'still', 'sick', 'know', 'know', 'guess', 'quot', 'pelzer', 'present', 'quot'], ['adam', 'samberg', 'new', 'moon', 'trailor', 'good', 'even', 'bad', 'cabl', 'friday'], ['happen', 'afraid', 'miss', 'larg', 'part', 'stori'], ['hell', 'yes', 'late'], ['dell', 'audio', 'devic', 'teradici', 'give', 'hard', 'time', 'linux', 'ubuntu', 'jaunti', 'kernel', 'not', 'load', 'drv'], ['got', 'ass', 'kick', 'tripoli', 'lol', 'got', 'bad', 'card', 'suck'], ['creep', 'ice', 'cream', 'social', 'good', 'time', 'lar', 'real', 'girl', 'sad', 'movi'], ['ahh', 'quot', 'let', 'right', 'one', 'quot', 'dvd', 'broke'], ['hey', 'love', 'ac', 'see', 'onlin', 'not', 'yet', 'not', 'wait', 'buy', 'look', 'amaz'], ['fml', 'work', 'uniform', 'wash', 'line'], ['ohh', 'shit', 'realiz', 'still', 'not', 'talk', 'b', 'like', 'dat', 'time'], ['written', 'fuck', 'get', 'less', 'idea', 'everi', 'day', 'everi', 'day'], ['naw', 'not', 'match', 'lol', 'shenanigan', 'discuss', 'thing'], ['not', 'part', 'unfortun'], ['dude', 'not', 'know', 'person', 'experi', 'sorri', 'someth', 'like', 'went'], ['aww', 'well', 'random', 'woke', 'not', 'sleep', 'mani', 'thing', 'mind'], ['babi', 'miss'], ['wish', 'could', 'time', 'xbox', 'project', 'tie'], ['pancak', 'alway', 'end', 'soggi'], ['big', 'zongzi', 'lunch', 'ate', 'not', 'work', 'less', 'eat', 'useless', 'becom'], ['sososo', 'bum', 'like', 'realli', 'bum', 'hate', 'rain', 'ruin', 'date'], ['work', 'late', 'night', 'dell', 'notebook', 'dell', 'qualiti', 'gone', 'hill', 'warrenti', 'servic', 'suck', 'poor', 'peopl', 'buy', 'mac', 'instead'], ['wow', 'hurt', 'way', 'wors', 'thought', 'would'], ['none', 'thought', 'make', 'sens', 'sober'], ['know', 'right', 'hope', 'someth', 'come', 'though'], ['not', 'sleep', 'tomorrow', 'must', 'wake', 'earli'], ['bore', 'headach'], ['feel', 'like', 'crap', 'whenev', 'lay', 'hate', 'heartburn', 'amp', 'backach'], ['miss', 'lone', 'empti', 'without'], ['miss', 'everyon'], ['gone', 'bed', 'age', 'ago', 'damn', 'tedtalk', 'got', 'get', 'earli'], ['anoth', 'build', 'fail', 'someth', 'not', 'right', 'big', 'scheme', 'thing'], ['keep', 'fall', 'asleep', 'suppos', 'awak', 'miss', 'babyy'], ['way', 'not', 'want', 'go'], ['need', 'wake', 'earlier', 'actual', 'tire', 'enough', 'fall', 'asleep'], ['omg', 'never', 'seen', 'ring', 'creppi', 'ass', 'movi'], ['love', 'ur', 'admit', 'niley', 'kiss', 'chang', 'mind', 'haha', 'amp', 'not', 'jemi', 'still', 'cute'], ['make', 'feel', 'better', 'lost', 'overnight', 'post', 'pictur', 'babi'], ['still', 'sick', 'sigh'], ['feel', 'realli', 'weird'], ['tri', 'self', 'learn', 'photoshop', 'not', 'go', 'well'], ['steam', 'punlk', 'fashion', 'show', 'anim', 'north', 'first', 'year', 'sinc', 'torcon', 'not', 'back', 'til', 'amp', 'miss'], ['throat', 'hurt', 'go', 'go', 'read', 'go', 'bed', 'text', 'mee'], ['die', 'hangout', 'friday', 'afternoon'], ['mann', 'got', 'iphon', 'jealous'], ['wonder', 'come', 'mcdonald', 'take', 'long', 'deliv', 'food'], ['ya', 'weather', 'super', 'weird', 'look', 'like', 'go', 'rain', 'today', 'cours', 'not', 'darnitt'], ['much', 'injustic', 'imagin', 'get', 'wors', 'get', 'better', 'afraid', 'doubt', 'sorri'], ['miss', 'nostalgia', 'everyon', 'pleas', 'kick', 'tushar'], ['kind', 'sick', 'n', 'tire', 'bs', 'guy', 'dish'], ['not', 'know', 'lol', 'head', 'hurt', 'realli', 'bad', 'amp', 'stomach', 'hmm', 'person', 'think', 'deal', 'wit'], ['expens'], ['wtf', 'facebook', 'clear', 'whole', 'survey', 'last', 'q', 'night', 'get', 'better', 'better', 'els', 'next'], ['take', 'advic', 'lookin', 'phone', 'cost', 'relationship'], ['weird', 'guy', 'hous', 'without', 'not', 'like'], ['fuck', 'wast', 'deodor', 'not', 'goin', 'not', 'havin', 'compani', 'let', 'funk', 'ya'], ['wish', 'knew', 'curs', 'tumblr'], ['finish', 'watch', 'seri', 'return', 'chaser', 'war', 'everyth', 'realli', 'quit', 'crap', 'compar', 'use'], ['miss', 'bestfriend', 'left', 'school'], ['ouch', 'earphon', 'shock'], ['tri', 'sleep', 'not', 'work'], ['tummi', 'hurt'], ['haha', 'got', 'one', 'go', 'curs', 'none', 'friend', 'like', 'tai', 'lol'], ['gorgeous', 'weather', 'bike'], ['blackout', 'citi', 'never', 'good'], ['aww', 'mayb', 'traumat'], ['live', 'small', 'market', 'deliv', 'bread', 'food', 'bank', 'time', 'realli', 'tough', 'even'], ['ugh', 'much', 'happen', 'today', 'realli', 'need', 'hug'], ['bore', 'want', 'go', 'taekwando'], ['tongu', 'still', 'hurt', 'need', 'sleep'], ['aww', 'ok', 'lol', 'hope', 'still', 'not', 'back', 'state'], ['need', 'littl', 'lie', 'not', 'feel', 'great', 'today', 'boo'], ['decid', 'not', 'stand', 'alltop', 'spam', 'longer'], ['miss', 'rich'], ['twitter', 'shit', 'bore', 'c', 'not', 'month'], ['home', 'ice', 'cream', 'first', 'pic', 'camera', 'batteri', 'die', 'last', 'night', 'forgot', 'charg'], ['bye', 'scotti', 'go', 'miss', 'ili', 'lt'], ['new', 'comment', 'jowki', 'wish', 'time', 'blog', 'often'], ['gray', 'feel', 'neglect'], ['oh', 'know', 'feel', 'damn', 'repres', 'bank', 'america', 'tri', 'make', 'sound', 'like', 'b'], ['mass', 'cleanout', 'room', 'rearrang', 'sent', 'mother', 'buy', 'bin', 'bookshelf', 'sinc', 'mine', 'suck', 'bad', 'mood'], ['rob', 'got', 'lucki', 'game', 'beat'], ['feel', 'realli', 'sick', 'watch', 'fifth', 'element', 'smoke', 'cigg', 'ugh', 'hate', 'cold'], ['bah', 'not', 'think', 'fb', 'fan', 'page', 'get'], ['sweeti', 'sat', 'tabl', 'woke', 'sweet', 'think', 'home', 'around', 'pm', 'xx'], ['bruis', 'knee', 'make', 'hard', 'skate', 'tomorrow'], ['lol', 'went', 'buy', 'new', 'laptop', 'februari', 'alreadi', 'knew', 'lol', 'look', 'anyway', 'walk', 'away', 'sadfac'], ['fyi', 'internet', 'thurstag', 'saturday', 'feel', 'becom', 'product', 'day'], ['sit', 'everyon', 'took', 'good', 'seat'], ['free', 'wifi', 'vacay', 'ruin'], ['maatt', 'not', 'spoken', 'age', 'dude', 'not', 'forget', 'bout', 'aussi', 'fan', 'lool', 'love', 'ya', 'xx'], ['oh', 'wait', 'wrong', 'state'], ['fuck', 'cold', 'north', 'like', 'df', 'yesterday'], ['tri', 'sleep', 'without', 'pill', 'not', 'work', 'wide', 'awak', 'late', 'take', 'sleep', 'til'], ['phone', 'die', 'soon', 'oh'], ['sorri', 'mean'], ['dog', 'eye', 'seem', 'bad', 'fork', 'new', 'wash', 'machin', 'not', 'vet', 'bill', 'top', 'eh'], ['not', 'sleep', 'not', 'find', 'grandmoth', 'quilt', 'locket', 'sick', 'may', 'lost', 'somehow', 'stolen'], ['bum', 'f', 'f', 'f', 'broke'], ['sign', 'account', 'polit', 'websit', 'could', 'post', 'comment', 'not', 'work'], ['come', 'never', 'sleep', 'past', 'not', 'good'], ['public', 'talk', 'juli', 'got', 'cancel', 'not', 'know'], ['would', 'like', 'mile', 'gas', 'price', 'crazi', 'alpin', 'next', 'summer', 'def'], ['feel', 'rough', 'today', 'want', 'cuddl', 'sleep'], ['flu', 'pass', 'unto', 'shop', 'got', 'fresh', 'chicken', 'chicken', 'amp', 'sat', 'sad', 'panda'], ['not', 'well'], ['oh', 'hell', 'way', 'tell'], ['wish', 'live', 'atleast', 'relat', 'close', 'ohio', 'not', 'seen', 'almost', 'year'], ['oh', 'crap'], ['not', 'get', 'messag', 'bought', 'princess'], ['unhappi', 'hate', 'affect', 'everyth', 'relationship', 'peopl', 'person', 'attitud'], ['feel', 'extrem', 'ill'], ['oh', 'offend', 'ha'], ['quot', 'name', 'toni', 'hey', 'quot', 'poor', 'toni'], ['back', 'time', 'wish', 'teenag', 'wish', 'could', 'feel', 'healthi', 'not', 'rememb', 'like', 'feel', 'healthi', 'anymor'], ['friend', 'deepli', 'sorri', 'move', 'miss', 'much'], ['besti', 'need'], ['damn', 'someth', 'say', 'one', 'listen'], ['miss', 'old', 'healthi', 'loos', 'faith', 'ever'], ['go', 'get', 'tri', 'catch', 'z', 'high', 'school', 'tomorrow', 'realli', 'suck', 'wish'], ['rawr', 'whatnot', 'godaw', 'draw', 'night', 'tonight', 'even', 'less', 'progress', 'made', 'expect'], ['ach', 'amp', 'chill', 'join', 'parti', 'could', 'not', 'cold', 'go', 'away', 'get', 'wors'], ['ohh', 'sorri', 'someon', 'els', 'pic', 'bad'], ['bed', 'stomach', 'ach'], ['not', 'answer', 'call', 'thought', 'homi'], ['school', 'start', 'two', 'day', 'go', 'still', 'not', 'want', 'l'], ['facebook', 'quizz', 'one', 'cure', 'boredom', 'haha', 'hurt'], ['lappi', 'charger', 'complet', 'dead', 'conserv', 'left', 'batteri', 'afford', 'buy', 'new', 'one'], ['summer', 'glau', 'appear', 'dollhous', 'next', 'year', 'still', 'not', 'believ', 'not', 'renew', 'tscc'], ['final', 'watch', 'rest', 'guild', 'season', 'alway', 'feel', 'sorri', 'hope', 'time', 'char'], ['not', 'heart', 'ach', 'children', 'want', 'adopt', 'alexi'], ['lunch', 'go', 'home', 'well', 'today'], ['goodnight', 'everyon'], ['bad', 'vo', 'got', 'sick', 'think', 'amp', 'not', 'even', 'med', 'feel', 'like'], ['miss', 'bring', 'back', 'keychain'], ['one', 'day', 'jay', 'leno', 'que', 'sad'], ['spoke', 'keith', 'urban', 'record', 'compani', 'not', 'get', 'show', 'till', 'back', 'holiday', 'sorri', 'jack', 'tri', 'mate'], ['honza', 'take', 'flight', 'back', 'czech', 'republ', 'morn', 'realli', 'go', 'miss'], ['sad', 'thing'], ['feel', 'talaga', 'ng', 'tao'], ['fuck', 'hot', 'damn', 'air', 'condit'], ['never', 'like', 'boy', 'jerm'], ['watch', 'two', 'patient', 'die', 'tonight', 'put', 'funk', 'one', 'young'], ['aila', 'cyclon', 'left', 'hous', 'calcutta', 'broken', 'sunshad', 'balconi', 'huge', 'branch', 'tree', 'thru', 'bathroom', 'window'], ['guy', 'paranoid', 'drop', 'countdown', 'not', 'fair', 'iv', 'vote', 'heap'], ['not', 'realli', 'good', 'night', 'miss', 'littl', 'girl'], ['wish', 'sri', 'panwa'], ['sad', 'not', 'text', 'today'], ['tweet', 'tarmac', 'cork', 'airport', 'delay'], ['hate', 'tweetdeck', 'reach', 'access', 'limit'], ['suck', 'hate', 'money', 'issu'], ['wear', 'glass', 'today', 'cos', 'right', 'eye', 'swollen', 'not', 'know'], ['heard', 'move', 'sydney', 'next', 'year', 'not', 'happi'], ['dam', 'keep', 'rainin'], ['never', 'chanc', 'sleep', 'midnight', 'mind', 'tire'], ['happi', 'b', 'home', 'mind', 'wander', 'not', 'sleep'], ['weebo', 'die'], ['peopl', 'pathet', 'know', 'one', 'tri'], ['littl', 'famili', 'parti', 'tonight', 'hope', 'rock'], ['complic', 'dream'], ['ahh', 'excit', 'juli', 'ecxept', 'stupid', 'australia', 'not', 'get', 'til', 'like', 'decembberr', 'still', 'ahh', 'congratss'], ['fun', 'tonight', 'leav', 'carlil', 'dalla', 'today', 'sneak', 'show'], ['bout', 'watch', 'notori', 'feelin', 'wish', 'could', 'eat', 'someth', 'not', 'surgeri', 'tomorrow', 'food', 'til', 'saturday'], ['sexi', 'success', 'young', 'profession', 'might', 'realli', 'join', 'bni'], ['meh', 'almost', 'not', 'sleep', 'not', 'finish', 'anyth', 'close', 'cancel', 'dokomi'], ['want', 'mont', 'cristo', 'sandwich', 'soo', 'bad'], ['awak', 'migran', 'yey', 'tummi', 'hurt', 'evil', 'ib'], ['ee', 'jealous', 'sia', 'not', 'get', 'see'], ['fair'], ['go', 'miss', 'miss', 'suhana'], ['unstabl', 'broadband', 'electr', 'take', 'toll', 'mental', 'stabil'], ['sink', 'hospit', 'toilet', 'low', 'crotch', 'grey', 'suit', 'spatter', 'water', 'time', 'physio'], ['mari', 'hate', 'wana', 'walmart', 'butno', 'one', 'want', 'go'], ['feel', 'realli', 'sick'], ['aww', 'tessi', 'want', 'hug'], ['def', 'want', 'cuddl', 'mayb', 'play', 'one', 'far', 'away'], ['face', 'arm', 'tragic', 'serious'], ['feel', 'nauseous', 'not', 'sleep'], ['got', 'go', 'get', 'readi', 'go', 'meadowhal', 'not', 'believ', 'internet', 'broke', 'yesterday', 'gut'], ['err', 'think', 'like', 'buck', 'ticket', 'expens'], ['damnit', 'run', 'candi', 'coat', 'book'], ['watch', 'blood', 'veoh', 'episod', 'love', 'could', 'watch', 'live', 'action', 'not', 'old', 'enough'], ['miss'], ['tummi', 'hurt'], ['watch', 'good', 'famili', 'premier', 'onlin', 'think', 'may', 'last', 'episod', 'watch', 'pretti', 'amaz', 'mediocr', 'pass'], ['go', 'dream', 'princ', 'charm', 'tonight', 'n', 'see', 'everyth', 'goe', 'back', 'normal', 'realli', 'hope', 'lt'], ['sit', 'school', 'suck'], ['stupid', 'wireless', 'not', 'work', 'downstair'], ['chang', 'hairstyl', 'not', 'good', 'suppos', 'n', 'not', 'wealth', 'much', 'money', 'hate'], ['mm', 'love', 'curri', 'not', 'oregan', 'though'], ['kind', 'lone', 'nobodi', 'answer', 'phone'], ['babi', 'bros', 'last', 'time', 'sing', 'front', 'school', 'proud', 'get', 'old'], ['nah', 'light', 'kill', 'mood', 'got', 'get', 'bed'], ['go', 'work', 'typic', 'sunshin', 'deep', 'sleep', 'stupid', 'friday'], ['not', 'proper', 'drag', 'week'], ['still', 'miss', 'not', 'think', 'come', 'back'], ['look', 'deceiv'], ['not', 'work', 'long', 'time', 'kind', 'miss', 'miss', 'anna', 'seen', 'prob', 'slo', 'summer'], ['look', 'old', 'pictur', 'love', 'amp', 'miss', 'good', 'old', 'day'], ['come', 'back', 'perth', 'miss', 'show'], ['soo', 'bore', 'right'], ['wat', 'riversid'], ['madd', 'bore'], ['yeahh', 'yeah', 'hifi', 'lol', 'grr', 'dad', 'pain', 'said', 'not', 'find', 'anyon', 'go', 'not', 'go'], ['wife', 'not', 'get', 'guest', 'list', 'tomorrow', 'show', 'not', 'exist', 'lame', 'guess', 'wife', 'show'], ['throat', 'hurt', 'not', 'sleep'], ['pull', 'muscl', 'neck', 'morn', 'feel', 'like', 'get', 'sore'], ['finish', 'minish', 'cap', 'great', 'game', 'miss', 'ezlo', 'link'], ['sad', 'bprohibit', 'tweet', 'tonight', 'sorri'], ['unfair', 'good', 'rock', 'show', 'happen', 'pune'], ['miss', 'awesom', 'weather', 'movi'], ['ugh', 'not', 'sleep', 'bus', 'still', 'like', 'hour'], ['feel', 'realli', 'bad', 'goofin', 'not', 'know', 'realli', 'not', 'meet', 'dang', 'sorri', 'amp', 'big', 'mouth'], ['oh', 'man', 'yogg', 'today', 'wors', 'last', 'week'], ['friday', 'tube', 'work', 'slow'], ['miss', 'guy', 'prob', 'not', 'b', 'bk', 'til', 'august', 'sumtim', 'come', 'bk', 'anytim', 'ill', 'sure', 'let', 'kno'], ['still', 'not', 'sleep'], ['worri', 'sock', 'tonight'], ['say', 'bad', 'trip', 'angri'], ['strain', 'hear', 'hard', 'way'], ['unfair', 'good', 'rock', 'show', 'happen', 'pune'], ['bird', 'oh', 'man', 'not', 'cool', 'amp', 'amp', 'not', 'sleep', 'yet', 'night'], ['worri', 'repli', 'send', 'sms'], ['oh', 'good', 'god', 'crampss'], ['home', 'earli', 'yeh', 'work', 'weekend', 'not', 'happi', 'much'], ['not', 'sleep', 'could', 'not', 'sleep', 'last', 'night', 'eather', 'wabbl', 'wabbl'], ['two', 'macaroon', 'go', 'say', 'oh', 'nut', 'wow', 'need', 'get'], ['stay', 'away', 'home', 'sinc', 'part', 'india', 'dnt', 'hav', 'gud', 'wireless', 'internet', 'fuck'], ['honest', 'feel', 'like', 'not', 'heal', 'get', 'better', 'not', 'good'], ['thingsmummysaid', 'need', 'learn', 'wash', 'dish', 'laundri', 'not', 'alway', 'right'], ['omg', 'mcdonald', 'combo', 'wendi', 'sunda', 'puke', 'materi'], ['realli', 'need', 'sort', 'bird', 'tabl', 'feeder', 'robin', 'blue', 'tit', 'bulli'], ['tiir', 'not', 'sleep'], ['hate', 'work', 'night', 'cos', 'not', 'realli', 'abl', 'enjoy', 'gorgeous', 'weather', 'asleep'], ['need', 'camera', 'blower', 'camera', 'censor', 'dirteeh'], ['realli', 'stop', 'reli', 'famili', 'say', 'go', 'get', 'lunch'], ['chang', 'hairstyl', 'not', 'good', 'suppos', 'n', 'not', 'wealth', 'much', 'money', 'hate'], ['lost', 'mx', 'way'], ['comput', 'ethernet', 'school', 'slow'], ['miss', 'go', 'ek', 'everi', 'summer', 'amp', 'christma', 'vaca', 'take'], ['wish', 'peopl', 'would', 'leav', 'jon', 'amp', 'kate', 'alon', 'realli', 'like', 'show'], ['yup', 'sad', 'eh', 'betti', 'man', 'betti'], ['bad', 'headach', 'get', 'wors', 'minut', 'not', 'better'], ['work', 'lunch', 'lot', 'work', 'not', 'enough', 'help'], ['suck', 'hear', 'hate', 'day', 'like'], ['pol', 'song', 'new', 'album', 'realli', 'miss', 'udd'], ['tire', 'summer', 'alreadi'], ['feel', 'realli', 'sick'], ['hard', 'time', 'fall', 'asleep'], ['omg', 'reali', 'not', 'sleep', 'ughh'], ['took', 'termin', 'trilog', 'need', 'actual', 'tv', 'seri', 'still', 'not', 'find', 'anyth', 'tempt'], ['translat', 'complic', 'someon', 'go', 'teach'], ['someon', 'hack', 'email', 'fuck'], ['die', 'get', 'hand', 'diagnosi', 'murder', 'dvd', 'boxset', 'peski', 'kid', 'amazon', 'still', 'not', 'deliv', 'zimbabw'], ['bore', 'noth'], ['haha'], ['song', 'make', 'want', 'cri'], ['aww', 'not', 'cri', 'ashley'], ['oop', 'not', 'open'], ['sigh', 'sad', 'lone', 'profess'], ['look', 'like', 'eprocur', 'address', 'offic', 'mate', 'blacklist', 'ask', 'whitelist'], ['sibl', 'left', 'alon', 'bore'], ['bus', 'almost', 'hour', 'late', 'crappi', 'alarm', 'clock', 'leeuwarden'], ['wish', 'grandmoth', 'taken', 'us'], ['heard', 'regina', 'girl', 'song', 'les', 'deux', 'think', 'come', 'back', 'mc', 'miss'], ['bum', 'not', 'get', 'see', 'manchest', 'orchestra', 'sold', 'spent', 'night', 'buy', 'tv', 'show', 'itun', 'lame'], ['walmart', 'open', 'first', 'store', 'amritsar', 'tomorrow', 'place', 'limit', 'wholesal'], ['omg', 'fair'], ['not', 'weekend', 'sorri', 'steph', 'work'], ['not', 'honey', 'got', 'mad', 'yrs', 'go', 'crazi'], ['sore', 'throat', 'sinc', 'monday', 'morn', 'sick', 'hurtin', 'want', 'freakin', 'sleep'], ['gha', 'work', 'hope', 'traffic', 'clear', 'time', 'get'], ['got', 'home', 'effin', 'sad'], ['cheer', 'lizzi', 'b', 'anoth', 'foh', 'hero', 'concert', 'still', 'suppos', 'b', 'upset', 'xoxoxo'], ['taxi', 'q', 'pelangi', 'super', 'loong', 'get', 'headach', 'transit'], ['sad', 'not', 'hope', 'american', 'doll', 'poss', 'blah', 'vacant', 'dynam'], ['tri', 'die', 'end', 'sentenc', 'annpyimg', 'thing', 'id', 'feel', 'fine', 'anoth', 'day', 'not', 'play', 'hit'], ['rent', 'bike', 'unknown', 'trail', 'random', 'bump', 'big', 'hill', 'kid', 'one', 'beat', 'littl', 'girl', 'not', 'good', 'day', 'b', 'famili', 'vacat'], ['feel', 'like', 'done', 'london', 'marathon', 'ach'], ['go', 'die', 'studi', 'overload', 'weekend', 'much', 'homework', 'pay', 'work', 'interrupt', 'screw'], ['not', 'excit', 'blow', 'anoth', 'candl', 'today', 'kid'], ['alway', 'sad', 'watch', 'seri', 'green', 'wing', 'left', 'watch'], ['today', 'though', 'bad', 'want'], ['soo', 'tire', 'want', 'crawl', 'back', 'bed'], ['fam', 'back', 'big', 'island', 'said', 'vog', 'bad', 'not', 'see', 'ocean', 'sad'], ['sunni', 'morn', 'big', 'k', 'lawn', 'mow', 'mile', 'run', 'attempt', 'urgh'], ['babi', 'help', 'math'], ['quot', 'lock', 'abroad', 'quot', 'make', 'bein', 'half', 'brown', 'good', 'risk', 'mgmt', 'travelin', 'world', 'blend', 'feel', 'sorri', 'hostag', 'magnet', 'white', 'pepo'], ['sorri', 'lol', 'never', 'like', 'actual', 'time', 'spend', 'unfortun', 'everyth', 'alway', 'insan', 'go'], ['sorri', 'could', 'not', 'fit', 'hal', 'name'], ['go', 'ask', 'want', 'go', 'club', 'hidden', 'hous', 'sat', 'night', 'hehe'], ['think', 'annoy', 'keep', 'get', 'twitter', 'error', 'messag', 'mobil'], ['shanni', 'sorri', 'not', 'mean', 'upset', 'thought', 'would', 'find', 'cute', 'sorri', 'not', 'sad'], ['right', 'total', 'forgot', 'might', 'not', 'till', 'august', 'though', 'great', 'summer'], ['ohh', 'emm', 'gee', 'souvlaki', 'want', 'go', 'home', 'lol'], ['rah', 'rah', 'youtub', 'not', 'work', 'oh', 'great'], ['cat', 'pain'], ['epicfail', 'joseph', 'class', 'long', 'liao'], ['tweet', 'much', 'not', 'even', 'pay', 'attent'], ['busi', 'day', 'disappoint', 'today', 'show', 'repeat'], ['god', 'piss', 'alway', 'enter', 'comp', 'amp', 'never', 'sore', 'loser'], ['jessi', 'gone', 'away', 'weekend', 'miss', 'alreadi'], ['someth', 'wrong', 'tire', 'bare', 'keep', 'eye', 'open', 'yet', 'done', 'last', 'toss', 'amp', 'turn', 'bed'], ['awak', 'mum', 'turn', 'internet', 'could', 'not', 'watch', 'live', 'chat', 'ccri', 'sad'], ['tire', 'want', 'sleep', 'stupid', 'work', 'get', 'way'], ['would', 'contest', 'not', 'chicken'], ['time', 'bed', 'oh', 'wish', 'someon', 'lay', 'next'], ['spider', 'bed', 'calm', 'fear', 'listen', 'green', 'day', 'lt'], ['poltergeist', 'hous'], ['fake', 'kid'], ['shit', 'hope', 'theyr', 'wrong', 'need'], ['spider', 'room', 'save'], ['woow', 'lucki', 'xd', 'break', 'go', 'end', 'class', 'start', 'june'], ['aww', 'internet', 'right', 'boi'], ['omg', 'sore', 'shoulder'], ['result', 'salari', 'decreas'], ['get', 'tonight', 'sytycd', 'onlin', 'like', 'hulu', 'paid', 'like', 'itun', 'miss', 'favorit', 'judg', 'not', 'sleep'], ['lol', 'friend', 'problem', 'differ', 'guild', 'wtf', 'wrong', 'server'], ['suck', 'like', 'hell'], ['fml', 'still', 'awak', 'melatonin', 'not', 'work'], ['not', 'mind', 'sam', 'like', 'kate', 'not', 'like', 'chris', 'smarmi'], ['augh', 'fever', 'gone', 'end', 'miss', 'weho', 'club', 'tomorrow', 'night', 'go', 'piss', 'stupid', 'boytoy', 'gave', 'plagu'], ['feel', 'not', 'want', 'get', 'bed', 'bother', 'not', 'go', 'work', 'turn', 'da', 'light', 'pull', 'da', 'shade', 'n', 'tv', 'type', 'sick'], ['work', 'lot', 'overtim', 'week', 'realiz', 'book', 'half', 'day', 'tomorrow', 'week', 'break', 'even'], ['oist', 'tym', 'di', 'pa', 'ko', 'tym', 'may', 'sakit', 'na', 'siya', 'not', 'blame'], ['omg', 'man', 'pray', 'ya'], ['not', 'close', 'librari', 'due', 'great', 'weather', 'ac', 'not', 'work', 'fb'], ['time', 'hous', 'chore', 'ugh'], ['get', 'readi', 'school', 'read', 'go', 'set', 'montepulciano', 'practic', 'cri', 'not'], ['not', 'sound', 'like', 'fun'], ['miss', 'taylor', 'like', 'crazi', 'not', 'wait', 'till', 'back'], ['shatter', 'pwg', 'botch', 'hybrid', 'dolphin', 'shirt', 'order', 'sent', 'xl'], ['believ', 'tomorrow', 'night', 'jay', 'leno', 'last', 'episod', 'tonight', 'show', 'encourag', 'everyon', 'watch', 'welcom', 'conan'], ['not', 'sleep'], ['not', 'understand', 'anyth', 'help'], ['crash', 'qmbol'], ['know', 'sad'], ['fuck', 'nervous'], ['realli', 'ultra', 'bore'], ['holi', 'cute', 'dexter', 'alreadi', 'lost', 'kitten', 'face', 'gettin', 'chunki', 'butt', 'sinc', 'got', 'back', 'qld', 'haha'], ['wake', 'earli', 'goddam', 'last', 'day', 'bummer'], ['goodgirl', 'not', 'takin', 'advantag'], ['damn', 'hordi'], ['gahh', 'tire', 'right'], ['not', 'drink', 'enough', 'hangov', 'tire', 'work'], ['cheek', 'hurt', 'bad', 'happen'], ['think', 'come', 'realli', 'realli', 'realli', 'look', 'foreword', 'see', 'come'], ['know', 'kid', 'not', 'say', 'well', 'not', 'realli'], ['enthusiasm', 'mee'], ['aww', 'not', 'guess', 'not', 'blackberrymesseng'], ['drink', 'realli', 'nice', 'coffe', 'got', 'go', 'dentist', 'morn'], ['sick', 'bad', 'throat', 'worst', 'toothach', 'good', 'thing', 'work', 'pharmaci', 'load', 'drug'], ['till', 'last', 'night'], ['depechemod', 'concert', 'next', 'week', 'cancel', 'altern', 'date', 'not', 'known', 'yet', 'dave', 'gahan', 'tumor'], ['tweet', 'last', 'hour', 'nobodi', 'like', 'tweetboard'], ['saad', 'need', 'someon', 'talk'], ['bore', 'bare', 'even', 'tweet', 'noth', 'talk', 'boredboot'], ['tshwane', 'want', 'doubl', 'rate', 'tri', 'phone', 'get', 'servic', 'endless', 'loop', 'fail'], ['never', 'invit'], ['say', 'goodby', 'someth', 'familiar', 'never', 'becom', 'familiar'], ['roughnight'], ['tire', 'climb', 'bed', 'fall', 'asleep', 'hope', 'weekend', 'fun', 'coupl', 'week', 'left'], ['bad', 'day', 'got', 'wors'], ['bus', 'goin', 'work', 'omg', 'serious', 'soo', 'tire', 'not', 'know', 'surviv', 'hour', 'shift'], ['got', 'love', 'wake', 'home', 'midnit', 'dangg', 'pray', 'jumpi'], ['sleep', 'pattern', 'screw', 'need', 'tri', 'stay', 'midnight', 'get', 'decent', 'sleep', 'coz', 'not', 'slept'], ['need', 'hot', 'green', 'tea', 'not', 'sleep'], ['time', 'germani', 'went', 'fast', 'day', 'left', 'hope', 'move', 'soon'], ['wish', 'could', 'rub', 'head'], ['blue', 'sky', 'still', 'grey', 'hazi', 'window'], ['test', 'anoth', 'updat', 'sorri', 'bother', 'guy'], ['jus', 'got', 'hom', 'fr', 'tda', 'funer', 'sad', 'cri', 'much', 'time', 'much', 'love', 'grandpa', 'lt', 'never', 'got', 'say', 'last', 'quot', 'goodby', 'quot'], ['not', 'use', 'msn', 'either', 'not', 'think', 'thousand', 'mile', 'away', 'not', 'face', 'face'], ['dude', 'suck', 'would', 'tow', 'space'], ['goodmorn', 'woke', 'earli'], ['well', 'run', 'cat', 'today', 'know', 'sad', 'cri', 'scream', 'lung', 'felt', 'horribl', 'poor', 'thing'], ['stomach', 'hurt'], ['realli', 'want', 'blackberri', 'sidekick', 'hella', 'wack', 'night'], ['earli', 'proppa', 'shatter', 'knacker'], ['work', 'miss', 'everythin', 'yesterday', 'not', 'know', 'wot', 'anybodi'], ['shame', 'gotto', 'go', 'work'], ['googl', 'wave', 'look', 'cool', 'work', 'guy', 'came', 'idea', 'year', 'ago'], ['love', 'hate', 'drive', 'pollut'], ['today', 'feel', 'like', 'friday', 'bad', 'not'], ['unfair', 'hustlabal', 'us', 'citizen', 'work', 'person', 'appear', 'expect', 'prowler'], ['not', 'sleep', 'peopl', 'keep', 'textin'], ['kewl', 'jb', 'chat', 'awesom', 'miss', 'lot', 'though', 'go', 'skewl'], ['hate', 'fact', 'hour', 'away', 'tonight', 'tomorrow', 'mile', 'apart', 'wish'], ['fulli', 'yell', 'say', 'dnt', 'fcking', 'stupid', 'grow', 'stop', 'band', 'shit', 'throw', 'remot', 'thnks', 'love'], ['underpaid', 'realli', 'not', 'need', 'well'], ['ohyeahh', 'hate', 'heat'], ['spend', 'not', 'spend', 'hte', 'question', 'mind'], ['feel', 'bad', 'not', 'get', 'see'], ['disappoint', 'realli', 'suck', 'get', 'use'], ['get', 'rather', 'annoy', 'notebook', 'know', 'old', 'got', 'wrinkl', 'never', 'slow'], ['okay', 'thank', 'not', 'find'], ['mad', 'not', 'scarey'], ['oh', 'troubl', 'paradic'], ['exact', 'feel', 'hope', 'start', 'feel', 'better', 'soon'], ['still', 'awak', 'not', 'fall', 'asleep', 'not', 'one', 'bit', 'sleepi'], ['go', 'crazi', 'pain', 'amp', 'got', 'wait', 'till', 'thursday'], ['feel', 'like', 'truck', 'hit', 'also', 'resembl', 'man', 'hit', 'truck'], ['not', 'fan', 'layout', 'chang', 'hyperlink', 'not', 'like', 'indent', 'well', 'click', 'link', 'show'], ['miss'], ['useless', 'tweet', 'lol', 'jk', 'yay', 'come', 'tomorrow', 'long', 'gnna', 'phil'], ['stomach', 'kill', 'not', 'sleep'], ['holi', 'shit', 'super', 'sunni', 'friday', 'whitsun', 'tube', 'deeseart', 'wish', 'park'], ['miss', 'neic', 'not', 'wait', 'see', 'bad', 'n', 'grown', 'ass', 'lol'], ['soo', 'happi', 'frustrat', 'time', 'ohh', 'noo', 'britney', 'record', 'new', 'video', 'radar', 'soo', 'exxciite'], ['booya', 'sup', 'tweep', 'happi', 'infam', 'day', 'get', 'soon', 'not', 'wait', 'play', 'need', 'find', 'time', 'though'], ['scari', 'guy', 'colbert'], ['wit', 'cha', 'got', 'home', 'da', 'regga', 'club', 'wishin', 'sexin', 'somebodi'], ['not', 'good', 'mood'], ['ugh', 'talk', 'someon', 'realli', 'bore'], ['inclin', 'think', 'stupid'], ['omg', 'period', 'cramp', 'ftl', 'much', 'pain'], ['remind', 'need', 'pick', 'mask', 'thank', 'prefer', 'not', 'take', 'med', 'b', 'addict'], ['goto', 'work', 'ahh', 'kill', 'life', 'not', 'go', 'way', 'want', 'atm', 'ta', 'ta', 'kid', 'x'], ['feel', 'lone', 'dh', 'night', 'shift'], ['addict', 'glee', 'watch', 'video'], ['horribl', 'dream', 'scari', 'face', 'awak', 'rest', 'night', 'god', 'dammit'], ['thought', 'go', 'anoth', 'def', 'jam', 'fight', 'game', 'turn', 'crappi', 'karaok', 'game', 'miss', 'fight'], ['arghh', 'gone', 'starbuck', 'amp', 'given', 'skim', 'milk', 'instead', 'soy', 'milk', 'not', 'milk', 'hav', 'throw', 'away', 'expens'], ['confus', 'peopl', 'pose', 'other', 'twitter', 'mean', 'realli', 'homework', 'peopl', 'live', 'imit', 'sad'], ['twitter', 'mean', 'pic', 'late', 'stole', 'mine', 'entir', 'day'], ['ugh', 'knee', 'injuri', 'except', 'mine', 'infect', 'cut', 'hurt', 'like', 'hell'], ['bum', 'miss', 'rock', 'climb', 'trip', 'next', 'week'], ['red', 'wtf', 'happen', 'dark', 'blue', 'black', 'stripe'], ['sick', 'stomach', 'headach', 'wish', 'someon', 'could', 'come', 'rub', 'templ'], ['realli', 'want', 'sleep', 'butmi', 'eye', 'not', 'let'], ['not', 'good', 'start', 'day', 'left', 'money', 'home', 'hot', 'day', 'look', 'free', 'carpark'], ['want', 'wednesday', 'alreadi', 'hurri', 'go', 'new', 'zealand', 'busi', 'not', 'sit', 'bore', 'stress'], ['ah', 'man', 'suck', 'happen', 'prompt', 'reinstal'], ['hemp', 'cloth', 'marvel', 'unfortun'], ['note', 'not', 'feel', 'miss'], ['reject'], ['stupid', 'msn', 'not', 'sign'], ['ship', 'stuck'], ['hurt'], ['dread', 'go', 'work', 'friiday', 'whoop'], ['home', 'lone'], ['school', 'absolut', 'sick', 'want', 'go', 'home', 'write', 'geographi', 'best'], ['love', 'babi', 'not', 'hurt', 'not', 'hurt', 'want', 'watch', 'ruxburi', 'right'], ['oop', 'cy', 'place', 'near', 'troubl'], ['blast', 'past', 'nts', 'must', 'suck', 'bad', 'school'], ['sad', 'not', 'get', 'see', 'rica', 'leav', 'later', 'today'], ['way', 'block', 'follow', 'idea', 'sorri'], ['want', 'somebodi', 'love', 'love', 'think', 'constant'], ['exact', 'hate', 'drive', 'thru', 'dandi', 'sittin', 'light', 'next', 'car', 'asian', 'r', 'callin', 'amp', 'held', 'knife', 'scum'], ['doodl', 'wrong'], ['freakin', 'lond', 'thursday', 'readi', 'hit', 'hay', 'surpris', 'surpris', 'not', 'freakin', 'sleep', 'boo'], ['weather', 'ugh', 'someth', 'like', 'asthma', 'yeah', 'ventolin'], ['need', 'good', 'idea', 'fast'], ['comput', 'kill', 'combo', 'mirror', 'edg', 'realli', 'poor', 'thermal', 'gpu', 'one', 'sad', 'game'], ['weather', 'make', 'finger', 'numb', 'still', 'wait'], ['tri', 'finish', 'move', 'stuff', 'tonight', 'not', 'feel', 'good'], ['mudweight', 'haul', 'last', 'time'], ['lot', 'confus', 'work', 'place'], ['tummi', 'hurt', 'go', 'away', 'cramp', 'hate', 'chuu'], ['need', 'come', 'anoth', 'blog', 'post', 'today', 'sleeppyy'], ['wish', 'could', 'find', 'camera', 'realli', 'want', 'record'], ['quot', 'might', 'interest', 'quot', 'thank', 'came', 'saw', 'winc', 'much', 'like', 'flatland'], ['ahh', 'right', 'kidney', 'hurt', 'soo', 'bad', 'oommgg'], ['lost', 'voic', 'tortur'], ['hate', 'wash', 'hair', 'dri', 'amp', 'straighten', 'find', 'grey', 'hair', 'middl', 'layer', 'hair'], ['excit', 'ysj', 'summer', 'ball', 'wish', 'one'], ['love', 'music', 'much', 'gone', 'pain', 'play', 'side', 'finger', 'peel', 'blister', 'play', 'much'], ['hi', 'mel', 'feel', 'unhappi', 'take', 'bit', 'fri', 'not', 'overdo', 'help', 'not'], ['envious', 'peopl', 'not', 'mushi', 'one', 'cuddl'], ['way', 'exam', 'nervous', 'bah'], ['racoon', 'ate', 'bread'], ['miss', 'everyon', 'tonight'], ['ugh', 'two', 'week', 'push', 'produc', 'six', 'pack', 'produc', 'noth', 'pain'], ['tryna', 'find', 'yr', 'old', 'junt', 'k', 'stabl', 'job', 'good', 'home', 'extra', 'room', 'tire', 'young', 'dude'], ['dang', 'internet'], ['get', 'good', 'download', 'speed', 'one', 'els', 'use', 'connect'], ['launch', 'twittix', 'not', 'convinc'], ['consol', 'got', 'bmi', 'test', 'hahaha', 'say', 'obes', 'well', 'much', 'unhappi', 'minut'], ['ooh', 'feel', 'sleepi', 'not', 'want', 'go', 'school'], ['thank', 'girl', 'woke', 'cnt', 'believ', 'sick', 'fever', 'wish', 'could', 'pound', 'nyquil', 'suck'], ['tire', 'not', 'sleep'], ['much', 'sand', 'sd', 'pismo', 'weekend', 'anoth', 'canon', 'powershot', 'broken', 'one', 'year', 'buy', 'time'], ['realli', 'annoy', 'work', 'appear', 'block', 'facebook'], ['yeah', 'notic', 'miss', 'spender', 'closer', 'hold'], ['miss'], ['lone', 'need', 'hug'], ['friday', 'well', 'technic', 'realli', 'thursday', 'dang', 'work', 'saturday', 'morn'], ['get', 'readi', 'tom', 'got', 'go', 'make', 'sure', 'not', 'done', 'anyth', 'stupid', 'ill', 'tweet', 'later'], ['woke', 'bad', 'dream', 'grr'], ['anticip', 'tough', 'day', 'ahead'], ['tire'], ['poor', 'lmao', 'stick', 'head', 'window'], ['head', 'hurt'], ['not', 'believ'], ['take', 'soul', 'friend', 'famili', 'watch', 'die', 'nightmar', 'trust'], ['hey', 'whore', 'kind', 'mean', 'not', 'yu', 'think'], ['wow', 'christian', 'lacroix', 'bankrupt', 'sad'], ['yeah', 'mine', 'said', 'quot', 'nice', 'pictur', 'quot', 'amp', 'gave', 'red', 'x', 'hope', 'get', 'work', 'soon'], ['got', 'messga', 'not', 'work', 'text', 'saver', 'not', 'like', 'money', 'credit', 'sad', 'wat', 'xoxo'], ['much', 'learn'], ['missin', 'bro'], ['kidney', 'stone', 'realli', 'ugh'], ['youtub', 'account'], ['back'], ['also', 'spoke', 'lt'], ['still', 'sick', 'home'], ['place', 'call', 'take', 'somebodi'], ['hate', 'feel', 'get', 'listen', 'song', 'complet', 'remind', 'thing', 'use', 'amp', 'get', 'emot'], ['want', 'ride', 'bicycl', 'today', 'cold', 'cloudi', 'today'], ['ever', 'come', 'across', 'someth', 'remind', 'alot', 'one', 'person', 'complet', 'broke', 'heart'], ['hungri', 'agaaiin', 'maam'], ['alreadi', 'noo'], ['parti', 'wipe', 'dead', 'stuff'], ['still', 'not', 'call', 'back', 'regard', 'groundbreak', 'product', 'sent', 'earlier'], ['morn', 'folk', 'light', 'tweet', 'today', 'crowd', 'busi', 'friday', 'insid', 'sunshin'], ['ugh', 'frustrat', 'see', 'brief', 'week', 'group', 'most', 'tradit', 'agenc'], ['not', 'pet', 'appart', 'realli', 'want', 'rat', 'yet'], ['oh', 'see', 'mean', 'heltershelt', 'person', 'lol', 'yer', 'look', 'scari'], ['not', 'work'], ['good', 'morn', 'peopl', 'good', 'old', 'germani', 'soo', 'cold'], ['dead', 'like', 'awsom', 'love', 'show', 'miss', 'last', 'episod', 'though'], ['fed', 'three', 'hungri', 'stray', 'kitti', 'three', 'can', 'tuna', 'hope', 'stay', 'warm', 'safe', 'tonight'], ['lone', 'need', 'compani'], ['listen', 'msi', 'bake', 'banana', 'bread', 'weird', 'remark', 'not', 'much', 'anymor'], ['wtf', 'advertis', 'gone', 'mad', 'want', 'access', 'camera', 'microphon', 'amazon', 'realli', 'know', 'better'], ['hate', 'websit', 'say', 'ticket', 'price', 'anoth', 'websit', 'not'], ['alic', 'not', 'know', 'wear', 'cinema', 'lt'], ['wonder', 'cold', 'skylight', 'open', 'left', 'gas', 'morn'], ['not', 'know', 'folk', 'sorri'], ['not', 'think', 'go', 'get', 'see', 'sun', 'today', 'gut', 'need', 'colour'], ['youtub', 'tube', 'appear', 'clog', 'somewhat', 'today', 'connect', 'error', 'plenti'], ['tara', 'thai', 'time', 'friend', 'birthday', 'food', 'pretti', 'bad'], ['wow', 'must', 'tire', 'fell', 'asleep', 'exact', 'start', 'news', 'amp'], ['never', 'good', 'stereotyp', 'teen'], ['hate', 'continu', 'get', 'sick', 'whenev', 'exam'], ['missd', 'otha', 'disney', 'day', 'yesterday'], ['song', 'come', 'goodby', 'stuck', 'head', 'not', 'good', 'song', 'sing', 'consid', 'situat'], ['weird', 'realli', 'want', 'harri', 'potter', 'bed', 'spread', 'pillow', 'wish', 'could', 'find', 'one', 'not', 'gryffindor'], ['readi', 'product', 'friday', 'one', 'last', 'year'], ['hella', 'pushin', 'tha', 'could', 'not', 'smash', 'thru'], ['sick', 'amp', 'tire', 'sick', 'amp', 'tire'], ['seiz', 'bolt', 'ya', 'still', 'stuck', 'bush', 'actual', 'seiz', 'bolt', 'lame', 'perhap', 'heat', 'work'], ['found', 'one', 'ankl', 'hurt'], ['worst', 'dream', 'ever', 'laker', 'lose', 'zip', 'amp', 'courney', 'cox', 'mohawk', 'wtf'], ['true', 'not', 'know', 'bother', 'morn', 'cos', 'put', 'poni', 'soon', 'got', 'work', 'anyway'], ['not', 'look', 'forward', 'dress', 'shop', 'tomorrow', 'afraid', 'way', 'abl', 'get', 'want'], ['thank', 'old', 'comput', 'slow', 'kubuntu', 'blender', 'realli'], ['miss', 'last', 'night', 'hon'], ['shuck', 'sorri', 'sometim', 'get', 'wrap', 'fb', 'forget', 'check'], ['caa', 'wahh', 'want', 'cri'], ['appar', 'misplac', 'ipod', 'gb'], ['disappoint', 'go', 'sleep'], ['central', 'lesson', 'histori', 'state', 'parasit', 'alway', 'expand', 'destroy', 'host', 'popul', 'stefan', 'molyneux'], ['aww', 'suck'], ['not', 'wtf', 'whatthefuck', 'realli', 'realli', 'tri', 'kill', 'might', 'depend'], ['serious', 'heartbroken'], ['nick', 'voic', 'still', 'make', 'want', 'kill', 'thing'], ['ever', 'come', 'sf', 'bay', 'area', 'preform', 'feel', 'left'], ['oh', 'think', 'not', 'well', 'photo', 'edit', 'db', 'sorri'], ['aww', 'sad', 'stupid', 'crap', 'phone', 'decid', 'would', 'go', 'screw', 'never', 'work', 'arghh'], ['god', 'weather', 'london', 'ammaz', 'yet', 'train', 'half', 'day'], ['ask', 'ryan', 'stop', 'follow', 'twitter'], ['go', 'bed', 'not', 'sleep', 'right'], ['horribl', 'nightmar', 'not', 'go', 'go', 'back', 'sleep'], ['suffer', 'internet', 'work', 'bad', 'site', 'host', 'russian', 'server', 'avail'], ['tri', 'hard', 'not', 'worri', 'peac', 'despit', 'circumst', 'wonder', 'christian', 'one', 'make', 'hard'], ['feel', 'like', 'alott', 'drug'], ['ahh', 'fuster'], ['think', 'hire', 'one', 'tranlsat', 'one', 'ever', 'understand'], ['epic', 'ocd', 'moment', 'delet', 'sim', 'file', 'spent', 'hour', 'build', 'set', 'favorit', 'food', 'wrong'], ['ugli', 'programm', 'open'], ['massiv', 'headach', 'argh'], ['yay', 'friday', 'hold', 'work', 'tomorrow'], ['head', 'home', 'could', 'realli', 'done', 'without', 'bang', 'head', 'way', 'bus'], ['also', 'hit', 'chin', 'someth', 'fell', 'hurt', 'ugh', 'work', 'go', 'suck'], ['feel', 'sorri', 'everi', 'time', 'print', 'use', 'like', 'new', 'paper'], ['uni', 'work', 'weekend', 'fun', 'time'], ['blech', 'fail', 'receiv', 'dollar', 'quot', 'job', 'usd', 'last', 'month', 'get', 'paid', 'major', 'loss'], ['first', 'time', 'go', 'home', 'earli', 'suck', 'b', 'singl', 'one', 'call'], ['fault', 'not', 'make', 'leav'], ['not', 'let', 'chang', 'background'], ['realli', 'want', 'marri', 'leighton', 'meester', 'damn', 'take', 'eye'], ['ill', 'bed', 'stomach', 'kill'], ['bummer', 'know', 'lol', 'actual', 'parti', 'school', 'think', 'somehow', 'help'], ['gawd', 'peopl', 'still', 'rememb', 'pregger', 'comment', 'hate'], ['ugh', 'not', 'doin', 'good'], ['whyy', 'still', 'awak', 'work', 'not', 'good'], ['not', 'feel', 'like', 'get'], ['gone', 'r', 'day', 'wen', 'use', 'sit', 'exam', 'exam', 'class', 'bunk', 'n', 'fun'], ['tire', 'not', 'sleep', 'tri'], ['marri', 'lt', 'fun', 'parti', 'tonight', 'drink', 'wud', 'come', 'see'], ['wast', 'live'], ['know', 'man', 'day', 'pull', 'bed'], ['got', 'sore', 'feet'], ['uff', 'ble', 'litt', 'trist', 'av', 'lese', 'den', 'sist', 'tweetsen', 'din', 'challeng', 'proov', 'tough'], ['back', 'amp', 'e', 'nice', 'doctor', 'diagnos', 'ligament', 'damag', 'felt', 'could', 'still', 'run', 'might', 'take', 'day', 'heal'], ['havin', 'stupid', 'stomach', 'pain', 'amp', 'today', 'outing', 'sph', 'frenz', 'amp', 'stomach', 'nvr', 'fail', 'dissappoint', 'haiz'], ['dude', 'not', 'even', 'say', 'bye'], ['son', 'birthday', 'mexican', 'meal', 'major', 'game', 'buy', 'miss', 'lego', 'day'], ['oop', 'complet', 'forgot'], ['boo', 'season', 'final'], ['noth', 'sad', 'actual'], ['rain', 'rain', 'go', 'away'], ['fuck', 'typic', 'gh', 'arriv', 'leav', 'work', 'go', 'long', 'day'], ['constant', 'listen', 'song', 'fli', 'cutest', 'quot', 'peter', 'pan', 'amp', 'wendi', 'turn', 'fine', 'quot'], ['bout', 'knock', 'feelin', 'lil', 'sick', 'peac'], ['noo', 'miss', 'much', 'went', 'stag', 'prom', 'high', 'school', 'middl', 'school', 'danc', 'help', 'gt', 'gt'], ['slept', 'day', 'lol', 'time', 'start', 'un', 'articl', 'fun'], ['give', 'easili'], ['not', 'friend', 'ever', 'miss', 'year', 'old', 'perv', 'like', 'not', 'shape', 'shifter'], ['hey', 'chocol', 'chip', 'good', 'want', 'snack', 'snack'], ['hubbi', 'dentist', 'readi', 'hold', 'hand', 'get', 'nervi', 'potenti', 'buy', 'car', 'tomorrow'], ['googledoc', 'folder', 'instead', 'label', 'like', 'gmail', 'kind', 'like', 'label'], ['need', 'present', 'mom', 'could', 'anybodi', 'help'], ['go', 'post', 'offic', 'tri', 'sort', 'whole', 'ebay', 'hacker', 'thing'], ['yeah', 'go', 'rubbish'], ['miss', 'man', 'two', 'month', 'long', 'not', 'see'], ['sf', 'felt', 'way', 'intens', 'tonight', 'hope', 'not', 'keep', 'upset', 'not', 'hang', 'pearl'], ['chilli', 'n', 'lonley', 'n', 'livingroom'], ['sorri', 'hear', 'lost', 'two', 'hard', 'drive', 'year', 'know', 'feel'], ['mani', 'farewel', 'parti', 'sad', 'see', 'peopl', 'leav'], ['make', 'jealous', 'want', 'one', 'long', 'guy', 'marri'], ['close', 'sale', 'not', 'look', 'good'], ['sleepi', 'feel', 'weather', 'ugh', 'damn', 'tonsil', 'need', 'compani', 'somebodi', 'talk'], ['word', 'count', 'hand', 'hurt'], ['would', 'total', 'take', 'not', 'alreadi', 'gone', 'sorri', 'lol'], ['hmm', 'think', 'take', 'back', 'feel', 'better', 'morn', 'think', 'spoke', 'earli'], ['wish', 'not', 'bum', 'kind'], ['took', 'today', 'work', 'slept', 'day'], ['itun', 'upgrad', 'reset', 'playcount', 'zero', 'know', 'one', 'hasta', 'siempr', 'version', 'like', 'best'], ['feel', 'bore', 'miss', 'school', 'time'], ['stomach', 'explod', 'wendi', 'everyth', 'tast', 'good', 'bad'], ['worst', 'mine', 'use', 'realli', 'bad', 'first', 'not', 'even', 'get', 'bed'], ['imissu', 'come', 'back', 'home', 'honey'], ['fall', 'asleep', 'wake', 'gun', 'shot', 'not', 'fun'], ['concern', 'famili'], ['fix', 'bike', 'chain', 'way', 'filthi', 'bloodi', 'mess', 'love', 'weather', 'though'], ['not', 'sleep', 'amp', 'miss', 'long', 'hairr'], ['mom', 'ok', 'far', 'miss', 'jaron'], ['call', 'toyota', 'car', 'not', 'readi', 'til'], ['oh', 'dear', 'not', 'fun'], ['not', 'watch', 'hgtv', 'afraid', 'infomerci', 'take'], ['aw', 'hiccup', 'today', 'not', 'fall', 'asleep'], ['know', 'wish', 'would', 'want', 'cuddl', 'sleep', 'ga', 'go', 'world', 'coke'], ['hey', 'site', 'go', 'listen', 'web', 'stream', 'not', 'get', 'site'], ['oh', 'cr', 'p', 'placebo', 'tix', 'tori', 'amo', 'go', 'sale', 'anticip', 'hot', 'cake', 'distribut'], ['want', 'move', 'qld', 'alreadi', 'cold', 'weather', 'kill'], ['woke', 'amp', 'not', 'go', 'back', 'sleep', 'txt', 'bff', 'sayin', 'call', 'sound', 'import', 'hour', 'ago'], ['play', 'bejewl', 'facebook', 'damn', 'want', 'higherscor'], ['truss', 'fail'], ['stuck', 'huge', 'traffic', 'jam'], ['porridg', 'tast', 'shit', 'cba', 'today', 'man'], ['sell', 'car', 'cost', 'much', 'afford', 'one', 'rollersk', 'bye', 'bye', 'petey'], ['love', 'morn', 'cycl', 'work', 'met', 'degre', 'offic'], ['trend', 'topic', 'twitter', 'use', 'use', 'like', 'middl', 'schooler', 'pass', 'around', 'note', 'class', 'bore'], ['hate', 'type', 'mac', 'wish', 'done', 'english', 'essay', 'soon', 'sleepi'], ['want', 'get', 'hand', 'dirti', 'fubumvc', 'document', 'not', 'yet', 'complet'], ['serious', 'get', 'hurt', 'day', 'nation', 'joke'], ['mosquito', 'truck', 'wake'], ['haha', 'okay', 'talk', 'middl', 'colleg', 'grad', 'think', 'got', 'worri'], ['not', 'tell', 'thrill', 'noseble', 'first', 'time', 'age', 'overjoy', 'not', 'cover', 'urgh'], ['not', 'seem', 'sleep', 'tonight', 'need', 'get', 'less', 'hour'], ['bah', 'wake'], ['hate', 'work', 'especi', 'weather', 'good'], ['torn', 'get', 'extend', 'warranti', 'iphon', 'mine', 'run', 'jailbreak', 'alreadi', 'got', 'problem', 'batteri', 'amp', 'earpiec'], ['back', 'much', 'email', 'inbox'], ['friday', 'night', 'fav', 'night', 'week', 'go', 'stupid', 'dog', 'train', 'class'], ['think', 'goe', 'everyth', 'thought', 'olymp', 'spirit', 'team', 'gb'], ['suck', 'go', 'summer', 'school', 'need', 'catch', 'sever', 'unit'], ['miss', 'cari', 'want', 'drink', 'chocol', 'milk'], ['not', 'ask', 'hope', 'today', 'improv', 'rest', 'week', 'look', 'forward', 'weekend', 'weather'], ['suck', 'took', 'like', 'minut', 'go', 'sleep', 'final'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['ill', 'hate', 'see', 'doc'], ['want', 'get', 'hand', 'dirti', 'fubumvc', 'document', 'not', 'yet', 'complet'], ['shit', 'week', 'fuck', 'week', 'gym', 'worst', 'headach'], ['oh', 'mood', 'go', 'home', 'birthday'], ['crazi', 'part', 'reason', 'includ', 'quot', 'full', 'schedul', 'quot', 'amp', 'quot', 'travel', 'daughter', 'quot', 'not', 'cool'], ['omg', 'sorri', 'worst', 'employe', 'ever', 'hard', 'drive', 'fail', 'take', 'survey', 'data'], ['sad', 'not', 'give', 'not', 'noth'], ['brother', 'woke', 'help', 'homework', 'not', 'happi'], ['disturb', 'sold', 'babi', 'tiger', 'met', 'thailand', 'exot', 'pet', 'greedi', 'bastard'], ['yep', 'wish', 'play', 'dubiln'], ['also', 'anyon', 'els', 'hayfeveri', 'today', 'awak', 'sufferin', 'alreadi'], ['dog', 'fart', 'bad'], ['morn', 'alex', 'hope', 'tweet', 'lot', 'today', 'miss', 'not', 'xx'], ['euh', 'got', 'ldap', 'schema', 'error', 'oh'], ['sorri', 'hear', 'man', 'bullshit', 'not', 'reach', 'heart', 'goe', 'famili'], ['aw', 'sad', 'leav', 'tokyo', 'come'], ['haha', 'nice', 'fun', 'doll', 'hope', 'see', 'ya', 'soon', 'miss', 'face'], ['cold', 'still', 'not', 'find', 'hoodi'], ['eat', 'pringl', 'near', 'realli', 'remind', 'tour', 'jona', 'brother', 'not', 'ask', 'miss', 'much'], ['yummi', 'chocol', 'even', 'got', 'one', 'anybodi', 'listen'], ['make', 'sure', 'next', 'time'], ['hope', 'go', 'away', 'quicker', 'mine', 'week', 'count'], ['wish', 'could', 'go', 'back', 'bed'], ['woke', 'day', 'need', 'go', 'work', 'suck', 'also', 'go', 'dentist', 'fill', 'st', 'helen', 'mri', 'scan'], ['mom', 'left'], ['finish', 'watch', 'termin', 'music', 'noth', 'great'], ['not', 'afford', 'go', 'school'], ['need', 'retail', 'therapi', 'bad', 'money', 'geebus'], ['feel', 'less', 'noth', 'lower', 'zero'], ['attempt', 'sleep', 'puppi', 'sick', 'alreadi'], ['mind', 'race', 'word', 'wrote', 'hate', 'hate', 'not', 'keep', 'fall'], ['not', 'sleep', 'tire', 'goodnight', 'mayb'], ['blimey', 'still', 'suffer'], ['yeah', 'thumb', 'last', 'night', 'sorri'], ['oh', 'fack', 'gave', 'polic', 'serious', 'shit'], ['not', 'afford', 'go', 'school'], ['broke', 'cigarett'], ['feel', 'like', 'red', 'lea'], ['squirrel', 'hate', 'squirrel'], ['morn', 'twitti', 'head', 'colleg', 'back', 'doc', 'god', 'hungri', 'strech', 'ear', 'today', 'payday', 'love'], ['backach'], ['finish', 'video', 'fuck', 'long'], ['lappytop', 'baterri', 'die', 'tryingtofind', 'movieto', 'watch', 'sinc', 'stay', 'goingto', 'room'], ['longer', 'ticket', 'ny'], ['sun', 'shine', 'stuck', 'work'], ['bitten', 'smoothstream', 'not', 'seem', 'work', 'client', 'linux'], ['not', 'know', 'could', 'would', 'cost', 'soo', 'much'], ['madaya', 'ka', 'christian', 'bleh', 'hate'], ['myspac', 'mobil', 'free', 'credit', 'lier'], ['not', 'follow', 'ruin', 'twitter', 'experi'], ['flight', 'hurghada', 'delay', 'hour'], ['go', 'strang', 'weekend', 'probabl', 'srtart', 'work', 'til', 'midnight', 'tonight'], ['lucki', 'want', 'see', 'loservill', 'piti', 'oz'], ['allow', 'calcul', 'exam', 'despit', 'contain', 'lath', 'imposs', 'comput', 'head'], ['whataburg', 'close', 'locat', 'talli', 'harsh', 'might', 'transfer', 'school'], ['hour', 'sleep', 'mild', 'hangov', 'careless', 'loss', 'brand', 'new', 'ipod', 'pouch'], ['worn', 'week', 'sped', 'soo', 'fast', 'go', 'ask', 'mum', 'go', 'movi', 'desper'], ['wee', 'laddi', 'upset', 'hour', 'tri', 'sooth', 'bed', 'nurs', 'etc', 'nope', 'real', 'food', 'blue', 'clue'], ['play', 'skate', 'two', 'hour', 'need', 'get', 'actual', 'skate', 'late'], ['got', 'dentist', 'appoint', 'soon', 'drill', 'feel', 'like', 'got', 'brain', 'blender', 'not', 'look', 'forward'], ['ghh', 'went', 'hour', 'earlier', 'bed', 'think', 'ill', 'get', 'area', 'hr', 'sleep', 'woke', 'hr', 'earlier', 'today', 'go', 'loong', 'one'], ['contempl', 'hand', 'love', 'car'], ['fuck', 'recover', 'boot', 'part', 'mess', 'grr', 'argh', 'busi'], ['ate', 'pussi', 'refus', 'bless', 'cuz', 'alreadi', 'clingi'], ['not', 'well', 'definit', 'not', 'hayfev'], ['come', 'hard', 'find', 'guy', 'passion', 'love', 'woman', 'ever', 'go', 'see', 'day', 'lone'], ['sorri', 'not', 'want', 'cuz', 'act', 'turn', 'right', 'around', 'ignor'], ['oh', 'gosh', 'hair', 'short', 'miss', 'long', 'hair'], ['probabl', 'not', 'weather'], ['lindsay', 'spanish', 'fansit', 'love', 'pleas', 'repli', 'us', 'wish', 'good', 'flight', 'lt'], ['live', 'countri', 'govern', 'alway', 'circus', 'show', 'sad', 'true'], ['dead', 'grandpa', 'pay', 'attent'], ['lol', 'haha', 'realli', 'realli', 'miss'], ['want', 'see', 'stori', 'acorn', 'tonight', 'glen', 'beck', 'miss'], ['almost', 'say', 'quot', 'bless', 'quot', 'sneez', 'cat'], ['goodi', 'feel', 'like', 'disconnect'], ['sigh', 'alway', 'disappoint', 'peopl', 'get', 'way', 'everyon', 'might', 'disappoint', 'everyon', 'els'], ['night', 'dm', 'said', 'quot', 'good', 'quot', 'question'], ['hate', 'bit'], ['miss', 'sweeti'], ['miss', 'feb', 'best', 'night', 'whole', 'entir', 'fuck', 'life', 'would', 'rather', 'night', 'win'], ['kid', 'rememb', 'search', 'local', 'video', 'store', 'owner', 'godown', 'got', 'video', 'tape', 'fungus', 'badluck'], ['wish', 'compani'], ['work', 'suckd', 'anoth', 'close', 'nite', 'dollar', 'pocked', 'need', 'new', 'job'], ['woken', 'feel', 'littl', 'not', 'thing', 'drink', 'bar', 'dri', 'card', 'final', 'sober', 'home', 'time', 'think'], ['bummer', 'tomorrow', 'friday'], ['screw', 'fact', 'not', 'post', 'long', 'updat', 'twitter'], ['not', 'much', 'debat'], ['hey', 'got', 'text', 'sms', 'plan', 'mayb', 'catch', 'flick', 'tonight', 'last', 'night', 'wee', 'bit', 'much'], ['four', 'full', 'day', 'left', 'not', 'want', 'go', 'home'], ['gone'], ['damn', 'fail', 'assassin', 'attempt', 'loui'], ['still', 'awak', 'smh', 'suck'], ['headach', 'cold'], ['grr', 'allow', 'gas', 'grill', 'live', 'suck'], ['headach', 'kill', 'yet', 'need', 'cover', 'bore', 'polic', 'event'], ['sick', 'doctor', 'wait', 'room'], ['much', 'detail', 'glad', 'better'], ['finish', 'villag', 'love', 'could', 'watch', 'wonder', 'not', 'get', 'sleep', 'tonight'], ['soo', 'lost', 'without', 'car', 'truli', 'depress', 'pregnant', 'peopl', 'never', 'stress'], ['like', 'saddest', 'person', 'jtv', 'right', 'not'], ['marley', 'saddest', 'movi', 'ever', 'never', 'cri', 'movi', 'movi', 'mad', 'cri'], ['look', 'forward', 'see', 'raleigh', 'fan', 'year', 'nb', 'scalper', 'took', 'tix', 'sell', 'moron'], ['got', 'attack', 'club'], ['car', 'drop', 'servic', 'mot', 'get', 'train', 'home', 'hate', 'public', 'transport'], ['morn', 'tweepl', 'bit', 'sneezi', 'today'], ['tri', 'understand', 'join', 'els', 'felt', 'left'], ['not', 'win', 'kelli', 'clarkson', 'ticket', 'sorri', 'cecilia', 'realli', 'wish', 'could', 'give', 'much', 'deserv'], ['mad', 'go', 'miss', 'main', 'tomorrow', 'take', 'ef', 'day', 'fli', 'florida'], ['want', 'stay', 'bed', 'day', 'go', 'work', 'instead', 'suck'], ['fun', 'tweet', 'day', 'clean', 'hair', 'lol'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['fix', 'favourit', 'heel', 'fell', 'wear'], ['realiz', 'chris', 'lake', 'spin', 'stockholm', 'yesterday', 'miss'], ['haha', 'love', 'surpris', 'not', 'work', 'til', 'sunday', 'though', 'wait'], ['hate', 'late'], ['feel', 'like', 'shit', 'hope', 'not', 'swine', 'flu', 'someth'], ['friday', 'sick', 'stori', 'life'], ['yummiest', 'pan', 'mee', 'behind', 'danc', 'center', 'ipoh', 'garden', 'south', 'miss'], ['almost', 'lost', 'phone', 'silli', 'indi'], ['still', 'depress', 'felin', 'anoth', 'trip', 'vet', 'tomorrow', 'see', 'not', 'even', 'cover'], ['wtf', 'pog', 'back'], ['go', 'miss', 'roomi', 'longer', 'roomi', 'start', 'tomorrow'], ['sus', 'ate', 'upset', 'not', 'inform', 'turn', 'told', 'sarm', 'expect', 'tell', 'huff'], ['done', 'much', 'brazilian', 'ha', 'meh', 'think', 'love', 'countri', 'uk'], ['buy', 'new', 'washer', 'bought', 'dryer', 'dryer', 'label', 'electr', 'gas', 'grr', 'load', 'tomorrow', 'return'], ['lone', 'right', 'mayb', 'sade', 'got', 'feel', 'like'], ['burfday', 'alon'], ['busi', 'pleasur', 'keep', 'eye', 'anyth', 'miss', 'moondog', 'concert', 'tomorrow', 'night'], ['hmz', 'second', 'popular', 'page', 'government', 'site', 'page', 'fail'], ['want', 'somebodi', 'hold', 'alma', 'tear', 'tear'], ['bore', 'not', 'even', 'teas', 'peopl'], ['bad', 'not', 'either'], ['not', 'think', 'said', 'true', 'rant', 'mcfli', 'not', 'beliv', 'feel', 'asham'], ['begin', 'get', 'way', 'hard', 'pleas', 'friend'], ['not', 'mood'], ['awak', 'not', 'get', 'back', 'sleep'], ['feel', 'realli', 'realli'], ['better', 'work'], ['miss'], ['oh', 'cr', 'goe', 'head', 'quot', 'spin', 'around', 'quot'], ['bad', 'sweden', 'not', 'theater', 'octob'], ['wide', 'awak', 'wish', 'not', 'damn', 'nightshift', 'routin', 'got', 'turn', 'job', 'nashvill', 'oh', 'well'], ['emerg', 'room', 'cousin', 'got', 'mad', 'flu', 'not', 'walk', 'breath', 'hospit', 'alway', 'cold'], ['got', 'finish', 'watch', 'marley', 'cri', 'like', 'fuck', 'miss', 'beast', 'like', 'crazi'], ['phone', 'pass', 'away', 'yesterday', 'jump', 'tabl', 'search', 'new', 'phone'], ['tri', 'best', 'write', 'five', 'year', 'behind', 'heh', 'happen'], ['tummi', 'bug', 'lame', 'got', 'hour', 'sleep'], ['nobodi', 'love', 'twitter'], ['bubbl', 'tea', 'awesom', 'long', 'sinc'], ['soo', 'full', 'start', 'feel', 'sick'], ['know', 'better', 'noth'], ['ever', 'realiz', 'never', 'fulli', 'everyth', 'want', 'feelin'], ['hell', 'awak', 'earli'], ['sad', 'best', 'friend', 'selfish', 'heartless', 'exclud', 'life', 'sad'], ['sad', 'true', 'not', 'right'], ['lost', 'friend', 'alon', 'want', 'go', 'home'], ['not', 'get', 'joke'], ['sorri', 'lone'], ['soo', 'excit', 'pasadena', 'find', 'conferm', 'email'], ['bed', 'tha', 'nerv', 'call', 'blackberri', 'askin', 'hell', 'like', 'got', 'go', 'ya', 'c', 'nap'], ['alreadi', 'feel', 'like', 'one', 'day', 'not', 'abl', 'win'], ['sorri', 'twitter', 'suck', 'ball', 'sinc', 'repli', 'chang', 'fixrepli'], ['rain', 'aahh', 'go', 'melt', 'damn', 'cold', 'freakin', 'cold', 'brr'], ['realli', 'miss', 'photofiltr', 'photoscap', 'gimp', 'damn', 'confus'], ['quot', 'academ', 'cours', 'quot', 'miss', 'alreadi'], ['hard', 'find', 'good', 'hous', 'event', 'sacramento', 'area'], ['last', 'bore', 'previous', 'dayss'], ['bed', 'not', 'sleep', 'someth', 'miss'], ['actual', 'think', 'mean', 'feel', 'sorri'], ['wed', 'tv', 'make', 'cri', 'inner', 'desir', 'etern', 'happi', 'start', 'rest', 'life'], ['not', 'go', 'bed', 'soo', 'tire'], ['man', 'start', 'rain', 'real', 'hard'], ['not', 'mind', 'agh'], ['oh', 'sorri', 'hear', 'sad'], ['okay', 'serious', 'bore', 'noth', 'not', 'go', 'rain'], ['nice', 'concert', 'yesterday', 'nice', 'locat', 'nice', 'peopl', 'great', 'bad', 'cold', 'sinc', 'yesterday', 'night', 'sick', 'suck'], ['not', 'believ', 'wait', 'till', 'octob', 'see', 'quot', 'quot', 'american', 'get', 'see', 'weekend'], ['earlier', 'stupid', 'orthadontist', 'appoint'], ['wrote', 'lyric', 'new', 'song', 'excit', 'slept', 'full', 'stomach', 'worst', 'feel', 'wake', 'still', 'feel', 'full', 'euggh'], ['bum', 'not', 'get', 'tedx', 'ticket'], ['wow', 'one', 'year', 'today', 'luc', 'bourdon', 'kill', 'not', 'seem', 'long', 'ago'], ['hour', 'sleep', 'rest', 'need'], ['dang', 'ran', 'bunni', 'way', 'home', 'feel', 'bad', 'compass', 'anim', 'human'], ['get', 'class', 'hope', 'make'], ['ahh', 'probabl', 'good', 'dubai'], ['not', 'sick', 'year', 'omg', 'suck', 'bad', 'sick', 'end', 'includ', 'full', 'restroom', 'cleanup'], ['file', 'much', 'less', 'fun', 'sort', 'cos', 'still', 'look', 'amp', 'hunt', 'detail'], ['oh', 'hate'], ['wish', 'get', 'least', 'row', 'day', 'not', 'enough', 'rest', 'day', 'day', 'day', 'day'], ['histor', 'jesus', 'ever', 'exist', 'find', 'hard', 'prove', 'hearsay', 'account', 'bug'], ['spent', 'hour', 'look', 'blog', 'topic', 'end', 'invent', 'grr'], ['guess', 'not', 'talk', 'orlando', 'magic', 'noth', 'magic'], ['tire', 'think', 'becom', 'old', 'go'], ['caught', 'tweet', 'got', 'home', 'time', 'last', 'min', 'show', 'bgt', 'tonight', 'miss'], ['hour', 'sleep', 'last', 'night', 'want', 'crawl', 'ball', 'somewher', 'sleep', 'hour', 'work', 'till', 'six'], ['horribl', 'sleep', 'rather', 'bad', 'mood'], ['sore', 'throat', 'come', 'record', 'start', 'new', 'citipoint', 'ep', 'album', 'argghh', 'prayer', 'need'], ['brodi', 'dare'], ['tummi', 'pain', 'n', 'woke', 'stu', 'drink', 'middl', 'night', 'not', 'rememb'], ['look', 'forward', 'daddi', 'return', 'work', 'saturday', 'gone', 'whole', 'month'], ['quot', 'fuck', 'quot', 'not', 'get', 'gift', 'exit', 'soo', 'awesom'], ['freak', 'bore', 'bus', 'hate', 'poor', 'return', 'min', 'train', 'return', 'hour', 'long', 'batteri'], ['footbal', 'session'], ['head', 'pool', 'around', 'serious', 'garden', 'go', 'tweetdeck', 'til', 'sunday', 'even'], ['not', 'fruit', 'sugar', 'cover', 'sweet', 'tummi', 'not', 'happi'], ['sudden', 'crave', 'broccoli', 'chees', 'soup', 'realli', 'bad', 'oh', 'hunger'], ['fo', 'shizzl', 'bore', 'want', 'go', 'someth', 'wish', 'went', 'pisay', 'today', 'oh', 'wellz', 'wonder'], ['actual', 'not', 'fun', 'would', 'think', 'hurt', 'week', 'similar', 'experi'], ['noth', 'could', 'get', 'wors', 'could', 'think', 'id', 'verg', 'kill', 'someon', 'els', 'thing', 'not', 'good', 'anymor'], ['oh', 'love', 'oreo', 'not', 'get', 'mani', 'varieti', 'uk'], ['work', 'earli', 'frustrat', 'work', 'get', 'frustrat', 'work', 'not', 'much', 'time', 'design', 'today'], ['aw', 'say', 'pic', 'not', 'exist', 'anymor'], ['spent', 'allow', 'cybernet', 'expo', 'sf', 'send', 'dm', 'rate', 'though', 'mayb', 'cash', 'flo', 'bttr'], ['michael', 'bay', 'sigh', 'sorri', 'love', 'not', 'know', 'felt', 'way', 'xd'], ['hurt', 'done', 'tri'], ['yucki', 'burn'], ['took', 'yearbook', 'photo', 'earlier', 'school', 'not', 'think', 'turn', 'great'], ['sudden', 'crave', 'broccoli', 'chees', 'soup', 'realli', 'bad', 'mouth', 'water', 'envis', 'bread', 'bowl', 'head'], ['today', 'weigh', 'lost', 'pound', 'week', 'depress'], ['explos', 'late', 'eighti', 'odd', 'weather', 'instead', 'migrat', 'wind', 'blew', 'back'], ['keep', 'get', 'delay', 'respons', 'internet', 'mess'], ['aww', 'heard', 'miss', 'two', 'amp'], ['write', 'report', 'card', 'soo', 'tire', 'amaz', 'day', 'check', 'fb', 'soon'], ['yes', 'watch', 'season', 'even', 'wish', 'could', 'get'], ['damn', 'got', 'chili', 'bean', 'shirt', 'hate', 'messi', 'eater', 'ladi'], ['start', 'diet', 'today', 'think', 'face', 'never', 'get', 'back', 'unless', 'cut', 'leg'], ['ferber', 'happen', 'everi', 'day', 'rohan', 'woke', 'unhappi', 'midnight', 'news', 'still', 'awak', 'due', 'afternoon', 'nap'], ['lorrain', 'kelli', 'sexi', 'mama'], ['uggh', 'not', 'know', 'want', 'stop', 'get', 'text', 'twitterr'], ['lol', 'cnt', 'slow'], ['sad', 'belov', 'boy', 'not', 'onlin', 'wait', 'everyday'], ['hard', 'furnitur', 'ship', 'know', 'backord', 'may', 'cancel', 'shop', 'local'], ['huh', 'alreadi', 'shuck'], ['aiaahh', 'poor', 'tell', 'mom', 'alreadi'], ['cold'], ['realli', 'wish', 'could'], ['laugh', 'much', 'today', 'pictur', 'lauren', 'chest', 'hurt'], ['sad', 'sad', 'sad', 'thought', 'aunti', 'stina', 'come', 'look', 'forward', 'miss', 'dat', 'alon', 'maui'], ['miss', 'soulja', 'boy', 'danc'], ['want', 'buy', 'million', 'copi', 'not', 'rich', 'buy', 'copi', 'urself', 'hahah'], ['still', 'not', 'asleep', 'ahh', 'wtf'], ['get', 'back', 'tokyo', 'miss'], ['two', 'page', 'assign', 'weekend', 'goe', 'chanc', 'relax'], ['omge', 'hurt', 'like', 'hell', 'final', 'got', 'back', 'not', 'close', 'put', 'ball', 'back'], ['feel', 'sick', 'day', 'today', 'arrgh'], ['least', 'get', 'broke'], ['not', 'right', 'need', 'make', 'sorri'], ['great', 'later', 'wish', 'book'], ['hear', 'full', 'album', 'preview', 'today', 'webcast', 'jonasnewsong', 'wayi', 'could', 'not'], ['jeff', 'not', 'forcast', 'tonight', 'say', 'saturday', 'good', 'time', 'not', 'life', 'saturday'], ['take', 'life', 'guard', 'class', 'fri', 'sat', 'sun', 'mon', 'live', 'eat', 'breath', 'life', 'guard', 'stuff', 'yay'], ['miss', 'westcott', 'micro', 'apollo'], ['thumb', 'hurt', 'break', 'nail'], ['dad', 'quot', 'trip', 'lahor', 'quot', 'quot', 'live', 'dc', 'amp', 'nyc', 'also', 'big', 'quot', 'bummer', 'pizza', 'hut', 'chicken', 'tikka', 'pizza'], ['seem', 'cruel', 'condit'], ['last', 'night', 'bottl', 'wine', 'hous', 'cocktail', 'came', 'home', 'sober', 'still', 'go', 'sick'], ['cupcak', 'gave', 'heartburn'], ['stayin', 'dustin', 'tonight', 'car', 'hate'], ['final', 'reunit', 'hunni', 'bunni', 'day', 'leav', 'anoth', 'week', 'away', 'work', 'night'], ['horribl', 'toothach', 'wink', 'sleep', 'xx'], ['woken', 'screamin', 'lil', 'nefuew'], ['movi', 'today', 'not', 'go', 'see'], ['not', 'think', 'sad', 'alot', 'pain', 'amp', 'bad', 'go', 'anotha', 'week', 'soon', 'xx'], ['sick', 'n', 'tire', 'peopl', 'steal', 'peopl', 'work'], ['much', 'bro'], ['back', 'work', 'warm', 'today'], ['miss', 'terribl'], ['burnt', 'finger', 'tri', 'keep', 'hand', 'warm', 'rice', 'cooker'], ['sunni', 'work'], ['chang', 'way', 'golden', 'gaytim', 'made', 'use', 'awesom'], ['us', 'go', 'stuck', 'offic', 'without', 'window'], ['wonder', 'come', 'not', 'twitter', 'week', 'yeah', 'adam', 'withdraw', 'syndrom', 'nice'], ['haha', 'balconi', 'seat', 'not', 'great', 'giant', 'dragon', 'thing', 'glow', 'red', 'eye', 'move', 'wing'], ['go', 'see', 'ill', 'uncl', 'saturday', 'night', 'hous', 'even', 'bad', 'news', 'come'], ['oh', 'dear', 'follow', 'someon', 'claim', 'help', 'stay', 'young', 'end', 'nigh'], ['pretti', 'lame', 'babe'], ['stun', 'busi', 'card', 'asham', 'mine'], ['aww', 'suck', 'also', 'finish', 'uni', 'total', 'mini', 'housewarm', 'yes', 'work', 'around', 'schedul', 'lol'], ['miss', 'daddi'], ['gawd', 'rain', 'strong'], ['not', 'best', 'financi', 'situat', 'moment', 'beyond', 'broke', 'money', 'spend', 'soon', 'earn', 'atm'], ['choos', 'sunday', 'win', 'shatter', 'not', 'healthi', 'enough', 'go'], ['go', 'see', 'ill', 'uncl', 'saturday', 'spend', 'night', 'hous', 'even', 'bad', 'news', 'come'], ['oww', 'think', 'tore', 'someth', 'leg'], ['morn', 'still', 'tri', 'find', 'babysitt', 'crech', 'gym', 'might', 'leav', 'know', 'not', 'happi'], ['must', 'scare', 'troll', 'guy', 'sad', 'tcot', 'right'], ['not', 'want', 'work', 'tomorrow', 'not', 'feel', 'good', 'not', 'felt', 'good', 'day', 'bodi', 'need', 'rest', 'mind', 'not', 'slow'], ['oh', 'ffs', 'not', 'get', 'paid', 'till', 'monday', 'sorri', 'william', 'go', 'wait', 'till', 'next', 'weekend', 'till', 'give'], ['alreadi', 'offic', 'peopl', 'melt', 'fight', 'air', 'con', 'fan', 'not', 'help', 'not', 'find', 'budget'], ['set', 'get', 'room', 'last', 'saturday', 'not', 'apologis', 'enough', 'miss', 'decci'], ['today', 'miss', 'coffeeclub', 'day'], ['not', 'think', 'sale', 'ciroc', 'luck'], ['back', 'track', 'transcript', 'process', 'still', 'not', 'stop', 'lappi', 'overh', 'though'], ['feel', 'rough'], ['defeat', 'polo'], ['fine', 'give', 'doc', 'today', 'not', 'abl', 'breath', 'morn', 'made', 'think', 'hate', 'doc'], ['friend', 'massiv', 'beatl', 'fan', 'not', 'impress'], ['nevermind', 'beyonc', 'not', 'twitter', 'haha'], ['know', 'heap', 'awesom', 'not', 'work', 'weekend'], ['predict', 'feel', 'lyk', 'shit', 'gahh', 'hate', 'bein', 'ill', 'wrk', 'tweet', 'lata', 'xx'], ['waay', 'tht', 'bitchi', 'ninth', 'grade', 'bullshit', 'half', 'year', 'exam', 'amp', 'sickk'], ['plan', 'might', 'gone', 'window', 'bit', 'gut'], ['follow', 'not', 'know', 'one', 'send', 'ps', 'not', 'get', 'hope', 'may', 'not', 'sen'], ['hot', 'sat', 'offic', 'want', 'sun', 'shine'], ['miss', 'crab', 'leg', 'attend', 'go', 'away', 'instead'], ['mayb', 'lack', 'friday', 'feel', 'cos', 'trouser', 'not', 'go', 'thunder', 'thigh'], ['broken', 'wrist'], ['sorri', 'love', 'left', 'over', 'come', 'sat', 'mi', 'casa', 'ton', 'birthday', 'ton', 'food'], ['awak', 'not', 'sleep', 'feel', 'sick', 'yuck'], ['allerg', 'cat', 'tonsil', 'get', 'swollen', 'hurt', 'doo'], ['wat', 'doin', 'bad', 'mixin', 'song'], ['fall', 'asleep', 'not', 'get', 'see', 'jona', 'brother', 'web', 'cast', 'still', 'tierd'], ['bought', 'new', 'racquet', 'wish', 'racquet', 'half', 'god', 'rest', 'despit', 'recess', 'thing', 'fkin', 'cost'], ['know', 'yes', 'not', 'remind', 'effin', 'jealous', 'fuck', 'aust', 'time'], ['cri', 'omg', 'fed', 'pain'], ['awhil', 'ago', 'freak', 'hot', 'wet', 'turn'], ['ruler', 'call', 'see', 'get', 'love'], ['realli', 'tire', 'not', 'much', 'time', 'sleep'], ['go', 'miss', 'khyy', 'much'], ['go', 'record', 'needl', 'sting', 'heart', 'youtub', 'someth', 'miss', 'stream'], ['not', 'best', 'way', 'start', 'day'], ['alon', 'old', 'hous', 'thank', 'net', 'keep', 'aliv', 'kick', 'whoever', 'invent', 'net', 'want', 'kiss', 'hair'], ['exact', 'problem', 'pure', 'classic', 'music', 'not', 'njoy'], ['go', 'get', 'full', 'night', 'sleep', 'tonight', 'arm', 'get', 'better', 'fun', 'forc', 'use', 'left', 'hand'], ['shut', 'face', 'mean', 'pedro', 'suppos', 'mean', 'one'], ['ffa', 'evil', 'grin', 'busi', 'work', 'today', 'get', 'anyth', 'done'], ['alway', 'tire', 'alway', 'cold', 'alway', 'headach', 'not', 'wait', 'frickin', 'want', 'onscreen', 'keyboard', 'dammit'], ['omg', 'go', 'see', 'anoth', 'reason', 'not', 'live', 'devon', 'none', 'f', 'cinema', 'film', 'annoy'], ['aa', 'hate', 'fuck', 'winshit'], ['think', 'may', 'time', 'lemsip', 'soon', 'cold', 'realli', 'suck'], ['fell', 'stair', 'danc', 'sword', 'fell', 'bum', 'hurt'], ['not', 'proud', 'os', 'x', 'excel', 'edit', 'pc', 'lag', 'much', 'behind'], ['emili', 'tonight', 'xd', 'work', 'experi', 'jen', 'go', 'miss', 'see', 'like', 'everyday'], ['girl', 'still', 'tire'], ['internet', 'get', 'damn', 'slow', 'today'], ['feel', 'like', 'age', 'away', 'month'], ['took', 'polish', 'nail', 'finger', 'door', 'handl', 'murder', 'earlier', 'well', 'not', 'pretti'], ['darlin', 'miss'], ['bastard', 'want', 'beach', 'sun'], ['get', 'size', 'jean', 'could', 'not', 'get', 'hip'], ['not', 'believ', 'stay', 'work'], ['miss', 'match', 'game', 'tonight', 'hope', 'make', 'tomorrow', 'night'], ['not', 'realli', 'fair', 'mean', 'leav', 'like', 'not', 'even', 'give', 'us', 'parti', 'come', 'back'], ['bruis', 'toe', 'wors', 'finger', 'fuckin', 'hurt', 'right', 'even', 'ice'], ['thank', 'scare', 'dentist', 'look', 'like', 'go', 'get', 'go'], ['forgot', 'peopl'], ['sleep', 'would', 'home', 'sooner', 'accident', 'kill', 'bambi', 'way', 'home'], ['woke', 'tummi', 'hurt', 'alway', 'someth', 'wrong'], ['hi', 'sharon', 'miss', 'x', 'factor', 'last', 'year', 'come', 'back', 'x'], ['hour', 'sleep', 'last', 'night', 'bare', 'function'], ['call', 'cheeseburglar', 'made', 'sad'], ['not', 'happi', 'got', 'big', 'choic', 'make'], ['get', 'bore', 'sit', 'hotel', 'room', 'entir', 'day'], ['bump', 'air', 'suppli', 'greastest', 'hit'], ['forward', 'email', 'cool', 'scienc', 'event', 'canberra', 'friend', 'thought', 'sydney', 'trekk', 'wrong', 'place'], ['keep', 'get', 'pet', 'day', 'heard', 'weekend', 'fab', 'wed', 'soon'], ['better', 'hurri', 'would', 'not', 'label', 'copycat'], ['fli', 'ontario', 'hour', 'probabl', 'stay', 'first', 'time', 'yay', 'sleepi'], ['gut', 'work', 'soo', 'nice', 'outsid'], ['geographi', 'paper', 'bore', 'hate', 'revis'], ['bah', 'bk', 'recept', 'comp', 'not', 'sun', 'got', 'hat', 'x'], ['bbc', 'malaria', 'parasit', 'becom', 'resist', 'drug', 'realli', 'not', 'good', 'malaria', 'affect', 'mani', 'peopl'], ['morn', 'appear', 'bit', 'sore', 'head', 'perhap', 'bag', 'pork', 'scratch', 'dinner', 'not', 'good', 'idea'], ['book', 'appoint', 'give', 'blood', 'june', 'scare'], ['awak', 'not', 'sleep'], ['attempt', 'write', 'tonight', 'seem', 'fail'], ['flypsid', 'must', 'creat', 'present', 'english', 'guy'], ['juz', 'regist', 'cp', 'twitter', 'tweet', 'not', 'go', 'thru', 'want', 'follow', 'idol', 'lyk', 'away', 'pc'], ['ugh', 'total', 'not', 'sleep'], ['wors', 'fever', 'sore', 'throat', 'cancel', 'trip', 'see', 'littl', 'bro', 'fever', 'sore', 'throat'], ['cucumb', 'gone', 'limp'], ['miss', 'bb', 'cereal', 'nut', 'think', 'like', 'everi', 'kind', 'avail'], ['unfortun', 'choos', 'sleep', 'gym', 'almost', 'everyday', 'tri', 'get'], ['reach', 'plate', 'get', 'anoth', 'bit', 'toast', 'realis', 'id', 'eaten', 'not', 'nice', 'feel'], ['oh', 'fml', 'prob', 'gunna', 'shepard', 'bush', 'hate'], ['wow', 'one', 'deep', 'sleep', 'wish', 'could', 'sleep', 'like', 'littl', 'nois', 'awak'], ['mess', 'hurt', 'bad'], ['wonder', 'end', 'hay'], ['internet', 'crash', 'ttytomorrow'], ['anyon', 'got', 'remedi', 'neck', 'pain', 'not', 'abl', 'turn', 'head', 'proper', 'without', 'bad', 'twing', 'day'], ['crazi', 'night', 'lost', 'key', 'walk', 'home', 'miss', 'papi', 'call', 'swizzi', 'sad'], ['serious', 'bloow'], ['moorn', 'friday', 'terrif', 'smile'], ['record', 'player', 'decid', 'die', 'friday', 'night', 'sad', 'e'], ['want', 'get', 'done', 'miss', 'work'], ['miss', 'peanut', 'galleri'], ['aww', 'kind', 'hi', 'sweeti', 'guy', 'parti', 'without', 'person', 'came', 'work', 'lol'], ['yes', 'problem', 'prism', 'fail'], ['not', 'sleep', 'ugh', 'shit', 'damn', 'day', 'tomorrow', 'want', 'take', 'sleep', 'pill', 'know', 'ill', 'get', 'late'], ['thank', 'follow', 'isafailur', 'suppos', 'b', 'team', 'thing', 'friend', 'not', 'email', 'communic', 'n'], ['hindi', 'flick', 'came', 'coupl', 'week', 'ago', 'never', 'made', 'uk'], ['liesboystel', 'one', 'love', 'realli', 'sever', 'women'], ['bf', 'gig', 'portland', 'not', 'drive', 'distanc', 'come', 'save', 'burbank', 'stuck', 'atm', 'work', 'plan', 'b'], ['aww', 'watch', 'britney', 'snl', 'young', 'cute', 'realli', 'funni', 'miss', 'britney'], ['not', 'good', 'sorri', 'hear', 'park'], ['hous', 'bound', 'acut', 'mump', 'bad', 'time', 'whole', 'day', 'ov', 'supernatur', 'think', 'x'], ['sad', 'awak', 'wonder', 'contact', 'info', 'fun', 'folk', 'hung', 'shop', 'yay', 'miss', 'guy'], ['back', 'sunday', 'play', 'hors', 'last', 'night', 'mex', 'not', 'miss'], ['fuck', 'elora', 'danan', 'break', 'miss', 'last', 'nsw', 'show', 'def', 'need', 'hit', 'melb', 'someon', 'come'], ['guess', 'bedtim', 'goodnight', 'twitter', 'bed', 'big', 'empti', 'without'], ['darn', 'realis', 'quot', 'pull', 'one', 'quot', 'would', 'far', 'better', 'respons', 'name', 'suggest'], ['life', 'come', 'noth', 'make', 'choic', 'ill', 'regret', 'later'], ['ok', 'crowdsourc', 'fail'], ['still', 'not', 'believ', 'gig', 'poster', 'littl', 'civic', 'taken'], ['mother', 'hog', 'tv'], ['not', 'sleep', 'ughh', 'n', 'registr', 'tomorrow', 'sux', 'shoot', 'star'], ['could', 'anoth', 'one', 'back', 'work', 'monday', 'week', 'not', 'good'], ['car', 'broke', 'time', 'start', 'look', 'get', 'anoth', 'not', 'one', 'thing', 'anoth'], ['oh', 'want', 'go', 'sea', 'today', 'sun', 'not', 'sigh'], ['hi', 'man', 'yeah', 'want', 'go', 'maui', 'liloven'], ['instal', 'offic', 'mac', 'amp', 'mess', 'font', 'safari', 'crap', 'stick', 'help', 'not', 'even', 'read', 'solut', 'onlin', 'badmicrosoft'], ['thirsti', 'middl', 'night', 'get', 'fridg', 'find', 'brand', 'new', 'bottl', 'juic', 'gone', 'fml', 'moment'], ['interview', 'leav', 'alon'], ['got', 'bruis', 'foot', 'nowher', 'hurt'], ['final', 'graduat', 'school', 'sick', 'today'], ['assist', 'watch', 'notebook', 'miss', 'deborah'], ['nice', 'action', 'shot', 'miss', 'work', 'pole', 'not', 'see', 'client', 'everyday', 'lol'], ['thought', 'one', 'best', 'hero', 'pitti', 'kill', 'good', 'charact', 'use', 'thing', 'lol'], ['sorri', 'not', 'go', 'jesus', 'not', 'feel', 'know', 'not', 'see', 'best', 'bud', 'well', 'movi', 'anyway'], ['wow', 'serious', 'hard', 'time', 'sleep', 'decongest', 'keep', 'wide', 'awak', 'want', 'sleep'], ['bug', 'damn', 'system', 'link', 'map', 'pack', 'not', 'work'], ['fuck', 'not', 'sleep', 'feen', 'cig', 'horribl', 'x'], ['good', 'morn', 'gorgeous', 'n', 'stuck', 'work', 'wish', 'home', 'chillin', 'hope', 'tha', 'day', 'goe', 'quick', 'doh'], ['drain', 'energi'], ['hate', 'headach', 'mayb', 'not', 'readi', 'rock'], ['time', 'month', 'spend', 'time', 'broken', 'airco', 'time', 'sigh', 'great', 'weekend', 'weather'], ['britain', 'shit'], ['test', 'today', 'killer', 'not', 'even', 'manag', 'finish', 'time'], ['watch', 'bone', 'final', 'last', 'night', 'uk', 'amp', 'rock', 'oh', 'much', 'miss', 'zack', 'freakin', 'awesom', 'lt'], ['yeah', 'right', 'accept', 'grant', 'cover', 'least', 'school', 'fee', 'tritonlink', 'not', 'verifi'], ['english', 'screw', 'overal', 'percentag', 'x', 'xii', 'probabl', 'adm', 'test', 'shit', 'happen'], ['hi', 'isla', 'hope'], ['lol', 'not', 'watch', 'yet', 'congrat'], ['boo', 'must', 'delet', 'phone', 'not', 'find', 'email', 'either'], ['slowli', 'realliz', 'burn', 'got', 'work', 'hour', 'ago', 'realli', 'suck'], ['hour', 'teleconfer', 'not', 'go', 'back', 'sleep', 'got', 'work', 'sigh', 'sigh'], ['yer', 'must', 'sure', 'brother', 'got', 'wors'], ['imac', 'die', 'keep', 'cut', 'reason', 'anyon', 'recommend', 'good', 'mac', 'place', 'servic', 'part', 'think', 'need', 'new', 'power', 'suppli'], ['later', 'normal', 'morn', 'got', 'attack', 'swarm', 'mini', 'fli', 'open', 'veranda', 'last', 'night', 'took', 'hour', 'get', 'rid'], ['app', 'chang', 'wallpap', 'one', 'sever', 'hundr', 'random', 'interv', 'hard', 'find', 'good', 'wallpap'], ['lame', 'sorri'], ['neck', 'hurt', 'lot'], ['wish', 'get', 'pancak', 'boo'], ['yep', 'freez', 'hate', 'winter', 'liter', 'wear', 'blacket'], ['room', 'hot', 'sleep'], ['shit', 'wide', 'awak'], ['mei', 'miss', 'dad', 'year'], ['funni', 'want', 'someth', 'even', 'someon', 'els', 'not', 'anymor', 'hahaha', 'next'], ['definit', 'feel', 'sorri', 'jami', 'stewart', 'amsterdam', 'audienc', 'realli', 'suck', 'read', 'post', 'may'], ['look', 'like', 'beauti', 'work', 'til', 'sunday', 'yay', 'bbq', 'yet', 'though', 'go', 'postpon', 'invit'], ['thank', 'bro', 'awak', 'alreadi'], ['horribl', 'apprais', 'peer', 'work', 'american', 'think', 'compos', 'poem', 'mayb', 'one', 'problem'], ['agh', 'freak', 'go', 'wale', 'alreadi', 'gt', 'lt', 'not', 'pack'], ['poor', 'thing', 'hang', 'luf', 'joe'], ['overslept', 'headach'], ['also', 'use', 'close', 'adiel', 'sabbi', 'chang', 'alot', 'like', 'sec'], ['watch', 'hella', 'home', 'movi', 'aunt', 'uncl', 'miss', 'day', 'whole', 'famili', 'got', 'along'], ['wonder', 'hate', 'drive', 'countri', 'road', 'stuff'], ['ack', 'see', 'either', 'weird', 'tweet', 'mention', 'not', 'timelin', 'oh', 'wait', 'new', 'twitter'], ['minut', 'left', 'flannel', 'hobbit', 'shoe', 'get', 'wet', 'rain', 'pls', 'go', 'away'], ['littelist', 'fish', 'udon', 'dear', 'depart'], ['never', 'knew', 'dentent', 'hard', 'get'], ['feel', 'bad', 'especi', 'na', 'ngayon', 'pa', 'siya', 'nagrerehab', 'siya', 'wrong', 'time', 'still', 'mayb', 'come'], ['quot', 'saaid', 'quot', 'haha', 'kind', 'make', 'sad', 'though'], ['knee', 'hurt'], ['bore'], ['freeagentapp', 'free', 'trial', 'ran', 'today', 'not', 'subscrib', 'abbi', 'accident', 'cancel', 'card', 'still', 'wait', 'new', 'one'], ['need', 'would', 'made', 'pictur', 'much', 'cooler', 'mine', 'bottl', 'green'], ['archi', 'propos', 'veronica', 'latest', 'archi', 'comic', 'longest', 'known', 'love', 'triangl', 'come', 'end', 'poor', 'betti'], ['dizzi', 'alreadi', 'third', 'page', 'chapter', 'plop', 'head'], ['miss', 'phone'], ['tire', 'not', 'right', 'get', 'earli'], ['headach'], ['oh', 'joy', 'elmo', 'potti', 'video'], ['forget', 'someth', 'morn', 'near', 'ran', 'bottom', 'hill', 'warm', 'shop', 'x'], ['good', 'size', 'famili', 'room', 'not', 'cramp', 'watch', 'match', 'room', 'watch', 'tv', 'iplay', 'kid', 'asleep'], ['quiet', 'tidi', 'dinner', 'parti', 'whilst', 'close', 'tupprwr', 'lid', 'centr', 'island', 'kitchen', 'collaps', 'wake', 'babi', 'mayhem', 'ensu'], ['figur', 'quot', 'wild', 'optimist', 'stuff', 'scienc', 'fiction', 'bit', 'disapoint', 'ciber', 'sabip'], ['play', 'game', 'yeahh', 'lost', 'inlov', 'fool'], ['boss', 'bulli'], ['case', 'go', 'exam', 'show', 'thing', 'two', 'much', 'hope', 'novemb', 'though'], ['better', 'back', 'soon', 'dude', 'typic', 'bedtim', 'look', 'talk', 'late'], ['minut', 'board', 'hour', 'home', 'window', 'seat'], ['file', 'got', 'delet'], ['sad', 'new', 'cd', 'got', 'nick'], ['love', 'wish', 'half', 'could', 'even', 'name', 'web', 'design', 'ladi'], ['layin', 'bed', 'awak', 'txtin', 'girl', 'vega', 'wishin', 'not', 'work', 'w'], ['damn', 'hungri', 'not', 'even', 'funni'], ['bigfanfriday', 'amp', 'go', 'amp', 'friggin', 'loos', 'life', 'suck'], ['miss', 'one'], ['mobil', 'stop', 'reciev', 'text', 'messag', 'stoopid', 'thing'], ['sowwi', 'suck', 'know', 'yay', 'half', 'day', 'though'], ['chillin', 'loonngg', 'day', 'basketbal', 'hella', 'tire', 'sleepi', 'time', 'zz'], ['woe', 'definit', 'fun', 'travel', 'first', 'class', 'bike', 'fight', 'way', 'coach', 'reach', 'seat'], ['tri', 'dming', 'tri', 'download', 'strang', 'file', 'stop', 'come', 'gmail', 'maccym', 'miss', 'sad'], ['epic', 'write', 'fail', 'ew', 'go', 'tri', 'sleep'], ['love', 'stuff', 'sell', 'help', 'guy', 'logo', 'shop', 'kind', 'wordart'], ['think', 'fair', 'k', 'den', 'guess', 'wrng', 'still', 'feel', 'not', 'fair'], ['endless', 'fascin', 'dual', 'engin', 'monitor', 'cab', 'remind', 'sustain', 'fail', 'sorri', 'next', 'gen'], ['gorgeous', 'day', 'go', 'stuck', 'lab', 'next', 'hour'], ['wrong', 'liesboystel', 'one', 'love', 'realli', 'sever', 'women'], ['glorious', 'went', 'outsid', 'gone', 'cold', 'cloudi'], ['felt', 'like', 'crap', 'behav', 'like', 'son', 'ate', 'compens', 'pig', 'sugar', 'almond', 'pain', 'tum', 'threw', 'still', 'feel', 'sick'], ['right', 'richard', 'marx', 'right', 'wait', 'realli', 'make', 'feel', 'nauseat', 'sad'], ['ugh', 'neck', 'realli', 'hurt', 'aquatard', 'xox'], ['week', 'drag', 'bit', 'essay', 'write', 'seasid', 'see', 'eddi', 'izzard', 'tonight', 'x'], ['miss', 'captain'], ['den', 'fell', 'asleep'], ['school', 'bore'], ['hope', 'feel', 'better', 'alon', 'talk', 'readi', 'go', 'alon'], ['fuck', 'not', 'left'], ['hey', 'fuse', 'game', 'fusedgam', 'forum', 'delay', 'et', 'tonight', 'sorri', 'live', 'gt'], ['workin', 'feelin', 'aw'], ['thing', 'not', 'easi', 'simpl', 'seem'], ['sad', 'roommat', 'fri', 'chicken', 'everi', 'night', 'finish', 'tonight', 'batch'], ['good', 'morn', 'gym', 'go'], ['bottom', 'thing', 'not', 'move', 'feel', 'bad', 'man'], ['think', 'love', 'part', 'say', 'cynic', 'word', 'even', 'though', 'smile', 'say', 'think', 'bad'], ['make', 'see', 'peopl', 'repli', 'peopl', 'follow', 'would', 'never', 'repli', 'back'], ['pretti', 'sure', 'bum', 'shape', 'still', 'imprint'], ['total', 'mia', 'know', 'bad'], ['oh', 'bird', 'back'], ['wisdom', 'teeth', 'hurt', 'much'], ['not', 'look', 'forward', 'go', 'back', 'work', 'day', 'not', 'long', 'enough'], ['miss'], ['not', 'want', 'come', 'not', 'come', 'jeez'], ['omg', 'cat', 'hairbal', 'awak'], ['way', 'work', 'runnin', 'late', 'soo', 'tire'], ['ooh', 'work', 'afarid', 'look', 'forward', 'sunni', 'weekeknd', 'though'], ['sometim', 'plug', 'fix', 'problem'], ['omigood', 'feel', 'like', 'popsicl'], ['sick', 'wake', 'feel', 'exhaust'], ['paradis', 'fli', 'catcher', 'abandon', 'nest', 'start', 'go', 'b', 'tough'], ['need', 'tickett', 'gah', 'ya', 'got', 'not', 'listen', 'dear', 'elliott'], ['say', 'headach'], ['hate', 'fuck', 'cold', 'not', 'stop', 'sneez', 'claratyn', 'work', 'hr'], ['seen', 'fat', 'singl', 'mum', 'road', 'quot', 'seduct', 'quot', 'sprawl', 'across', 'poor', 'bloke', 'bonnet', 'probabl', 'need', 'new', 'shocker'], ['not', 'go', 'not', 'refus', 'feel', 'pain'], ['poor', 'andrew', 'wisdom', 'teeth', 'remov', 'wish', 'get', 'better', 'fast'], ['not', 'take'], ['beauti', 'day', 'work', 'leav', 'get', 'sun', 'though'], ['lol', 'wos', 'gona', 'send', 'mine', 'bt', 'late', 'xx'], ['went', 'bed', 'last', 'night', 'feel', 'migrain', 'come', 'woke', 'feel', 'wors'], ['omfg', 'whyy', 'not', 'suck', 'wtf', 'getcho', 'ass'], ['tri', 'fail'], ['elena', 'left', 'morn', 'nine', 'month', 'spent', 'live', 'probabl', 'year', 'till', 'see', 'hmph'], ['idiot', 'ok', 'most', 'skint', 'hell', 'could', 'done', 'someth'], ['found', 'kitti', 'not', 'pregnant', 'good', 'thing', 'though', 'go', 'adopt', 'one', 'instead'], ['forc', 'bed', 'morn', 'fail', 'cycl', 'damn'], ['sleep', 'soo', 'good', 'woke', 'like', 'min', 'ago', 'n', 'got', 'sick', 'not', 'feel', 'great', 'want', 'go', 'back', 'sleep', 'wide', 'awak'], ['wish', 'go', 'two', 'differ', 'school', 'time'], ['jerk', 'josh', 'not', 'even', 'come', 'meet', 'think', 'number', 'guess'], ['not', 'happi'], ['regret', 'alcohol', 'consum', 'last', 'night', 'head'], ['bloodi', 'server', 'work', 'least', 'hour', 'want', 'go', 'home'], ['badbook', 'not', 'know', 'bother'], ['hug', 'yep', 'hate', 'meself'], ['yeah', 'ford', 'focus', 'titanium', 'get', 'helicopt', 'add', 'luxuri', 'model', 'unfortun'], ['hungri', 'noth', 'eat'], ['take', 'not', 'fan'], ['not', 'go', 'oxford', 'internet', 'institut', 'sunner', 'doctor', 'programm', 'brisban', 'lack', 'fund'], ['not', 'good', 'think', 'fault', 'though', 'not', 'use', 'buttermilk', 'recip', 'back', 'flour'], ['head', 'hospit', 'not', 'take', 'pain', 'anymor'], ['not', 'big', 'fan', 'costa', 'end', 'go', 'eat', 'one', 'outsid', 'offic'], ['absolut', 'boil', 'got', 'factor', 'must', 'not', 'turn', 'orang', 'must', 'not', 'look', 'like', 'oompa', 'lumpa', 'left', 'shoulder', 'burnt', 'yesterday'], ['oh', 'not', 'nice'], ['got', 'excit', 'thought', 'exhibit', 'sydney', 'not'], ['across', 'water', 'damn', 'expens'], ['whole', 'whole', 'addict', 'talk', 'brother', 'broke', 'could', 'not', 'help', 'cri'], ['got', 'bulli', 'dillah', 'help'], ['not', 'studyy', 'exam', 'tom'], ['damjust', 'finish', 'watch', 'prison', 'break', 'final', 'not', 'think', 'cri', 'hard', 'understand', 'final'], ['dam', 'finish', 'watch', 'prison', 'break', 'final', 'not', 'think', 'cri', 'hard', 'understand', 'final'], ['not', 'go', 'oxford', 'internet', 'institut', 'summer', 'doctor', 'programm', 'brisban', 'lack', 'fund'], ['still', 'wait'], ['someon', 'told', 'thing', 'would', 'get', 'would', 'never', 'done'], ['want', 'see', 'friend', 'mindless', 'fun', 'work', 'play', 'drunk', 'walwal', 'mean', 'sleep', 'one', 'bed'], ['fail', 'math', 'exam', 'today', 'fxxmylif'], ['afaik', 'littl', 'sad', 'crocco', 'longer', 'avail', 'salsa', 'wed', 'night', 'bummer', 'ienjoy', 'go', 'wed', 'night'], ['know', 'wrong', 'mayb', 'not', 'fuckin', 'thing', 'like'], ['cross', 'countri', 'feet', 'hurt'], ['bacon', 'fail', 'end', 'commiser', 'muffin'], ['hard', 'copi', 'doc', 'review', 'write', 'comment', 'realiz', 'forgotten', 'write', 'paper', 'hard', 'recogn', 'read', 'back'], ['quot', 'sometim', 'around', 'midnight', 'quot', 'airborn', 'toxic', 'event', 'liter', 'not', 'escap', 'fml'], ['strand', 'delhi', 'airport', 'flight', 'delay'], ['sink', 'feel', 'go', 'ts', 'comedown'], ['goin', 'eat', 'smack', 'breakfast', 'get', 'start', 'catch', 'ya', 'realli', 'wish', 'cud', 'go', 'bahrain'], ['sick', 'sick', 'sick', 'suck', 'not', 'even', 'breath', 'proper'], ['aa', 'need', 'work', 'today', 'not', 'ever', 'get', 'weekend', 'make', 'want', 'cri'], ['thank', 'need', 'pass', 'test', 'first'], ['horribl', 'purpos', 'write', 'bunni', 'mean', 'amp', 'cruel', 'not', 'mention', 'plain', 'tacki'], ['sorri', 'bout', 'bloodi', 'typic', 'goin', 'laydown', 'feel', 'sick', 'oo', 'not', 'nice', 'x'], ['get', 'readi', 'skill', 'not', 'wait', 'fail', 'bio', 'final', 'yay', 'ugh', 'honor', 'class', 'suckk'], ['oh', 'woke', 'accident', 'get', 'fall', 'asleep', 'scare', 'stori', 'jk'], ['thank', 'tri', 'done', 'good', 'not', 'fathom', 'take', 'appl', 'store', 'sigh'], ['sick', 'sad', 'cold'], ['finish', 'work', 'nd', 'wait', 'freez', 'cold', 'drink', 'mango', 'magic', 'haha', 'fail', 'mama', 'where', 'yu', 'cold'], ['sick', 'constant', 'bad', 'dream', 'grr'], ['count', 'lucki', 'go', 'say', 'word', 'not', 'come'], ['feel', 'like', 'bad', 'flu', 'yes', 'bad', 'flu'], ['ohh', 'bit', 'time', 'left', 'account', 'forum', 'hope', 'get', 'leader', 'day'], ['wish', 'could', 'commenc', 'yr', 'wonder', 'realli', 'go', 'protest'], ['would', 'join', 'shop', 'work', 'weekend', 'six', 'degre', 'seper', 'confsu'], ['limit', 'abl', 'sync', 'ms', 'exchang', 'account', 'iphon', 'goe', 'outlook', 'not', 'lame'], ['probabl', 'not', 'think', 'anyth', 'els', 'unfortun', 'not', 'singtel', 'custom'], ['tire', 'hear', 'stori', 'everybodi', 'go', 'ibiza'], ['love', 'life', 'guess', 'defin', 'shoot', 'good'], ['aagh', 'aircon', 'not', 'work', 'offic'], ['mac', 'hard', 'drive', 'crash', 'brought', 'powermac', 'could', 'not', 'recov', 'file', 'back'], ['alway', 'one', 'time', 'alway', 'late', 'want', 'sleep', 'miss', 'mere'], ['wide', 'awak', 'grouchi', 'fuck'], ['miss', 'justin', 'timberlak', 'voic', 'want', 'make', 'new', 'album'], ['realli', 'wish', 'could', 'see', 'dave', 'miss', 'alreadi'], ['hot'], ['sorri', 'not', 'get', 'chanc', 'chat', 'caught', 'glimps', 'across', 'room', 'drag', 'home', 'prematur'], ['shut', 'comput', 'get', 'readi', 'go', 'home', 'bummer'], ['get', 'stress', 'sorti', 'tomorrow', 'like', 'realli', 'realli', 'stress'], ['agre', 'not', 'worth', 'block', 'amp', 'let', 'twitter', 'polic', 'know', 'harrass'], ['sad', 'brother', 'told', 'skatepark', 'live', 'bummer'], ['miss', 'show'], ['home', 'alon', 'one', 'left', 'gummi', 'bear'], ['feel', 'guiliti', 'sorri'], ['well', 'us', 'brit', 'wait', 'day', 'thought', 'go', 'realiz', 'guess', 'worth', 'wait'], ['tomorrow', 'last', 'day', 'work', 'sad', 'bye', 'ang'], ['uhh', 'wish', 'someon', 'would', 'includ', 'follow', 'friday', 'would', 'great', 'get', 'follow'], ['sympathis'], ['wish', 'not', 'spend', 'money', 'last', 'night'], ['miss', 'home', 'away', 'noo'], ['babi', 'alex', 'miss', 'ili', 'lt', 'good', 'night', 'lt'], ['miss', 'jay', 'leno'], ['not', 'sleep'], ['not', 'understand', 'whole', 'follow', 'friday', 'thing'], ['not', 'twitt', 'yesterday', 'busi', 'day', 'back', 'tomorrow', 'way', 'not', 'sleep', 'like', 'zombi', 'mode'], ['think', 'studi', 'realli', 'start', 'take', 'toll'], ['oh', 'say', 'not'], ['work', 'got', 'till', 'enna', 'kodumai', 'sir', 'idhu'], ['earli'], ['uk', 'phone', 'servic', 'oh', 'yea', 'still', 'sick', 'cough', 'sniff'], ['awh', 'not', 'good', 'get', 'better', 'soon'], ['nope', 'not', 'realli', 'sweatshirt', 'oh', 'realli', 'realli', 'awesom', 'doughnut', 'haha'], ['sigh'], ['got', 'tsk', 'tsk', 'tsk', 'shame', 'haha', 'feel', 'better', 'bro'], ['live', 'ignor'], ['put', 'makeup', 'flouresc', 'oh', 'must', 'look', 'hideous', 'also', 'lipstick'], ['get', 'realli', 'guilti'], ['dammit', 'one', 'tweet', 'septemb', 'noodl', 'also', 'taken'], ['not', 'made', 'work', 'could', 'not', 'get', 'feelin', 'blurgh'], ['start', 'love', 'morn', 'look', 'like', 'go', 'chuck'], ['exam', 'worst', 'mahn', 'go'], ['tri', 'draw', 'new', 'websit', 'bad', 'idea'], ['friend', 'roman', 'countri', 'men', 'lol', 'peopl', 'need', 'help', 'say', 'twitter', 'not', 'friend', 'loner', 'loner', 'la', 'da', 'da'], ['biggest', 'headach'], ['ok', 'cristal', 'go', 'tweet', 'talk', 'not', 'follow', 'ya'], ['want', 'feel', 'better'], ['not', 'got', 'poke', 'much'], ['yup', 'lol', 'sweet', 'year', 'haha'], ['haha', 'mayb', 'tri', 'insomnia', 'kickin', 'butt'], ['awe', 'got', 'go', 'mom', 'command', 'sleep', 'alreadi'], ['hulu', 'desktop', 'look', 'nice', 'not', 'region'], ['got', 'refus', 'bottl', 'morgan', 'tesco', 'despit', 'say', 'helen', 'could', 'verifi', 'age', 'shock', 'left', 'shop', 'x'], ['depress', 'day', 'today', 'pack', 'leav', 'ridicul', 'earli', 'tomoro'], ['home', 'not', 'well', 'hate', 'not', 'workin'], ['good', 'morn', 'tweep', 'busi', 'not', 'work', 'way'], ['aww', 'lost', 'follow', 'follow'], ['bore', 'account', 'stuff'], ['appar', 'even', 'novel', 'moonlight', 'not', 'work', 'jaunti'], ['sms', 'manag', 'crash', 'phone'], ['yup', 'work', 'could', 'not', 'recov', 'anyth', 'though'], ['well', 'us', 'brit', 'wait', 'day', 'thought', 'go', 'releas', 'guess', 'worth', 'wait'], ['roommat', 'ssnore', 'throat', 'dri'], ['not', 'want', 'go'], ['zombi', 'wrangler', 'sound', 'like', 'fun', 'not', 'halo', 'war'], ['ahh', 'confus', 'not', 'want', 'run', 'away', 'realli', 'handl', 'real', 'relationship', 'love', 'anyway', 'fals', 'hope'], ['never', 'sleep', 'last', 'night', 'feel', 'horribl', 'today', 'time', 'call', 'work', 'think'], ['awh', 'forgot', 'pox', 'hope', 'get', 'better', 'soon'], ['ugh', 'warm', 'outsid', 'unfair', 'want', 'go', 'read', 'pack'], ['still', 'gut', 'man', 'utd', 'lost'], ['bad', 'day'], ['feel', 'stress', 'strung', 'awak', 'mind', 'buzz', 'mrs', 'not', 'talk'], ['consol', 'abandon', 'back', 'garden', 'thank', 'laptop', 'screen'], ['omg', 'want', 'everybodi', 'steam', 'friend', 'list', 'play'], ['feel', 'pain', 'hayfev', 'forgot', 'take', 'mine', 'yesterday'], ['whole', 'time', 'ton', 'thing', 'would', 'believ', 'would', 'not', 'listen', 'let', 'prove', 'blve'], ['wish', 'could', 'still', 'drink', 'two', 'bad', 'night', 'white', 'wine', 'london', 'sick', 'almost', 'week'], ['stupid', 'accident', 'gave', 'honey', 'atom', 'flavor', 'buffalo', 'wing', 'stomach', 'feel', 'aw', 'sorri', 'babi'], ['job', 'interview', 'today', 'realli', 'go', 'mess', 'uup'], ['heaven', 'not', 'good', 'empathis', 'finger', 'cross', 'not', 'come', 'anyth', 'sleep', 'easi', 'wish', 'best'], ['need', 'peopl', 'talk', 'pleas', 'bore', 'x', 'follow'], ['still', 'soo', 'readi', 'get'], ['time', 'like', 'miss', 'manila', 'not', 'feel', 'late'], ['ac', 'fan', 'not', 'swing', 'way', 'sweat', 'hot', 'humid', 'day'], ['someth', 'wrong', 'internet', 'chelmsford', 'tv', 'demad', 'not', 'work', 'right', 'internet', 'super', 'slow'], ['anyon', 'awak', 'oh', 'god', 'die', 'want', 'go', 'sleep'], ['home', 'sweet', 'home', 'think', 'huaa'], ['pretti', 'sure', 'laptop', 'die', 'hp', 'wireless', 'problem', 'constant', 'ton', 'heat', 'not', 'start', 'fri', 'circuit'], ['oh', 'man', 'sick', 'night', 'feel', 'aw'], ['total', 'knacker', 'back', 'meet'], ['sorri', 'bit', 'negat'], ['not', 'view', 'anyth', 'gerald', 'not', 'ban', 'not', 'even', 'read', 'damn', 'place'], ['not', 'mood', 'long', 'car', 'drive'], ['wish', 'wembley'], ['feel', 'sound', 'like', 'kiya', 'last', 'night', 'say', 'get', 'comfi', 'couch', 'enjoy', 'cuddl'], ['head', 'spin', 'math', 'start', 'dream', 'formula', 'not', 'good'], ['get', 'cat', 'killin', 'rabbit', 'anoth', 'headless', 'babi', 'rabbit', 'n', 'garden', 'dis', 'morn', 'live', 'close', 'wher', 'lot', 'rabbit', 'live'], ['hungri', 'alreadi', 'not', 'impress', 'everybodi', 'gone', 'rubi'], ['duh', 'typo', 'error', 'part', 'social', 'network', 'not', 'even', 'room', 'peopl'], ['final', 'delet', 'number', 'phone', 'contact', 'heartbreak'], ['tweet', 'good', 'morn', 'twitterland', 'go', 'work', 'need', 'keep', 'pack', 'clean', 'flat', 'move', 'minus', 'one', 'day'], ['upset', 'mom', 'hospit'], ['stuck', 'stupid', 'jeuno', 'flag', 'wish', 'windi', 'fish'], ['mortifi', 'could', 'lose', 'job'], ['ohh', 'upset', 'sorri', 'wast', 'time', 'xx'], ['afraid', 'bit', 'fail', 'last', 'two', 'recommend', 'not', 'avail', 'uk'], ['omg', 'beckki', 'love', 'rootin', 'thing', 'go'], ['someon', 'pleas', 'tighten', 'bolt', 'brain', 'mani', 'part', 'loos', 'might', 'even', 'miss'], ['ahh', 'yes', 'oblig', 'vampir', 'kept', 'away', 'back', 'amp', 'tri', 'updat', 'much', 'lost', 'donor'], ['bahh', 'cold', 'weather', 'make', 'teeth', 'hurt'], ['ooh', 'headach', 'got', 'go', 'work'], ['total', 'confus', 'bore', 'life', 'must', 'chang'], ['bore', 'rc', 'goin', 'mainten'], ['morn', 'forgot', 'daili', 'booth', 'yesterday', 'shock', 'want', 'sit', 'garden', 'today', 'read', 'huge', 'bee', 'nest'], ['ugh', 'say', 'friend', 'might', 'swine', 'flu', 'omg'], ['home', 'not', 'think', 'wake', 'set', 'alarm', 'kid', 'room', 'amp', 'forgot', 'turn', 'feel', 'bad'], ['wish', 'could', 'sleep', 'past', 'four', 'night', 'good', 'morn'], ['yay', 'cheerlead', 'sick', 'go', 'fun', 'night', 'peopl'], ['get', 'frustrat', 'peopl', 'not', 'know', 'want', 'not', 'wait', 'go', 'home', 'tonight'], ['hair', 'cut', 'look', 'like', 'shit'], ['ben', 'dream', 'make', 'sadd', 'want', 'togetherr', 'swear', 'shit', 'get', 'bawlingg', 'help'], ['know', 'exact', 'mean', 'lost', 'mani', 'friend', 'feel'], ['lindo', 'absolut', 'rule', 'post', 'pictur', 'somewher', 'time', 'back', 'work', 'today'], ['realli', 'wish', 'could', 'gone', 'weekend'], ['gosh', 'hate', 'school', 'start', 'monday', 'class', 'start', 'end', 'never', 'chanc'], ['terribl', 'troubl', 'word', 'child', 'would', 'drop', 'pider', 'pade', 'etc', 'need', 'lesson', 'bad', 'memori'], ['yay', 'dad', 'agre', 'pay', 'tuition', 'equip', 'yipe', 'not', 'till', 'nxt', 'jan', 'though'], ['wish', 'home', 'time', 'jonaswebcast', 'today'], ['got', 'back', 'embassi', 'miss', 'one', 'paper', 'go', 'monday', 'good', 'luck'], ['cut', 'hair', 'day', 'wish', 'outsid'], ['sorri', 'lack', 'tweet', 'buzi', 'new', 'vid', 'saturday'], ['good', 'person', 'idol', 'soo', 'good', 'peopl', 'deserv', 'sum', 'good', 'weather', 'ova', 'der', 'london', 'cold'], ['not', 'like', 'funer'], ['endur', 'get', 'prize', 'lucki', 'winner'], ['arg', 'eirtaku', 'got', 'hit', 'stupid', 'bot', 'much', 'porn', 'kid', 'friend', 'site'], ['miss', 'wacom', 'especi', 'mous', 'laptop', 'touch', 'pad', 'horribl'], ['yeah', 'much', 'prefer', 'tweetdeck', 'must', 'multipl', 'account'], ['final', 'go', 'tri', 'fall', 'asleep', 'goodnight', 'like', 'morn', 'sleep'], ['twitter', 'second', 'day', 'run', 'studi', 'leav', 'car', 'one', 'piec'], ['not', 'help', 'feel', 'today', 'massiv', 'michael', 'jackson', 'rumour', 'day', 'cue', 'mj', 'hater'], ['day', 'goe', 'think', 'go', 'write', 'song', 'still', 'think', 'imposs', 'get', 'true', 'friend'], ['noo', 'not', 'know', 'click', 'not', 'run', 'sad'], ['miss', 'much', 'wish', 'enough', 'money'], ['fyi', 'conni', 'carla', 'not', 'total', 'awesom', 'preview', 'make', 'seem', 'sorri', 'one'], ['evil', 'mean', 'peopl', 'hurt', 'terribl', 'phobia', 'dentist', 'toothach', 'hell', 'week'], ['unfortun', 'not', 'yet', 'still', 'without', 'licenc'], ['horribl', 'dream'], ['busi', 'wowsa', 'okay', 'pizza', 'go', 'sorri'], ['food', 'sinc', 'woke'], ['bed', 'sick', 'sick', 'sinc', 'yesterday', 'hru', 'hun'], ['suspect', 'fault'], ['read', 'messag', 'stephani', 'miss', 'home'], ['mozzer', 'cancel', 'tonight', 'look'], ['asleep', 'brother', 'woke', 'ask', 'ate', 'rest', 'frost', 'mini', 'wheat', 'not', 'go', 'back', 'sleep'], ['school', 'wish', 'would', 'end', 'alreadi'], ['month', 'bad', 'month', 'tri', 'get', 'advert', 'togeth', 'kobold', 'quarter'], ['dad', 'not', 'feel', 'well', 'want', 'make', 'soup', 'suggest', 'guy', 'get', 'well', 'soon', 'ayah'], ['tonight', 'bad', 'night'], ['much', 'homework', 'today'], ['email', 'get', 'peopl', 'want', 'not', 'site', 'shame', 'trouser'], ['alright', 'joke', 'said', 'wine', 'fool', 'mayb', 'like', 'drink'], ['ugh', 'rude'], ['woke', 'teeth', 'realli', 'hurt', 'rubber', 'band'], ['burnt', 'fuck', 'hand', 'today'], ['blog', 'yet', 'miss', 'write'], ['salari', 'actual', 'spend', 'money', 'hooray', 'time', 'go', 'shop', 'dinner', 'ahora', 'say', 'goodby'], ['dangit', 'got', 'kiss', 'album', 'wrong', 'color'], ['lose', 'makeup', 'bag', 'keep', 'differ', 'place', 'got', 'replac', 'bare', 'escentu', 'tearr'], ['would', 'easi', 'user', 'manual', 'not', 'enough', 'claim', 'bike'], ['rip', 'robin', 'washington', 'park', 'librari'], ['guess', 'not', 'interest'], ['kno', 'guilti', 'pleasur', 'like', 'shop'], ['woke', 'aspir', 'stomach', 'acid', 'pray', 'not', 'acid', 'reflux', 'one', 'time', 'thing'], ['school', 'go', 'absolut', 'horribl', 'today', 'peac'], ['baah', 'mega', 'cockroach', 'kitchen', 'one', 'kill', 'heelp', 'haha', 'retard', 'cat', 'help'], ['careless'], ['ack', 'read', 'show', 'horribl', 'account', 'tast'], ['work', 'today', 'went', 'shop', 'relax', 'amp', 'learn', 'toefl'], ['puppi', 'sick', 'one', 'put', 'hand', 'momma', 'gt'], ['not', 'feel', 'weekend', 'fever', 'anymor', 'everyday', 'day'], ['puppi', 'kill', 'cat', 'lastnight', 'thought', 'stuf', 'anim', 'rip', 'meani'], ['bodi', 'decid', 'good', 'time', 'wake', 'everi', 'morn', 'mayb', 'dean', 'wait', 'dream'], ['jus', 'listen', 'okay', 'nice', 'lik', 'thinkin', 'thoma', 'throughout', 'e', 'whole', 'song', 'love', 'ya'], ['still', 'fight', 'cold', 'ugh'], ['mad', 'tire', 'hol', 'miss', 'chomp', 'chomp', 'terribl'], ['today', 'go', 'ah', 'give', 'notic', 'boss', 'today', 'go', 'upset', 'total', 'stress'], ['tummi'], ['weird', 'sudden', 'blogtalkradio', 'give', 'domain', 'not', 'found', 'error', 'minut', 'ago'], ['long', 'list', 'littl', 'desir'], ['heater', 'blew'], ['sorri', 'let'], ['sever', 'hour', 'final', 'site', 'back', 'onlin', 'silli', 'dns', 'set', 'mistak'], ['today', 'not', 'start', 'well'], ['work', 'still', 'sick'], ['forget', 'much', 'miss', 'tribe', 'til', 'limit', 'access', 'talk', 'spotti', 'internet', 'countri', 'not', 'long'], ['serious', 'screw', 'not', 'studi'], ['not', 'buy', 'nokia', 'amazon', 'say', 'quot', 'not', 'ship', 'quot'], ['oh', 'shit', 'forgot', 'eat', 'grumbl', 'grumbl'], ['tri', 'wake', 'find', 'hard'], ['poor', 'get', 'outsid', 'sleep', 'garden', 'sun', 'good', 'not', 'forget', 'suncream'], ['not', 'hulu', 'germani', 'suck'], ['not', 'think', 'way', 'express', 'char', 'disspoint', 'advertis', 'lifehack', 'not', 'buy', 'mac', 'articl'], ['sold', 'hit', 'cash', 'took', 'tax', 'tip', 'drawer', 'end', 'dollar', 'short', 'not', 'know'], ['environment', 'studi', 'drive', 'mental'], ['hahaha', 'thank', 'clear'], ['good', 'morn', 'sunshin', 'sleepytown', 'sleepi'], ['also', 'ride', 'giant', 'knew', 'ama', 'hafta', 'go', 'tri', 'get', 'later', 'love', 'xx'], ['found', 'not', 'know', 'uni', 'result', 'year', 'juli', 'earliest', 'hate', 'wait'], ['oh', 'good', 'want', 'watch', 'movi', 'noobodi', 'would', 'watch'], ['wish', 'go', 'pxi', 'summer', 'jam', 'never', 'seem', 'win'], ['aww', 'sad', 'not', 'get', 'go', 'go', 'away', 'parti', 'stupid', 'work'], ['miss', 'guy', 'morn', 'tacoma', 'kgw', 'start', 'day'], ['not', 'hit', 'right', 'button', 'wrote', 'sheat', 'though', 'thought', 'cafe', 'currenc', 'button', 'sorri'], ['aah', 'stop', 'get', 'updat', 'home', 'page', 'guna', 'work', 'tswift'], ['starv', 'amp', 'chem', 'quiz', 'due', 'noon'], ['happi', 'happi', 'rain'], ['swear', 'took', 'hour', 'get', 'bel', 'air', 'alabang', 'yes', 'love', 'reminisc', 'hk', 'trip', 'amp'], ['go', 'last', 'theater', 'lunch', 'go', 'cri'], ['told', 'coupl', 'week', 'ago', 'not', 'find', 'guy', 'hot', 'apart', 'one'], ['friday', 'sun', 'shine', 'quit', 'warm', 'alreadi', 'walk', 'dog', 'freaki', 'hyper'], ['comput', 'pleas', 'stop', 'loud', 'work'], ['last', 'night', 'paper', 'write', 'not', 'done', 'need', 'priorit', 'better'], ['need', 'mug', 'chines', 'not', 'feel', 'like'], ['think', 'much', 'miss'], ['sad', 'actual', 'googl', 'term', 'suck', 'though'], ['soo', 'wish', 'could', 'school', 'myspac', 'complet', 'block'], ['fail', 'fanci', 'pit', 'stop', 'cuppa', 'know', 'lol'], ['sick', 'life', 'never', 'go', 'good', 'want', 'need', 'xoxoxo', 'lt'], ['start', 'long', 'friday'], ['goodmor', 'not', 'want', 'yat', 'happi', 'birthday'], ['wow', 'tomorrow', 'never', 'see', 'peopl', 'kind', 'sad'], ['hes', 'back', 'oh', 'noe', 'miss', 'work', 'insan', 'band', 'realli', 'taken', 'not', 'moment'], ['tv', 'bust', 'screen', 'turn', 'white', 'nanosecond', 'made', 'quick', 'quot', 'pop', 'quot', 'sound'], ['fat', 'sad', 'puffyn'], ['enjoy', 'explor', 'phone', 'grr', 'awesom', 'want', 'samsung', 'omnia'], ['lone', 'gosforth', 'galleri', 'excit', 'meal', 'six', 'follow', 'antoni', 'johnson', 'tonight', 'woohoo'], ['sore', 'throat', 'not', 'good', 'four', 'perform', 'weekend'], ['sorri', 'sad'], ['oh', 'hell', 'forgot', 'cider', 'monday', 'dinner', 'mpp', 'teetotal', 'must', 'drive', 'waupoo', 'case', 'wine', 'car'], ['sad', 'sit', 'insid', 'mobil', 'signal', 'not', 'work', 'garden', 'open', 'wine', 'bang', 'though'], ['suffer', 'benadryl', 'hangov', 'morn', 'killer', 'headach', 'ugh'], ['garden', 'go', 'well', 'almost', 'corn', 'pea', 'onion', 'beet', 'yet', 'though'], ['good', 'morn', 'twitt', 'anoth', 'gloomi', 'day', 'nyc'], ['aww', 'go', 'class', 'day', 'go', 'weird', 'half', 'day', 'thing', 'want', 'see'], ['aww', 'hate', 'one'], ['hahahahhahaha', 'true', 'could', 'realli', 'stretch', 'stuff', 'shame', 'rem', 'dog', 'got', 'mad', 'tri', 'put', 'avi', 'face'], ['not', 'help'], ['slowest', 'websit'], ['live', 'philippin', 'gt', 'lt', 'honest', 'want', 'live', 'somewher', 'snow'], ['headach', 'alreadi', 'boo'], ['wonder', 'rake', 'client', 'made', 'clear', 'not', 'forc', 'dev', 'learn', 'new', 'lang', 'agil', 'ccnet'], ['sorri', 'paul', 'scheur', 'prison', 'break', 'seri', 'final', 'suck', 'mani', 'level'], ['bore'], ['shame'], ['oop', 'spent', 'much', 'alreadi', 'lol', 'quid', 'gone'], ['sick', 'past', 'day', 'thus', 'hair', 'look', 'wierd', 'not', 'hat', 'would', 'look'], ['recess', 'hit', 'veroniqu', 'branquinho', 'quit', 'compani', 'shame'], ['sad', 'emma', 'sad', 'leav', 'show', 'xx'], ['ugh', 'damn', 'usual', 'babysitt', 'graduat', 'wednesday', 'got', 'meet', 'request', 'boss', 'graduat'], ['forgot', 'set', 'alarm', 'ride', 'hope', 'get', 'easi', 'mile', 'work', 'tomorrow', 'racin', 'gap'], ['real', 'boy', 'goddamit', 'guh', 'apostro', 'feel', 'sad', 'librari', 'ladi', 'think', 'stupid', 'stupid', 'j'], ['think', 'final', 'thought', 'kind', 'cheap', 'way'], ['know', 'joke', 'good', 'fun', 'peopl', 'get', 'humor', 'amp', 'not'], ['poss', 'miss'], ['saddest', 'right', 'lost', 'mobil', 'phone', 'earphon', 'waz', 'feel', 'littl', 'incomplet', 'feel'], ['let', 'us', 'know', 'happen', 'poor', 'littl', 'guy'], ['not', 'workin', 'hour', 'id', 'gettin', 'ratars', 'point', 'could', 'not', 'even', 'see', 'let', 'alon', 'stand', 'shit', 'feel'], ['soo', 'jealous', 'right'], ['well', 'not', 'normal', 'not', 'drive', 'mexico', 'dairi', 'queen'], ['feel', 'today', 'way', 'stress'], ['sore', 'throat', 'suck'], ['school', 'pointless', 'serious', 'though', 'day', 'school', 'left', 'watch', 'movi', 'make', 'powerpoint', 'let', 'leave'], ['quot', 'give', 'not', 'care', 'mess', 'life', 'quot'], ['physic', 'bore', 'class', 'ever'], ['reli', 'mobil', 'lack', 'recept', 'tri', 'help', 'look', 'silli'], ['not', 'get', 'along'], ['suck', 'man'], ['grew', 'fat', 'today', 'gss', 'hxc', 'saw', 'full', 'hous', 'chanel', 'jc', 'pedder', 'red', 'ferragamo', 'great', 'econom', 'downturn'], ['hunk', 'ah', 'hunk', 'burn', 'love', 'believ', 'camera', 'phone', 'stuf', 'stupid', 'blurry'], ['not', 'go', 'sorri', 'disappoint'], ['oh', 'sweeti', 'sorri', 'last', 'thing', 'need', 'right', 'hug'], ['bf', 'move', 'citi', 'tomorrow', 'current', 'live', 'sad', 'far', 'away', 'not', 'far', 'not', 'street'], ['got', 'go', 'go', 'circus', 'real', 'circus', 'not', 'britney', 'tour', 'sad'], ['kev', 'fuck', 'stuck', 'westgat', 'work'], ['cut', 'thumb', 'broken', 'coffe', 'pot'], ['ac', 'tix', 'actual', 'show', 'sold', 'would', 'get', 'tix', 'stubhub', 'pay'], ['oh', 'ew', 'bad', 'not', 'use', 'certain', 'lip', 'gloss', 'long', 'time', 'tri', 'wear', 'liter', 'make', 'lip', 'burn'], ['generat', 'fuck', 'apathet', 'parti', 'desert', 'know', 'fun', 'age', 'group', 'generat', 'myspac'], ['not', 'want', 'go', 'work', 'tonight'], ['ahh', 'woke', 'forgot', 'reset', 'alarm', 'clock'], ['yeha', 'broke', 'page', 'damit', 'tri', 'fix', 'hope', 'not', 'bank', 'communityfirstandtrust'], ['thought', 'thing', 'could', 'not', 'get', 'wors', 'get', 'even', 'wors', 'tonight', 'bet', 'life', 'miseri'], ['good', 'laptop', 'use', 'extern', 'internet', 'plug', 'need', 'send', 'away', 'fix'], ['home', 'marco', 'island', 'miss', 'girl', 'work'], ['got', 'back', 'home', 'disappoint', 'report', 'card'], ['fight', 'nagio', 'configur', 'great', 'tool', 'config', 'bit', 'labour'], ['sigh', 'well', 'accident', 'click', 'back', 'space', 'mous'], ['kitten', 'cute', 'grow', 'n', 'becom', 'cat'], ['told', 'verizon', 'not', 'send', 'anyon', 'show', 'got', 'deal', 'bullshit', 'not', 'know', 'long', 'offlin'], ['foot', 'hurt', 'minut', 'took', 'though'], ['oh', 'adult', 'school'], ['sorri', 'hear', 'flight', 'got', 'cancel', 'blow'], ['heyi', 'tweet', 'go', 'shout', 'list', 'alway', 'amaz'], ['tri', 'regist', 'websit', 'go', 'get', 'error', 'browser', 'firefox', 'chrome', 'ie', 'safari'], ['saw', 'link', 'get', 'error', 'cnn', 'site', 'open', 'page', 'not', 'read', 'articl'], ['guess', 'freaki', 'follow'], ['nah', 'not', 'finish', 'til', 'next', 'yearr', 'stayin', 'bad', 'news', 'graduat'], ['parent', 'decid', 'drop', 'whole', 'famili', 'hous', 'work'], ['go', 'work', 'could', 'use', 'happi', 'pill'], ['sad', 'not', 'bit', 'disappoint', 'tri', 'later', 'see', 'chang', 'mind'], ['ya', 'prob', 'not', 'want'], ['chem', 'final', 'right', 'awwh', 'oli', 'go', 'miss'], ['anotha', 'day', 'work', 'not', 'lookin', 'forward', 'hate', 'closin', 'fri'], ['omega', 'tomorrow', 'not', 'realli', 'plan', 'anyth', 'make', 'sure', 'come', 'awesom', 'june'], ['hate', 'pack'], ['readi', 'busi', 'fun', 'day', 'tomorrow', 'got', 'keep', 'busi', 'lover', 'gone'], ['would', 'give', 'anyth', 'bad', 'tennesse'], ['serious', 'need', 'studi'], ['hot', 'day', 'make', 'tire'], ['seem', 'like', 'everyon', 'know', 'ask', 'comput', 'help', 'kill'], ['funer', 'today', 'go', 'bad'], ['tikcet', 'want', 'go'], ['go', 'chiro', 'see', 'wrong', 'bum', 'ankl'], ['r', 'damn', 'exam', 'ever', 'gone', 'b', 'done', 'want', 'b', 'sun'], ['rude'], ['still', 'jealous'], ['stomach', 'hurt', 'bad'], ['stop', 'babe', 'makin', 'feel', 'bad'], ['way', 'school', 'last', 'friday', 'high', 'school', 'ever', 'not', 'even', 'get', 'see', 'holli', 'gabbi', 'hannah'], ['tough', 'thick', 'chik'], ['suppos', 'best', 'get', 'readi', 'work', 'grr'], ['sick', 'kid', 'trump', 'advanc', 'plan', 'bummer'], ['disappoint', 'talent', 'lineup', 'quot', 'super', 'estrella', 'quot', 'feel', 'not', 'get', 'tix', 'time', 'around'], ['hella', 'itchi'], ['weekend', 'along', 'summer', 'feel', 'sad'], ['ef', 'tire'], ['sad', 'rat', 'becom', 'aggress', 'guinea', 'pig', 'seper'], ['hulu', 'desktop', 'window', 'media', 'center', 'not', 'extend', 'unfortun'], ['miss', 'one', 'crazi', 'parti', 'last', 'night'], ['knee', 'fuck', 'hurt', 'man', 'hayle', 'not', 'even', 'care', 'get'], ['make', 'sad', 'like', 'canada', 'never', 'watch', 'thing', 'move', 'know', 'anyon', 'need', 'roommat'], ['got', 'exam', 'percentag', 'not', 'look', 'good'], ['get', 'gd', 'news', 'god', 'sake'], ['geographi', 'revis', 'earthquak', 'bore'], ['still', 'unbeliev', 'shock', 'fire', 'best', 'radio', 'person', 'martin', 'streek'], ['burden', 'abit', 'fail', 'lunch', 'dan'], ['work', 'not', 'like', 'today', 'nasti', 'outsid', 'not', 'wait', 'get', 'home', 'today', 'clean', 'hous'], ['blog', 'not', 'let', 'post', 'comment'], ['shit', 'got', 'shit', 'hw'], ['right', 'fuck', 'whole', 'twitter', 'silenc', 'experi', 'last', 'four', 'day', 'murder', 'inabl', 'mouth'], ['arriv', 'itexa', 'lot', 'mail', 'read', 'work', 'thank', 'god', 'weekend'], ['bad', 'start', 'day'], ['would', 'look', 'forward', 'see', 'tonight', 'go'], ['sad'], ['excus', 'jkid', 'long', 'yr', 'fun', 'night', 'start', 'lol'], ['miss', 'boy'], ['depress', 'want', 'know', 'kiss'], ['think', 'go', 'fail', 'aswel'], ['watch', 'today', 'show', 'not', 'see', 'though'], ['shuut', 'stupid'], ['think', 'broke'], ['headach', 'nobodi', 'keep', 'compani', 'lt'], ['think', 'may', 'cri', 'sold', 'civic', 'longer', 'mine'], ['hate', 'not', 'sleep'], ['sad', 'not', 'colleagu', 'work', 'parti'], ['miss', 'water', 'cuz', 'well', 'went', 'dri'], ['start', 'feel', 'depress', 'hurrican', 'talk', 'front', 'line'], ['walk', 'school', 'two', 'welt', 'thigh'], ['wish', 'could', 'go', 'bea', 'weekend'], ['head', 'pound', 'well', 'not', 'realli', 'pound', 'like', 'tap', 'suppos', 'homework', 'time'], ['beauti', 'outsid', 'sun', 'shine', 'bird', 'sing', 'studi', 'wish', 'alreadi', 'vacat'], ['wish', 'move', 'san', 'diego', 'wa', 'depress', 'miss', 'sunni', 'san', 'diegoo'], ['dang', 'realiz', 'bad', 'eye', 'gotten'], ['becom', 'tough', 'race', 'linda', 'inde', 'talent', 'someon', 'go', 'everi', 'week', 'cut', 'two', 'week'], ['keep', 'tri', 'invit', 'think', 'afraid'], ['not', 'devo', 'hope', 'day', 'not', 'suck'], ['havnt', 'gotten', 'month', 'ex', 'seem', 'date', 'not', 'spark', 'anymor', 'still', 'love', 'loser', 'left'], ['back', 'home', 'great', 'time'], ['sun', 'shine', 'lt', 'sky', 'fack', 'blue', 'lt', 'teletubbi', 'fuck', 'work'], ['not', 'got', 'cupcak', 'yet', 'hope', 'said', 'enough', 'would', 'appear'], ['havin', 'much', 'better', 'day', 'today', 'finish', 'last', 'twilight', 'book', 'yesterday', 'class', 'start', 'next', 'week', 'get'], ['get', 'swing', 'thing', 'miss', 'someon'], ['yeah', 'plus', 'alway', 'total', 'overspend'], ['contempl', 'borrow', 'one', 'mom', 'dog', 'want', 'take', 'care', 'someon'], ['way', 'work', 'wish', 'day'], ['think', 'friend', 'life', 'go', 'around', 'boyfriend', 'not', 'time', 'us', 'girl'], ['sigh', 'miss', 'day'], ['new', 'issu', 'want', 'flick', 'much', 'wait'], ['strike', 'one', 'three'], ['actual', 'wish', 'back', 'taho', 'miss'], ['not', 'work', 'alreadi'], ['ryanseacrest', 'hi', 'might', 'problem', 'say', 'stream', 'onlin', 'wat', 'not', 'right'], ['thinkin', 'twitter', 'realli', 'quit', 'borin'], ['miss'], ['upset', 'left', 'phone', 'home'], ['thought', 'someth', 'loll'], ['otu', 'boot', 'camp', 'late', 'oh', 'well', 'may', 'la', 'day', 'anyway'], ['piss', 'fell', 'asleep', 'push', 'miss'], ['northern', 'clemenc', 'not', 'recommend', 'much', 'descript', 'not', 'enough', 'action', 'slow'], ['quot', 'offens', 'hair', 'bad', 'quot', 'life', 'not', 'worth', 'live', 'anymor', 'noth', 'hurt', 'quit', 'like', 'hair', 'insult', 'cri', 'pillow'], ['not', 'anyon', 'give', 'poor', 'erni', 'rey', 'jr', 'break'], ['well', 'disappoint', 'hear'], ['check', 'cieg', 'cagalawan', 'collect', 'regret', 'not', 'see', 'collect', 'tonight', 'got', 'invit'], ['sure', 'peopl', 'came', 'seen', 'dentist'], ['second'], ['celebr', 'sight', 'spongebob', 'lol', 'even', 'distraught', 'miss'], ['wonder', 'actual', 'week', 'fuk', 'bar', 'pack', 'peep', 'r', 'leavin'], ['definit', 'grass', 'cut', 'cole', 'commit', 'stack', 'wood', 'neighbor', 'well', 'past', 'day', 'set', 'back', 'far'], ['not', 'good', 'would', 'not', 'like', 'girl', 'flirt', 'colleagu', 'would'], ['upset', 'left', 'phone', 'home'], ['bore', 'home'], ['ask', 'mark', 'still', 'old', 'blink', 'sens', 'humor', 'miss'], ['pirat', 'voic', 'aarrgghh', 'damn', 'wallet', 'work', 'shermk', 'dammit', 'close', 'yet', 'far', 'starv'], ['go', 'thursday', 'terribl', 'idea', 'knew', 'reason', 'not', 'done', 'quarter', 'pop', 'advil'], ['hope', 'mom', 'okay'], ['think', 'may', 'look', 'littl', 'silli', 'also', 'camera', 'broken', 'photo'], ['like', 'old', 'rubi', 'best'], ['unfortun', 'usual', 'goe', 'answer', 'okay', 'thing', 'may', 'look', 'miss', 'talk'], ['could', 'not', 'get', 'money', 'mikey', 'time', 'trust', 'make', 'sad'], ['realli', 'not', 'bother', 'go', 'work', 'tonigh', 'nice', 'stuck', 'insid'], ['sweat', 'not', 'cute', 'unfortun', 'not', 'figur', 'work', 'without', 'sweat', 'boo'], ['start', 'rethink', 'quot', 'not', 'stand', 'cold', 'place', 'quot', 'heat', 'humid', 'unbear', 'amp', 'not', 'stand', 'ac', 'meltingaway'], ['not', 'want', 'though', 'wish', 'slept', 'heather', 'woke', 'got', 'work', 'later', 'first', 'read', 'twilight'], ['someth', 'total', 'eat', 'broc', 'cab', 'bean', 'insecticid', 'soap', 'not', 'get', 'rid', 'pest', 'not', 'want', 'chemic'], ['stuck', 'offic', 'red', 'hot'], ['field', 'day', 'sad', 'ribbon'], ['hope', 'not', 'get', 'let'], ['found', 'go', 'us', 'august', 'get', 'tire', 'transatlant', 'flight', 'not', 'good', 'carbon', 'footprint', 'either'], ['knoww', 'not', 'deal', 'life', 'not'], ['depress'], ['tres', 'depress'], ['amp', 'malwar', 'work', 'pc', 'miss', 'dept'], ['not', 'find', 'hope', 'not', 'get', 'eaten', 'anyth', 'last', 'jump', 'deck', 'not', 'stay', 'safe', 'sigh'], ['work', 'miser', 'day'], ['yay', 'giant', 'headach', 'stupid', 'glass'], ['wake', 'lazi', 'worri'], ['mass', 'exodus', 'work', 'half', 'three', 'make', 'sad'], ['oh', 'sorri', 'not', 'get', 'repli', 'noth', 'yes', 'know', 'nirvana'], ['sleep', 'still', 'mourn', 'adobo', 'cook'], ['realli', 'degre', 'high', 'way', 'work', 'hagg', 'lake', 'tomorrow', 'go', 'especi', 'bomb', 'sauc'], ['street', 'fighter', 'iv', 'skill', 'lack', 'not', 'beat', 'seth', 'easi'], ['home', 'pukey', 'boy', 'poor', 'littl', 'babi'], ['poor', 'pooch'], ['poor', 'ds', 'bed', 'fever', 'not', 'abl', 'walk', 'relay', 'life', 'tonight', 'feel', 'bad', 'sad'], ['get', 'bit', 'tick', 'time', 'eat', 'ton', 'garlic', 'summer', 'keep', 'mosquito', 'away', 'boo', 'gt'], ['burnt', 'collerbon', 'arm', 'face', 'aww'], ['still', 'sad', 'samantha'], ['bird', 'flew', 'window', 'parent', 'hous', 'snap', 'poor', 'neck', 'got', 'buri'], ['today', 'busi', 'day', 'exhaust'], ['gut', 'handbag', 'want', 'sold'], ['need', 'remodel', 'hous', 'thought', 'make', 'kind', 'ill', 'one', 'way', 'anouth', 'want', 'move'], ['woman', 'not', 'know', 'came', 'home', 'suck', 'go', 'back'], ['wat', 'wrong', 'boo'], ['suck'], ['well', 'even', 'wors', 'cuz', 'get', 'hurt', 'everyon', 'pain', 'poor', 'stephen', 'smush', 'twitter'], ['ugh', 'go', 'town', 'never', 'rest', 'want', 'go', 'tyler', 'know', 'get', 'back', 'exaust'], ['puppi', 'shall', 'loos', 'um', 'man', 'part', 'today', 'poor', 'guy'], ['steal', 'stuff', 'buri', 'fenc', 'embarass', 'man', 'return', 'not', 'much', 'frog'], ['greeat', 'summer', 'four', 'know', 'know'], ['today', 'friday', 'realli', 'hope', 'read', 'messag', 'repli', 'soon', 'could', 'not', 'reach', 'phone', 'go', 'work'], ['class', 'fuckin', 'school', 'time', 'work', 'wed', 'jade', 'come', 'get', 'antioch', 'amtrak'], ['fml', 'not', 'loos', 'anoth', 'friend'], ['sri', 'day', 'tweet', 'mia', 'twitter', 'network', 'glitch', 'stori', 'funer', 'wrong', 'remain', 'deliv', 'ea'], ['rubbish'], ['defin', 'hard', 'time', 'cuz', 'young', 'amp', 'never', 'saw', 'wrkd', 'hard', 'make', 'car', 'amp', 'disabl'], ['think', 'someth', 'wrong', 'video', 'load', 'first', 'second'], ['hill', 'gunna', 'differ', 'gl', 'design', 'etc'], ['tri', 'take', 'jail', 'sissi', 'appar', 'warrant', 'agg', 'town', 'yeah', 'shock', 'hell', 'outta', 'lmao', 'yeah', 'right'], ['happi', 'friday', 'realiz', 'left', 'cell', 'phone', 'home', 'today', 'though'], ['realli', 'fanci', 'bake', 'egg', 'spinach'], ['hahaha', 'well', 'would', 'smack', 'hahaha', 'big', 'bangg'], ['none', 'peopl', 'talk', 'class', 'go', 'bore', 'period'], ['total', 'unsurpris', 'dave', 'not', 'come', 'back', 'annalisa', 'wrong', 'opposit', 'big', 'warm', 'mellow', 'dave'], ['wish', 'would', 'ball', 'kid', 'not', 'know', 'illog', 'peopl', 'not', 'want', 'risk'], ['not', 'want', 'anymor'], ['toaster', 'oven', 'fault', 'go', 'look', 'like', 'idiot', 'front', 'father'], ['binstruct', 'suffer', 'updat', 'mib', 'packag', 'develop', 'packag', 'holiday'], ['nnaa', 'uhh', 'playah', 'shawti', 'not', 'got', 'nun', 'mayb', 'phone', 'mine', 'want', 'hit', 'left', 'studio'], ['nice', 'day', 'springfield', 'end', 'month', 'expens', 'report'], ['realli', 'tire', 'today'], ['not', 'enjoy', 'cold', 'rainini', 'boston', 'day', 'think', 'new', 'metal', 'back', 'not', 'like', 'get', 'wet'], ['hope', 'hear', 'someth', 'soon', 'krystl', 'surgeri'], ['way', 'home', 'night', 'london', 'love', 'work', 'weekend', 'monday', 'weather', 'nice', 'x'], ['work', 'home', 'ran', 'coffe'], ['shame', 'job', 'thought', 'work', 'big', 'money', 'paid'], ['not', 'feel', 'inspir', 'suppos', 'concert', 'tonight'], ['hope', 'mom', 'ok'], ['weather', 'aw', 'want', 'curl', 'read', 'book', 'day'], ['nat', 'go', 'miss', 'bad'], ['oh', 'cool', 'ok', 'head', 'laydown', 'put', 'ice', 'heep', 'swell', 'feel', 'realli', 'bad'], ['idiot', 'crash', 'bike', 'bike', 'small', 'dent', 'buy', 'new', 'set', 'pedal'], ['better', 'snicker', 'bar', 'hershey', 'use', 'b', 'addict', 'miss', 'lol'], ['guy', 'said', 'california', 'angri', 'tweet', 'perez', 'hilton', 'jonathan', 'upset', 'spell', 'california', 'wrong'], ['suck', 'print', 'sorri'], ['ditch', 'school', 'hate', 'take', 'huge', 'dump', 'hurt', 'real', 'bad'], ['watch', 'scrub', 'season', 'oh', 'go', 'miss', 'show'], ['pass', 'last', 'night', 'middl', 'quarter', 'not', 'wit', 'magic', 'lose'], ['teeth', 'check', 'eye', 'die', 'coffe', 'not', 'drink', 'hour'], ['not', 'happi', 'bunni'], ['tri', 'recov', 'photo', 'problem', 'window', 'xd', 'card', 'result', 'shot', 'half', 'visibl', 'damn', 'microsoft'], ['slave', 'away', 'work'], ['time', 'pack', 'work', 'not', 'much', 'time', 'twitter', 'thank', 'follow', 'friday', 'back', 'later'], ['la', 'want', 'sun', 'today', 'appar', 'la', 'not', 'cooper'], ['way', 'work', 'work', 'suck', 'big', 'time'], ['minstrel', 'might', 'grab', 'petrol', 'station', 'head', 'back', 'work', 'delici'], ['sigh', 'usb', 'die', 'afternoon', 'miss', 'not', 'even', 'chanc', 'parad', 'around', 'yet'], ['anyon', 'ever', 'heavi', 'feel', 'sad', 'heart', 'case', 'rite'], ['got', 'approxim', 'hour', 'sleep', 'last', 'love', 'life'], ['wish', 'not'], ['feel', 'like', 'not', 'go', 'make', 'year'], ['hate', 'histori', 'coursework', 'soo', 'much'], ['wish', 'would', 'sad'], ['modem', 'offlin', 'week', 'god', 'bless', 'network', 'tim', 'left', 'may', 'schedul', 'brutal'], ['watch', 'french', 'open', 'tenni', 'sad', 'see', 'venus', 'make', 'earli', 'exit', 'morn'], ['go', 'funer', 'today', 'friend', 'classmat', 'die', 'car', 'wreck', 'last', 'friday'], ['whenev', 'rain', 'hard', 'get', 'motiv'], ['sad', 'got', 'plan', 'cancl'], ['got', 'haircut', 'not', 'happi'], ['frustrat', 'stuck', 'home', 'without', 'transport', 'global', 'god', 'confer', 'ahh'], ['tgif', 'quot', 'short', 'quot', 'week', 'wayi', 'long'], ['wish', 'yesterday', 'friday'], ['worri', 'friend'], ['woke', 'earli', 'still', 'sick'], ['hot', 'done', 'late', 'spring', 'clean', 'settl', 'book', 'bare', 'read', 'left', 'glass', 'mum'], ['mail', 'server', 'reject', 'simpl', 'plain', 'repli', 'potenti', 'threat', 'not', 'good'], ['ok', 'lot', 'bore', 'thought', 'matt', 'lockdown', 'moolah'], ['alreadi', 'dress', 'set', 'today', 'let', 'real', 'fun', 'begin', 'light', 'camera', 'action'], ['yeah', 'back', 'work', 'get', 'not', 'bad'], ['late', 'actual', 'spell', 'bee', 'back', 'day', 'got', 'elimin', 'state', 'final', 'though'], ['note', 'self', 'never', 'ever', 'leav', 'macbook', 'pro', 'stupid', 'icurv', 'fell'], ['nice', 'insid'], ['cd', 'player', 'car', 'broken', 'much', 'listen', 'kidz', 'bop', 'happi', 'meal', 'cd'], ['good', 'morn', 'friday', 'start', 'work', 'week', 'laker', 'go', 'take', 'w', 'tonight', 'woohoo', 'go', 'laker'], ['bore', 'well', 'not', 'like', 'one', 'see', 'not', 'got', 'friend'], ['vacat', 'look', 'forward', 'next', 'one'], ['note', 'self', 'never', 'ever', 'leav', 'macbook', 'pro', 'stupid', 'icurv', 'fell'], ['feel', 'not', 'good'], ['last', 'day', 'senior', 'bye', 'bff'], ['scare', 'set', 'pw', 'bb', 'might', 'forget', 'amp', 'end', 'lose', 'data', 'yet', 'financi', 'info', 'catch'], ['readi', 'work'], ['saw', 'ur', 'chanc', 'els', 'would', 'name', 'think', 'b', 'miss', 'thank', 'god', 'youtub'], ['clever', 'headlin', 'sorri', 'salt', 'lake', 'citi'], ['quot', 'someth', 'must', 'wrong', 'found', 'juli', 'book', 'want'], ['jz', 'local', 'movi', 'titl', 'virgin', 'p', 'actual', 'feel', 'not', 'good', 'tire', 'n', 'dizzi'], ['may', 'email', 'tech', 'support', 'peopl', 'odd'], ['woke', 'laura', 'last', 'full', 'day', 'last', 'night', 'watch', 'embarrass', 'home', 'movi'], ['charley', 'hors', 'leg', 'night', 'fuck'], ['head', 'gym', 'group', 'guy', 'use', 'go', 'except', 'brandon', 'make', 'terribl', 'sad'], ['suck', 'stuck', 'offic', 'selfridg', 'look', 'forward'], ['hahaha', 'tempt', 'nevermind', 'la', 'quit', 'klutz', 'actual', 'fare', 'better', 'hp', 'cam', 'lol'], ['daughter', 'seper', 'anxieti', 'intens', 'kill', 'not', 'leav', 'sight', 'without', 'break', 'anxieti', 'attack'], ['go', 'meet', 'new', 'famili', 'babysit', 'wish', 'still', 'sleep'], ['hate', 'feel', 'like', 'need', 'break', 'away', 'everyon', 'soon', 'exam', 'defo', 'portsmouth', 'bit'], ['watch', 'spell', 'bee', 'contest', 'winner', 'kavya', 'shivshankar', 'impress', 'perform', 'not', 'even', 'hear', 'word'], ['ugh', 'miser', 'look', 'day', 'degre', 'summer', 'go'], ['spent', 'morn', 'watch', 'eddi', 'izzard', 'glorious', 'funni', 'realli', 'shud', 'hav', 'studi', 'thou'], ['ayi', 'okayi', 'nice', 'see', 'kanina', 'gt', 'like', 'hair', 'gt'], ['grr', 'not', 'even', 'practic', 'trumpet', 'vocal', 'gland', 'neck', 'hurt', 'much', 'guitar'], ['one', 'load', 'wash', 'put', 'away', 'anoth', 'load', 'amaz', 'hous', 'not', 'look', 'better', 'effort'], ['woke', 'sore', 'throat', 'work', 'tonight', 'grad', 'practic', 'morn', 'hang', 'famili', 'graduat', 'high', 'school'], ['omg', 'still', 'nake', 'xdd', 'omg', 'miss', 'muuch'], ['alreadi', 'hot', 'outsid', 'thank', 'good', 'car', 'amaz', 'cyalat', 'work'], ['pff', 'life', 'suck', 'sometim'], ['hurt', 'finger', 'work'], ['not', 'think', 'go', 'camp'], ['say', 'tom', 'hello', 'school', 'shit'], ['current', 'msla', 'not', 'cloud', 'sky', 'humid', 'go', 'get', 'today'], ['total', 'overstress', 'go', 'work', 'want', 'colleg', 'work', 'go', 'away', 'not', 'want', 'fail'], ['blue', 'news', 'love', 'tonight', 'dc'], ['pray', 'get', 'better', 'soon', 'sweet', 'one', 'sorri', 'still', 'not', 'well'], ['evil', 'credit', 'card', 'compani', 'god', 'start', 'build', 'credit', 'get', 'stupid'], ['aht', 'stress', 'suppos', 'friday', 'make', 'want', 'cri'], ['gahh', 'weather', 'suckss'], ['sunburn', 'peel'], ['soo', 'hot', 'put', 'ton', 'sunblock', 'jog', 'still', 'think', 'face', 'burnt', 'though'], ['got', 'headach', 'hard', 'work', 'today', 'still', 'not', 'readi', 'heineken', 'tri', 'finish'], ['fun', 'tomorrow', 'night', 'think', 'fun', 'bar', 'art', 'galleri', 'wish', 'could'], ['know', 'say', 'alway', 'point', 'knife', 'away', 'learn', 'lesson', 'one', 'straight', 'finger'], ['think', 'cheap', 'sunglass', 'fall', 'apart', 'oh', 'well'], ['urgh', 'realli', 'hate', 'medicin'], ['want', 'somebodi', 'cheer'], ['get', 'bore', 'walk', 'stair'], ['get', 'ton', 'spam', 'mail', 'inbox', 'drive', 'insan'], ['morrissey', 'cancel'], ['go', 'fail', 'test', 'miser', 'histori'], ['back', 'realiti', 'boo'], ['realli', 'nervous', 'anim', 'right', 'present', 'next', 'period'], ['asylm', 'yay', 'regist', 'lost', 'friend'], ['still', 'sick', 'home'], ['likewis', 'not', 'know', 'anyon', 'use', 'gtalk', 'like', 'not', 'hold', 'much', 'hope'], ['unfortun', 'not', 'leav', 'hous', 'time'], ['tri', 'dm', 'not', 'follow', 'us'], ['cat', 'miss', 'day', 'freak'], ['tri', 'translat', 'tweet', 'use', 'googl', 'translat', 'servic', 'spat', 'back'], ['read', 'take', 'note', 'undertand', 'none', 'help'], ['dam', 'vote', 'not', 'go', 'win', 'anyth'], ['real', 'stress'], ['ooh', 'lush', 'not', 'sunbath', 'burn', 'way', 'easili', 'even', 'sun', 'cream', 'great', 'thank', 'love', 'sunni', 'day'], ['suck'], ['sorri', 'not', 'mean', 'hope', 'think', 'positivli', 'look', 'back'], ['sick', 'suck'], ['inspect', 'went', 'fine', 'like', 'hous', 'woope', 'would', 'nice', 'morn', 'could', 'done', 'stuff', 'today'], ['know', 'not', 'want', 'left', 'home', 'weekend'], ['not', 'fan'], ['leg', 'broke', 'wait', 'until', 'go'], ['good', 'thank', 'good', 'drive', 'care', 'blackberri', 'not', 'want', 'get', 'scream'], ['kyle', 'go', 'town', 'weekend', 'play', 'time', 'wif', 'fwiend', 'rawrr'], ['throat', 'hurt', 'bad', 'not', 'even', 'want', 'swallow', 'spit', 'offici', 'not', 'talk'], ['ugh', 'someth', 'wrong', 'sudden', 'feel', 'extrem', 'flush', 'shaki', 'broke', 'sweat', 'not', 'know', 'wrong'], ['could', 'not', 'fuck', 'sleep', 'today', 'either', 'hard', 'stay', 'asleep', 'reason'], ['bummer', 'miss', 'taylor', 'swift', 'today', 'show', 'plan', 'day'], ['not', 'wale', 'past', 'quad', 'want', 'outsid', 'fun'], ['ouch', 'hate', 'favourit', 'item', 'cloth', 'get', 'ruin'], ['storm', 'act', 'discuss', 'session', 'regard', 'social', 'media', 'scott', 'lake', 'ceo', 'thinksm', 'attend'], ['grr', 'not', 'finish', 'juli'], ['hear', 'bird', 'chirp', 'make', 'think', 'nice', 'not', 'rain', 'rain', 'go', 'away'], ['not', 'gaug', 'time', 'day', 'offic', 'anymor', 'wors', 'friggin', 'casino', 'waitress', 'smoke', 'booz'], ['internet', 'wtf', 'think', 'go', 'sleep', 'afterward', 'internet', 'drive', 'crazyy'], ['page', 'left', 'read', 'time', 'start', 'lunch', 'grader'], ['back', 'glasgow', 'stuck', 'traffic'], ['still', 'disney', 'train', 'soarin', 'rose', 'appli', 'apart', 'last', 'night', 'eric', 'lost', 'job'], ['omgsh', 'know', 'deal', 'rite', 'fun'], ['wave', 'look', 'interest', 'go', 'live', 'live', 'connect', 'might', 'well', 'easi', 'right', 'googl', 'own', 'us'], ['well', 'pour', 'realli', 'realli', 'wet'], ['haha', 'not', 'good', 'vid', 'tubey', 'thugh'], ['tummi', 'hurt', 'blame', 'last', 'night', 'chines', 'food'], ['know', 'want', 'come', 'bec', 'excit', 'not', 'bec', 'go', 'go', 'fast', 'amp'], ['feel', 'sad', 'not', 'like', 'new', 'haircut'], ['eyelid', 'not', 'deep', 'set', 'thank', 'would', 'help', 'lot'], ['idea', 'watch', 'rafa', 'run', 'comp', 'ever', 'often', 'check', 'live', 'score', 'third'], ['girl', 'stay', 'invit', 'not', 'hahaha', 'phone', 'call', 'check'], ['sorryy', 'home', 'fast', 'possibl', 'meet'], ['might', 'broken', 'text', 'messag'], ['got', 'coupon', 'could', 'not', 'regist', 'us'], ['know', 'second', 'problem', 'not', 'realli', 'exist', 'still', 'appli', 'shame'], ['spray', 'tan', 'fail', 'leg', 'feet', 'scrub', 'feet', 'look', 'better', 'look', 'aw', 'morn', 'everywher', 'els', 'ok'], ['back', 'offic', 'fire', 'alarm', 'went', 'due', 'someon', 'burnt', 'food', 'microwav'], ['get', 'readi', 'week', 'nice', 'today', 'stuck', 'insid', 'work'], ['need', 'plug', 'real', 'ear', 'want', 'stretch', 'money'], ['tri', 'finish', 'god', 'help', 'finish'], ['made', 'wonder', 'breakfast', 'get', 'readi', 'workout'], ['men', 'far', 'sunni'], ['run', 'join', 'run'], ['good', 'morn', 'folk', 'day', 'go', 'sad', 'day', 'giro', 'mean', 'tour', 'not', 'far', 'away'], ['nyc', 'placement', 'start', 'come', 'look', 'like', 'upgrad', 'might', 'wait', 'yet', 'anoth', 'two', 'week', 'placement', 'dread'], ['oh', 'god', 'end', 'first', 'cours', 'not', 'believ', 'yeh', 'mani', 'exam', 'everyth', 'wonder'], ['came', 'soo', 'heartbeat'], ['final', 'back', 'stupid', 'holiday', 'miss', 'fit', 'bar', 'men', 'though'], ['move', 'offic', 'tomorrow', 'year', 'one', 'sad', 'day'], ['nice', 'day', 'like', 'today', 'wish', 'garden'], ['wish', 'outsid'], ['stayn', 'home', 'school', 'sick', 'doc', 'say', 'bronchiti'], ['sat', 'sunbath', 'bomb', 'church', 'day', 'left', 'miss'], ['watch', 'chicago', 'honeyi', 'miss', 'hey', 'arnold', 'wild', 'thornberri'], ['hate', 'life', 'moment', 'mani', 'nos', 'delic', 'littl', 'mind', 'take'], ['get', 'paid', 'still', 'broke', 'hell', 'shop', 'spree', 'today'], ['busi', 'bob', 'jealous', 'not', 'sure', 'even', 'afford', 'go', 'meet', 'john', 'de', 'lanci', 'leonard', 'nimoy'], ['hate', 'histori'], ['well', 'one', 'week', 'left', 'holiday', 'sad', 'sad'], ['devil', 'say', 'wait', 'black', 'widow', 'movi', 'not', 'awesom'], ['guess', 'work', 'fusion', 'otherwis', 'boot', 'direct', 'vista', 'onlin', 'bank', 'suck'], ['puffi', 'leavingg', 'noo'], ['go', 'miss', 'imac', 'much', 'next', 'month'], ['izzi', 'sorri', 'hear', 'disast'], ['raini', 'day', 'today', 'car', 'stuck', 'hous', 'need', 'go', 'post', 'offic'], ['thank', 'gourmetcook', 'cold', 'shower', 'would', 'not', 'help'], ['oh', 'matey', 'get', 'ill', 'would', 'bit', 'mean', 'suzi', 'call', 'chicken', 'scab', 'not'], ['miss', 'devil', 'wear', 'prada', 'sad'], ['sit', 'empti', 'yearbook', 'room', 'attempt', 'figur', 'soon', 'possibl', 'lol'], ['oh', 'gosh', 'ian', 'alway', 'miss'], ['hug', 'thank', 'not', 'know', 'go', 'fix', 'ever', 'go', 'get', 'account', 'back'], ['sit', 'awe', 'price', 'renew', 'laptop', 'warranti', 'doubl', 'matter', 'week'], ['tgif', 'bad', 'weather', 'suck'], ['lousi', 'mofo', 'landlord', 'need', 'focus', 'kid', 'pack', 'not', 'nevermind', 'sew', 'sleep', 'bag'], ['figur', 'wat', 'wrong', 'drink', 'not', 'eat'], ['awak', 'still', 'feel', 'sick', 'got', 'blog', 'done', 'least'], ['sephora', 'sale', 'broke', 'life', 'not', 'fair'], ['ughh'], ['probabl', 'not', 'hate', 'happen'], ['ugh', 'not', 'access', 'mobil', 'web'], ['psa', 'usu', 'last', 'tweet', 'yet', 'show', 'bore', 'bare', 'w'], ['paid', 'bill', 'money'], ['warhamm', 'space', 'marin', 'announc', 'luck', 'pc', 'gamer'], ['nomatt', 'much', 'sleep', 'still', 'tire'], ['ok', 'back', 'dentist', 'today', 'want', 'bask', 'sun'], ['tri', 'use', 'contact', 'save', 'local', 'outlook', 'thank', 'though'], ['hate', 'young'], ['warm', 'not', 'arm', 'sore', 'bad', 'time', 'face', 'littl', 'red'], ['good', 'mornin', 'amp', 'tol', 'twitter', 'lol', 'knew', 'amp', 'call', 'yesterday', 'see', 'okay', 'answer', 'r', 'feelin', 'babe'], ['back', 'gym', 'project', 'final', 'finish', 'damn', 'filthi', 'hobo', 'alway', 'tri', 'eat', 'lt'], ['oh', 'final', 'messag', 'not', 'review', 'boardgam', 'telli', 'not', 'even', 'get', 'nice', 'letter'], ['nomatt', 'much', 'sleep', 'still', 'tire', 'either', 'go', 'sleep', 'earli', 'late'], ['far', 'absolut', 'perfect', 'great', 'view', 'direct', 'across', 'elev', 'ice', 'machin', 'impec', 'weather', 'need', 'bike'], ['oh', 'gfail', 'end', 'html', 'version', 'day'], ['michael', 'scofil', 'noo', 'hate', 'writer', 'director', 'n', 'product'], ['ugh', 'hate', 'queue'], ['last', 'night', 'fun', 'w', 'lighten', 'thunder', 'today'], ['love', 'nice', 'weather', 'today', 'camp', 'tonight', 'oh', 'hate', 'hair'], ['yes', 'pm', 'pm', 'right'], ['sad', 'feel', 'bad', 'hear', 'look', 'like', 'mid', 'like', 'someth', 'wld', 'see', 'lifetim'], ['besid', 'not', 'strep', 'like', 'year', 'reason', 'tire', 'anyth', 'els'], ['glad', 'see', 'sun', 'dublin', 'great', 'week', 'london', 'back', 'work'], ['darn', 'keep', 'forget', 'darn', 'quot', 'quot', 'dm'], ['not', 'know', 'not', 'even', 'realiz', 'gone', 'let', 'put', 'twitter'], ['want', 'know', 'not', 'fun', 'way', 'wake', 'panic', 'attack', 'not', 'abl', 'breath', 'fuck', 'reason', 'fuck', 'suck'], ['well', 'piss', 'not', 'get', 'site', 'work', 'come', 'thru', 'phone'], ['littl', 'beetl', 'not', 'feel', 'love', 'search', 'bring', 'zilch', 'bar', 'peep', 'appear', 'funni'], ['wtf', 'rehears', 'got', 'space', 'room', 'book', 'brother', 'stuff', 'right', 'not', 'transfer', 'anoth', 'room', 'studio'], ['well', 'ya', 'pleas', 'send', 'luvin', 'sens', 'deep', 'fieri', 'anger', 'surround', 'presenc', 'right'], ['weather', 'suck', 'rain'], ['hate', 'weather'], ['nvidia', 'lenovo', 'ideapad', 'awesom', 'fn', 'key', 'left', 'ctrl', 'make', 'though'], ['not', 'play', 'world', 'conflict', 'comput', 'run', 'slow'], ['chillin', 'promot', 'eat', 'lmaao'], ['bad', 'start', 'day', 'sweat', 'butt', 'rang'], ['ff', 'later', 'busi', 'make', 'plan', 'today', 'beshi', 'go', 'dc', 'june', 'bball', 'game'], ['want', 'go', 'birthday'], ['tri', 'morn', 'sad', 'could', 'not'], ['anoth', 'long', 'walk', 'heat', 'hate'], ['spi', 'princess', 'ann', 'today', 'listent', 'friend', 'cook', 'perfect', 'even', 'work', 'suck', 'ob'], ['watch', 'devil', 'wear', 'prada', 'want', 'live', 'new', 'york', 'citi', 'ever', 'must', 'poor'], ['serious', 'touch', 'ars', 'ohmygod', 'bitch', 'lol', 'aaww', 'tell'], ['yeess', 'not', 'wait', 'bad', 'not', 'drink'], ['work', 'miss', 'sunshin'], ['love'], ['want', 'boo', 'way', 'love', 'fhnixon', 'post', 'hilari'], ['anoth', 'day', 'not', 'got', 'time', 'play', 'plus', 'rain', 'chilli', 'also', 'headach', 'wth', 'go', 'back', 'sulk', 'mode'], ['piss', 'today', 'n', 'sad', 'not', 'even', 'share', 'reason'], ['well', 'friday', 'usual', 'start', 'someth', 'not', 'sure', 'time', 'around', 'got', 'shake'], ['fuck', 'arm', 'feel', 'like', 'realli', 'sore'], ['aww'], ['demo', 'gari', 'burr', 'excit', 'get', 'quot', 'girl', 'quot', 'music', 'tape', 'miss', 'tayla'], ['ice', 'coffe', 'christ', 'tast', 'nasti'], ['allergi', 'sun', 'wear', 'short', 'stuck', 'advisori', 'whole', 'day', 'bore', 'except', 'fun', 'peopl', 'make', 'fun'], ['work', 'attempt', 'keep', 'squirrel', 'away', 'squirel', 'jesska', 'stick', 'spider'], ['might', 'one', 'accus', 'guy', 'quot', 'one', 'side', 'quot', 'issu', 'get', 'way', 'way', 'hand'], ['aw', 'man', 'sorri', 'logic', 'reason', 'promis', 'studi', 'order', 'tutor', 'new', 'student'], ['miss', 'yesterday', 'lacey', 'get', 'go', 'granul', 'tonight', 'though'], ['bore', 'last', 'weekend'], ['oh', 'somebodi', 'hack', 'email', 'scare', 'fuck'], ['scare', 'dalek', 'dw', 'exhibit', 'cardiff'], ['yes', 'soak', 'sure', 'go', 'fast', 'n', 'furious', 'one', 'show', 'year', 'reason', 'revel', 'moment'], ['yep', 'exact', 'realli', 'sad', 'know', 'go', 'cri', 'last', 'amp', 'g'], ['bet', 'not', 'fall', 'asleep', 'till', 'like', 'morn', 'sorri'], ['thank', 'pair', 'git', 'hope', 'like', 'bus'], ['yeah', 'like', 'type', 'wick', 'wick', 'wick', 'not', 'know', 'not', 'think', 'would', 'like'], ['come', 'bake', 'slight', 'headach'], ['not', 'think', 'went', 'well', 'min'], ['fact', 'ihat', 'directv', 'ondemand', 'passion', 'burn', 'white', 'hot', 'intens', 'sun', 'fact', 'imiss', 'comcast', 'like', 'lot'], ['effort', 'time', 'put', 'relationship', 'peopl', 'learn', 'enough', 'not', 'trust', 'anyon'], ['watchign', 'garden', 'hot'], ['not', 'feel', 'well'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['hate', 'pc'], ['well', 'dnt', 'realli', 'knw', 'wot', 'stay', 'wit', 'not', 'want', 'b', 'wiv', 'move', 'home', 'rent', 'bein', 'away'], ['yucki', 'time', 'bring', 'vaccuum', 'go', 'war', 'hous', 'alway', 'spider', 'reason', 'not', 'cool'], ['pshh', 'not'], ['thank', 'sweeti', 'understand', 'peopl', 'mad', 'someth', 'made', 'choic', 'life'], ['would', 'not', 'repli', 'gorgeous', 'hot', 'pink', 'shoe'], ['yukki', 'raini', 'friday'], ['okay', 'lie', 'meant', 'time', 'next', 'week', 'soo', 'much', 'longer', 'miss', 'mommi'], ['tri', 'figur', 'earth', 'suppos', 'abl', 'updat', 'status', 'via', 'phone', 'someon', 'help', 'mee'], ['ah', 'yes', 'drop', 'bear', 'thing', 'love', 'day', 'odd', 'stafford'], ['offici', 'nobodi', 'get', 'rais', 'year'], ['want', 'garden', 'sit', 'insid', 'sunni', 'suck'], ['sound', 'shitti'], ['yen', 'lol', 'get', 'vid', 'phone', 'ipod', 'not', 'find', 'song', 'lol'], ['fcuk', 'ayoko', 'na', 'said', 'tagalog', 'cuz', 'not', 'know', 'anymor'], ['lab', 'inform', 'logic', 'board', 'dead', 'well', 'fark', 'expens', 'replac', 'not', 'know'], ['not', 'heap', 'hey', 'bout', 'tu', 'hit', 'sack', 'need', 'someon', 'tu', 'cuddl', 'suck', 'wbu', 'x'], ['hiya', 'hun', 'not', 'day', 'dentist', 'appoint', 'ouch', 'notebook', 'bitch', 'feel', 'sick'], ['back', 'work', 'extrem', 'slow', 'start'], ['hey', 'dee', 'wish', 'could', 'make', 'mastermind', 'session', 'tomorrow', 'wed', 'statesboro', 'hope', 'chat', 'soon'], ['scari'], ['one', 'downsid', 'nice', 'weather', 'bring', 'chav'], ['wish', 'got', 'fij'], ['need', 'sumth', 'excruci', 'headach'], ['mother', 'take', 'gambit', 'vet', 'today', 'hope', 'noth', 'serious'], ['bad', 'net', 'issu', 'wed', 'could', 'not', 'broadcast', 'tonight', 'though', 'tune', 'new', 'anthem', 'bad', 'mix'], ['afraid', 'not', 'much', 'realiz', 'true', 'difficulti', 'design', 'may', 'cri', 'soon', 'idmfin'], ['someon', 'stole', 'new', 'laptop', 'airport', 'not', 'even', 'use', 'guess', 'us', 'economi', 'breed', 'new', 'set', 'quot', 'opportinist', 'quot'], ['dislik', 'math', 'math', 'hate'], ['tan', 'emili', 'bad', 'prob', 'go', 'rain'], ['think', 'hayfev', 'not', 'sure', 'due', 'wear', 'next', 'noth', 'horrif', 'weather', 'wed'], ['tom', 'tour', 'philippin', 'pleas', 'would', 'awesom'], ['thankyou', 'not', 'know'], ['amen', 'vitamin', 'made', 'ill', 'felt', 'better', 'start', 'take'], ['hope', 'left', 'bb', 'home', 'not', 'lose', 'metro'], ['omg', 'feel', 'bad', 'good'], ['oh', 'kasa', 'pleas', 'lose', 'hair'], ['reason', 'not', 'find', 'latest', 'arena', 'magazin', 'fold', 'due', 'recess', 'grr', 'surviv', 'justic'], ['shop', 'til', 'bac', 'sunshin', 'miss'], ['shit', 'contact', 'parent', 'gt', 'gt', 'grr'], ['anyth', 'sorri', 'man', 'not', 'patsi', 'general'], ['best', 'friend', 'bought', 'someth', 'realli', 'want'], ['soo', 'disappoint', 'look', 'like', 'way', 'imag', 'gone'], ['wow', 'drank', 'drink', 'water', 'ice', 'cube', 'took', 'age', 'melt', 'brian', 'freez'], ['still', 'wait', 'email', 'max', 'consid', 'news', 'bad', 'news'], ['miss', 'mom', 'today', 'made', 'quot', 'date', 'quot', 'everi', 'year', 'get', 'flower', 'togeth', 'yr', 'alon', 'felt', 'weird'], ['wnt', 'yesterday', 'wish', 'could', 'go', 'someday', 'loov', 'ya', 'lt'], ['deal', 'cancer', 'direct', 'famili', 'bugger', 'cancel', 'suck'], ['sad', 'day'], ['stomach', 'ef', 'hurt', 'sad', 'gym', 'class', 'afternoon'], ['wish'], ['steve', 'chai', 'sound', 'awesom', 'wish', 'one', 'stuck'], ['not', 'given', 'exact', 'date', 'not', 'much', 'longer', 'pleas', 'accept', 'apolog', 'inconveni'], ['creeper', 'feel', 'disappoint', 'damn', 'cyberstalk', 'skill', 'internet', 'privaci'], ['good', 'luck', 'still', 'get', 'wireless', 'work', 'post'], ['omg', 'one', 'year', 'work', 'permit', 'go', 'home', 'end', 'realli', 'gna', 'miss', 'canada'], ['mani', 'job', 'aspir', 'supervisor', 'not', 'one', 'talk', 'much', 'stress', 'littl', 'pay'], ['tire', 'not', 'know'], ['isint', 'let', 'chang', 'profil', 'pictur'], ['kidney', 'stone', 'ever', 'deserv', 'kind', 'pain', 'not', 'twice', 'five', 'time', 'life', 'took', 'drug', 'peac'], ['school', 'linda', 'noth', 'miss'], ['got', 'thinkin', 'weird', 'dog'], ['yes', 'got', 'lovey', 'amp', 'return', 'love', 'amp', 'anoth', 'amp', 'also', 'know', 'mad'], ['great', 'podcast', 'wish', 'guy', 'chi', 'show', 'summer', 'time', 'see', 'alpin'], ['well', 'discov', 'not', 'swim', 'sorri'], ['look', 'forward', 'go', 'home', 'tomorrow', 'realli', 'wish', 'differ', 'reason'], ['realli', 'hate', 'delay', 'train', 'especi', 'minut', 'delay', 'train', 'go', 'late', 'work'], ['noth', 'better', 'take', 'cold', 'shower', 'morn'], ['ok', 'super', 'bore', 'guess', 'one', 'els'], ['jailbreak', 'went', 'great', 'not', 'tremend', 'amount', 'app', 'readi', 'though', 'winterboard', 'yet'], ['hey', 'present', 'larg', 'post', 'sorri', 'rule', 'entiti', 'catalogu', 'rda', 'live', 'gt'], ['tgif', 'not', 'feel', 'good'], ['hahaha', 'chivalri', 'not', 'dead', 'rare'], ['work', 'product', 'buzz', 'product', 'review', 'blog', 'pain', 'back', 'neck'], ['share', 'miss', 'niec', 'nephew'], ['realli', 'dead', 'descans', 'paz', 'luto', 'sad', 'rip'], ['experienc', 'pain', 'pagin', 'listview', 'control'], ['paint', 'nail', 'green', 'attempt', 'look', 'like', 'armi', 'person', 'annoy', 'everyon', 'seem', 'tan', 'apart', 'freckl', 'sunburn'], ['haha', 'yeah', 'constant'], ['got', 'twit', 'link', 'fail'], ['chick', 'not', 'shut', 'stop', 'chirp', 'sit', 'bloodi', 'thing'], ['dnt', 'even', 'like', 'wear', 'skinni', 'jean', 'cuz', 'bitch', 'ass'], ['sorri'], ['idea', 'wtf'], ['chick', 'not', 'shut', 'stop', 'chirp', 'sit', 'bloodi', 'thing'], ['go', 'make', 'go', 'way', 'store', 'lol', 'find', 'googl', 'thank', 'lol'], ['exact', 'becom', 'complet', 'incap', 'anyth', 'unless', 'help', 'mani'], ['googl', 'chrome', 'forgot', 'everyth', 'look', 'like', 'reason'], ['columbus', 'blue', 'jack', 'may', 'movi', 'anew', 'citi', 'play', 'sad', 'news'], ['oh', 'man', 'dead', 'deer', 'everywher', 'michigan'], ['think', 'kill', 'judg', 'bt', 'energi', 'attack', 'see', 'happen', 'spymast'], ['rain', 'ever', 'go', 'away', 'puppi', 'get', 'cabin', 'fever', 'not', 'like', 'go', 'rain'], ['hope', 'better', 'trailer'], ['peopl', 'wat', 'hell', 'follow', 'twitter', 'not', 'get'], ['sit', 'connect', 'listen', 'employe', 'reminisc', 'mope', 'last', 'shift'], ['miss', 'drive', 'alreadi'], ['yay', 'suppos', 'next', 'weekend', 'make', 'lt', 'philli'], ['cri', 'hard'], ['friday', 'not', 'pleasant', 'one', 'waay', 'much', 'work'], ['wish', 'blog', 'work', 'proper', 'great', 'followfriday', 'blog', 'post', 'want', 'showcas'], ['conflict', 'realli', 'like', 'mike', 'still', 'feel', 'darrin', 'realli', 'complic', 'not', 'know'], ['dentist', 'hole', 'tooth'], ['noth', 'yet', 'still', 'let', 'us', 'sure', 'lunch', 'next', 'week'], ['though', 'cold', 'would', 'go', 'away', 'turn', 'sinus', 'infect', 'keep', 'get', 'wors', 'wors', 'day'], ['got', 'assign', 'tomorrow', 'omg', 'mackillop', 'swine'], ['ughh', 'tummi', 'ach'], ['busi', 'ugh', 'largest', 'headach'], ['happen', 'suffer', 'pain', 'like', 'not', 'move', 'either'], ['jesus', 'christ', 'meadowhal', 'could', 'better', 'air', 'con', 'hot'], ['fab', 'day', 'placement', 'work', 'weekend'], ['gorgeous', 'day', 'go', 'work', 'day', 'got', 'keep', 'tell', 'nyc'], ['sure', 'lot', 'studio', 'equip', 'collect', 'analog', 'stuff', 'not', 'bought', 'anymor', 'serious', 'condol'], ['bye', 'la', 'alreadi', 'miss'], ['quot', 'think', 'break', 'heart', 'tri', 'keep', 'togeth', 'fall', 'quot'], ['dreari', 'raini', 'crappi', 'day'], ['aww', 'told', 'would', 'chang', 'suggest', 'tri', 'get', 'touch', 'dre', 'peopl', 'lol'], ['good', 'morn', 'rain'], ['not', 'columbus', 'want', 'say', 'sorri', 'miss', 'indiana', 'show', 'tomorrow', 'sad', 'wood', 'gs'], ['tire'], ['hate', 'biatch', 'world'], ['newest', 'version', 'not', 'better'], ['bad', 'day', 'close', 'relat', 'die', 'not', 'go', 'florida'], ['suck', 'save'], ['never', 'good', 'time', 'recours', 'small', 'claim', 'get', 'atti', 'involv'], ['hate', 'cloudi', 'either', 'want', 'sunni', 'rain', 'cloudi'], ['saw', 'fleetwood', 'mac', 'insan', 'jealous', 'not', 'enough', 'money', 'buy', 'ticket', 'think', 'never', 'see'], ['job', 'hunt', 'tri', 'day', 'noth', 'work', 'bet', 'could', 'not', 'even', 'work', 'strip', 'club', 'cider', 'belli'], ['get', 'earli', 'feel', 'good', 'day', 'walk', 'work', 'feel', 'alright', 'guess', 'not', 'work', 'today'], ['well', 'not', 'get', 'cupcak', 'not', 'connect', 'network', 'sim', 'card', 'corrupt'], ['vcenter', 'screw', 'today', 'specif', 'mssql', 'server', 'connect'], ['head', 'farm', 'not', 'want', 'want', 'stay', 'talk', 'boyfriend', 'stupid', 'mom', 'make', 'go', 'gt', 'lt'], ['hot', 'hate', 'summer', 'harrymcflytos'], ['neither', 'could', 'look', 'ebay', 'like', 'euro', 'two', 'doubt', 'parent', 'would', 'fork', 'amount'], ['someth', 'area', 'make', 'tonsil', 'swell', 'everyday', 'not', 'get', 'feel', 'slight', 'miser', 'ff', 'done'], ['make', 'sad', 'follow', 'someon', 'convers', 'similar', 'bio', 'not', 'follow', 'back'], ['browsin', 'thru', 'video', 'multipli', 'saw', 'video', 'sang', 'bf', 'miss', 'miss', 'pls', 'come', 'back', 'wherev', 'r'], ['see', 'guy', 'philippin', 'would', 'coolest', 'thing', 'ever', 'alway', 'want', 'go', 'one', 'concert'], ['not', 'mean', 'without'], ['sad', 'probabl', 'never', 'see', 'fleetwood', 'mac'], ['not', 'thought', 'funni'], ['costum', 'shop', 'clean', 'starv', 'bring', 'food'], ['googl', 'wave', 'demo', 'look', 'lot', 'fun', 'would', 'love', 'test', 'though'], ['sorri', 'guy', 'not', 'sign', 'sorri'], ['horrid', 'dream', 'suspect', 'cancel', 'plan', 'tonight'], ['sorri', 'hear', 'mum'], ['not', 'think', 'well', 'time', 'weekend'], ['follow', 'friday', 'bit', 'hard', 'work', 'kick', 'friday'], ['bad', 'new', 'mommi', 'call', 'newborn', 'pictur', 'not', 'fit', 'babi', 'schedul', 'matter', 'hard', 'tri'], ['think', 'everyon', 'hate', 'lol'], ['one', 'day', 'hair', 'weather', 'suck', 'sun'], ['hour', 'sleep', 'migrain', 'wrong', 'hate', 'life'], ['ride', 'time', 'dismal', 'raini', 'week', 'not', 'abl', 'make', 'go', 'gym', 'instead'], ['dammit', 'pass', 'still', 'work'], ['sick', 'stupid', 'guy', 'moment', 'make', 'believ', 'not', 'suck', 'get', 'back', 'realiti'], ['go', 'doctor', 'scare', 'shit'], ['bodi', 'hurt', 'need', 'rub', 'like'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['total', 'gut', 'end', 'foot', 'cast', 'today', 'not', 'travel', 'nottingham', 'see', 'guy', 'xx'], ['charact', 'find', 'rare', 'enough', 'elabor', 'much', 'upon', 'anyth'], ['plane', 'ticket', 'uk', 'everywher', 'europ', 'beyond', 'cheap', 'gig', 'near', 'futur', 'announc', 'yet'], ['lmao', 'need', 'shop', 'partner', 'today'], ['suck', 'went', 'jail', 'could', 'not', 'tweet', 'anymor'], ['forev', 'right', 'flywithmeobsess', 'cri'], ['throat', 'hurt'], ['effi', 'break', 'heart'], ['unfortun', 'nowher', 'near', 'beach', 'fam', 'area'], ['kiss', 'screw', 'raggi', 'old', 'cat', 'woman', 'ha', 'pretti', 'sure'], ['got', 'sniffl', 'not', 'want', 'get', 'sick', 'not', 'need'], ['got', 'woken', 'mom', 'entir', 'first', 'floor', 'flood', 'furnitur', 'curtain', 'mom', 'expens', 'rug', 'soak', 'ruin'], ['beauti', 'day', 'wish', 'energi', 'enjoy'], ['hey', 'handsom', 'pack'], ['hate', 'not', 'abl', 'twitter', 'cell', 'phone', 'oh', 'well'], ['quot', 'not', 'love', 'not', 'beauti', 'quot', 'sorri', 'stevi', 'not', 'realli', 'posit', 'make', 'judgement', 'steviewond'], ['braxton', 'until', 'not', 'sleep', 'minut', 'time', 'hard', 'mom', 'day', 'like'], ['walk', 'grand', 'peep', 'lol', 'feet', 'realli', 'hurt', 'thought', 'xx'], ['could', 'kill', 'hollyoak', 'made', 'sad'], ['not', 'pop', 'well', 'feel', 'lousier', 'play'], ['gah', 'forgot', 'separ', 'bin', 'mayb', 'bad', 'idea'], ['start', 'phase', 'oper', 'quot', 'product', 'quot', 'pack', 'cloth', 'not', 'find', 'pink', 'tank', 'top', 'oh'], ['go', 'hot', 'today', 'today', 'ryan', 'last', 'day', 'not', 'believ', 'sahm', 'sinc'], ['ok', 'suppos', 'followfriday', 'not', 'unfollow', 'friday', 'aw', 'well', 'nice', 'tweeter', 'anyway', 'lt', 'not', 'sound'], ['mom', 'car', 'broken', 'feel', 'violat'], ['kill', 'jasmin', 'not', 'talk', 'age'], ['ok', 'frustrat', 'hella', 'dust', 'screen', 'blackberri'], ['chanc', 'blew', 'suffer', 'tweep'], ['bugger', 'not', 'know', 'shame', 'peopl', 'stick', 'nose'], ['ala', 'not', 'broadcast', 'lunch', 'bandwidth', 'room'], ['hate', 'florist', 'rose', 'cassade', 'tomorrow', 'fricken', 'fag', 'florist', 'peopl', 'someth'], ['sad', 'pay'], ['not', 'feel', 'comfort', 'today'], ['gone', 'right', 'wish', 'could', 'alter', 'time'], ['forgot', 'put', 'work', 'cloth', 'dryer', 'also', 'love', 'new', 'slipper'], ['traci', 'berwick', 'break', 'achi', 'breaki', 'heart', 'split', 'way', 'hallway'], ['chat', 'old', 'schoolmat', 'aww', 'miss', 'highschool'], ['watch', 'final', 'episod', 'goon', 'subo', 'win', 'britian', 'got', 'talent'], ['serious'], ['awh', 'last', 'day', 'tour', 'miss', 'hangin', 'children', 'us', 'make', 'awesom', 'nite', 'ok'], ['hahah', 'yeah', 'problem', 'tomorrow', 'birthday', 'dinner', 'terri', 'not', 'think', 'see', 'fight'], ['car', 'garag', 'amp', 'not', 'come', 'anytim', 'soon', 'last', 'time', 'heard', 'gearbox', 'problem', 'still', 'wait', 'quot'], ['hope', 'get', 'chanc', 'play', 'tomorrow', 'hope', 'good', 'otherwis', 'wast', 'mani', 'point'], ['bore', 'bore', 'bore', 'noth', 'today', 'besid', 'work'], ['not', 'impress', 'might', 'go', 'away', 'complain', 'much', 'x'], ['ok', 'nevermind', 'photo', 'set', 'privat', 'sorri'], ['got', 'home', 'school', 'wake', 'friend', 'father', 'tire'], ['life', 'get', 'soo', 'dull', 'sometim', 'around', 'x'], ['wave', 'make', 'ok'], ['juic', 'miss', 'juic', 'fruit'], ['broke', 'girlfriend', 'feel', 'lone', 'heartbroken', 'sad', 'time', 'guy', 'n'], ['mall', 'work', 'turn', 'depress', 'place'], ['go', 'disney', 'world', 'lucki', 'bitch'], ['slept', 'parent', 'bed', 'hard', 'rock', 'back', 'feel', 'like', 'rock'], ['haha', 'remembrd', 'china', 'buffet', 'king', 'yesterday', 'vair', 'amus'], ['lol', 'zzi', 'offic', 'alon', 'bay'], ['industri', 'tommorow', 'oh', 'yeah', 'amp', 'get', 'go', 'see', 'bunch', 'old', 'peopl', 'go', 'away', 'forev', 'amp', 'probabl', 'cri', 'place'], ['true', 'love', 'brazil', 'australia', 'nitey'], ['omg', 'nervous', 'last', 'block', 'speech', 'almost', 'puke', 'horribl', 'bet', 'got', 'bad', 'grade'], ['thought', 'id', 'tan', 'hour', 'sun', 'burnt'], ['soo', 'bore', 'textil'], ['realiz', 'gain', 'pound', 'last', 'year'], ['tgif', 'not', 'like', 'hour', 'workday', 'need', 'stand', 'run', 'around', 'much', 'sit', 'plus', 'honest', 'ade', 'tea', 'yay'], ['realli', 'bore', 'brother', 'went', 'get', 'permit', 'stay', 'road', 'jk', 'lol', 'feel', 'like', 'friend', 'abandon', 'except'], ['yeah', 'suck', 'eh'], ['hot', 'offic', 'air', 'con', 'broken', 'week', 'fan', 'round', 'offic', 'push', 'hot', 'air', 'around', 'realli', 'not', 'help'], ['realli', 'despair', 'whole', 'copyright', 'situat', 'visual', 'impair', 'mean', 'not', 'deserv', 'read'], ['gettn', 'readi', 'take', 'trip', 'jersey', 'dad', 'not', 'good', 'need', 'new', 'see', 'pleas', 'say', 'prayer', 'dad'], ['got', 'headach'], ['today', 'seem', 'like', 'good', 'day', 'even', 'though', 'fuel', 'pump', 'go', 'car'], ['michell', 'slept', 'hour', 'last', 'night', 'still', 'stick', 'fever'], ['not', 'like', 'wait'], ['not', 'feel', 'good', 'head', 'work', 'not', 'bad', 'shift', 'not', 'fun', 'not', 'feel', 'well', 'hope', 'goe', 'fast'], ['got', 'hair', 'rebond', 'korean', 'place', 'dude', 'hair', 'fri', 'cut', 'quot', 'alreadi', 'chop'], ['wish', 'knew', 'tri', 'figur', 'someth'], ['think', 'run', 'fever', 'not', 'feel', 'well'], ['extrem', 'hungri', 'thing', 'hous', 'soup', 'not', 'like', 'soup', 'pout'], ['mouth', 'hurt'], ['look', 'accessori', 'livescrib', 'smartpen', 'not', 'mani', 'sourc', 'germani'], ['fun', 'focus', 'group', 'particip', 'yet'], ['hugh', 'lauri', 'mention', 'follow', 'twitter', 'thousand', 'idiot', 'think', 'idiot'], ['miss', 'must', 'forgiv', 'pleass', 'feel', 'bad'], ['need', 'post', 'not', 'time', 'tour', 'apolog', 'support'], ['not', 'need', 'work', 'overtim', 'project', 'lunchtim', 'sorri'], ['tire', 'work', 'today'], ['high', 'cholesterol'], ['head', 'verizon', 'pray', 'pinkberri', 'go', 'make'], ['picki', 'put', 'mouth', 'hate', 'onion', 'make', 'cri'], ['conjunct', 'left', 'eye', 'sign', 'someth', 'wrong', 'deserv', 'lol', 'die', 'peopl'], ['disappoint', 'cadburi', 'chocol', 'block', 'got', 'smaller'], ['nauseous', 'need', 'yogurt', 'someth'], ['hick', 'mean'], ['yes', 'one', 'final', 'parti', 'better', 'make', 'good', 'one', 'much', 'mpre', 'stuff', 'got', 'go'], ['given', 'question', 'thought', 'may', 'right', 'one', 'host', 'provid', 'hd', 'qualiti', 'viewer', 'mayb', 'not'], ['want', 'leav', 'period', 'cryy'], ['garden', 'stuff', 'order', 'got', 'return', 'sender', 'damag', 'need', 'work', 'get', 'garden', 'centr'], ['fever'], ['sinc', 'demis', 'woolworth', 'not', 'easi', 'find', 'reason', 'price', 'pick', 'n', 'mix', 'anywher'], ['half', 'hour', 'go', 'english', 'wait', 'coupl', 'hour'], ['back', 'kill', 'stupid', 'softbal'], ['tire', 'want', 'play', 'random', 'song', 'gitwar', 'drama', 'essay'], ['still', 'queue', 'bare', 'metr', 'last', 'twitter', 'insan', 'paid'], ['stuck', 'traffic', 'jam', 'somewhat', 'start', 'situat', 'everi', 'day', 'sad', 'realli'], ['ironi', 'inventor', 'ford', 'mustang', 'not', 'keep', 'car', 'via'], ['sorri', 'hear'], ['fallen', 'love', 'enter', 'shikari', 'might', 'go', 'walk', 'ladi', 'later', 'though'], ['class', 'realli', 'long', 'realli', 'get', 'hungri'], ['meant', 'go', 'play', 'cricket', 'not', 'get', 'lift', 'stuck', 'home', 'watch', 'apprentic', 'love', 'day'], ['wish', 'could', 'make', 'quick', 'trip', 'la', 'juli', 'miss', 'la'], ['not', 'want', 'miss', 'guy', 'kick', 'sad', 'plane', 'shop'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['well', 'dog', 'still', 'not', 'shelter', 'hope', 'someon', 'good'], ['not', 'work'], ['still', 'angri'], ['wake', 'headach'], ['plan', 'not', 'spend', 'money', 'not', 'go', 'well'], ['hurt', 'bring', 'joy', 'see', 'cri', 'know', 'love', 'anyth', 'yet', 'break', 'heart', 'everyday'], ['feet', 'kill', 'walk', 'mile', 'search', 'art', 'not', 'seem', 'like', 'eal', 'one'], ['break', 'news', 'gm', 'share', 'current', 'trade', 'per', 'share'], ['blood', 'test', 'today', 'not', 'bad', 'realli', 'need', 'dash', 'starbuck', 'reviv', 'spirit', 'nice', 'ice', 'latt', 'amp'], ['bum', 'hurt'], ['sensor', 'not', 'seem', 'want', 'last', 'day'], ['realli', 'want', 'go', 'gig', 'tonight'], ['want', 'see', 'drag', 'hell', 'get', 'feel', 'none', 'friend', 'go'], ['hope', 'morn', 'show', 'not', 'get', 'cancel'], ['feel', 'like', 'crap', 'right', 'one', 'month', 'school', 'left', 'fml', 'hard'], ['give', 'hater', 'hug', 'would', 'not', 'like', 'mwean', 'peopl'], ['time', 'close', 'today', 'last', 'day', 'today', 'tomorrow', 'may', 'would', 'tear'], ['confus'], ['realli', 'miss'], ['guess', 'easier', 'said', 'done', 'one', 'unfortun'], ['would', 'rather', 'bride', 'last', 'minut', 'wed', 'stuff', 'instead', 'stuck', 'behind', 'desk', 'someday'], ['sometim', 'hurt', 'pet', 'not', 'talk', 'back', 'us', 'pain', 'would', 'tell', 'us'], ['wrong'], ['would', 'not', 'let', 'download', 'cos', 'said', 'uk', 'littl', 'cri'], ['ahh', 'engulf', 'shooe', 'told', 'buy', 'maani', 'damn', 'shoe'], ['sunburnt', 'factor'], ['not', 'work', 'shini', 'red', 'coffe', 'tabl'], ['not', 'work'], ['learn', 'lesson', 'hard', 'way', 'lost', 'usb', 'stick', 'backup', 'month', 'old'], ['sorri', 'bout', 'cat'], ['eye', 'start', 'hurt', 'late', 'must', 'reach', 'updat', 'due', 'tweet', 'sent', 'youu', 'philippin', 'tour', 'pleeas'], ['sit', 'work', 'wait', 'day', 'alway', 'friday', 'take', 'forev', 'wish', 'weekend', 'would', 'get', 'alreadi'], ['soo', 'tire'], ['aww', 'not', 'mean', 'sound', 'like', 'overgrown', 'age', 'babi', 'still', 'stick', 'not', 'bad', 'yesterday', 'still', 'bad'], ['yeah', 'guess', 'make', 'sad', 'though', 'becas', 'disc', 'scratch'], ['got', 'woken', 'earli', 'kind', 'wana', 'chill', 'today', 'much'], ['stupid', 'msn', 'not', 'let', 'onn'], ['toothach'], ['feel', 'sick', 'stomach', 'today'], ['upset', 'see', 'cari', 'donna', 'go', 'today', 'miss', 'huge', 'alreadi', 'yes', 'ok', 'like', 'hour'], ['park', 'slope', 'brooklyn', 'work', 'bust', 'photoshoot', 'excit', 'amp', 'fever', 'tonsil', 'size', 'golfbal'], ['marina', 'sware', 'god', 'never', 'end', 'studi', 'french', 'till', 'clock', 'night', 'ever', 'much', 'sleepi'], ['sad', 'face'], ['need', 'serious', 'cheer'], ['mind', 'automat', 'wake', 'huge', 'fail', 'summer', 'good', 'morn', 'nonetheless', 'go', 'get', 'readi', 'work'], ['sad', 'day', 'laker', 'pleas', 'make', 'happi', 'w'], ['school', 'time', 'cuz', 'sick'], ['nice', 'start', 'holiday'], ['need', 'bigger', 'player', 'even', 'pain', 'say'], ['aaw', 'window', 'open'], ['honest', 'not', 'figur', 'twitter', 'thing'], ['wish', 'could', 'go', 'meet', 'middl', 'tomorrow'], ['super', 'stress'], ['sad', 'go', 'work', 'cuz', 'termineda', 'last', 'littl', 'monkey', 'last', 'day'], ['well', 'tomorrow', 'miss'], ['fuck', 'ipod', 'freez', 'need'], ['thank', 'ladi', 'bummer', 'sure'], ['student', 'walk', 'ball', 'wit', 'dog', 'get', 'hit', 'street', 'not', 'know', 'cheer'], ['feel', 'hurt'], ['oh', 'fianc', 'got', 'work', 'start', 'mine', 'not', 'fair'], ['forgot', 'traffic', 'head', 'foxford', 'mayo', 'love', 'pontoon', 'tomorrow'], ['turn', 'alarm', 'morn', 'thought', 'saturday', 'rush', 'get', 'readi', 'work', 'def', 'not', 'saturday', 'fail'], ['hate', 'revis'], ['wish', 'va'], ['watchin', 'tv', 'yesterday', 'media', 'number', 'five', 'think', 'worst', 'beach', 'bodi', 'butt'], ['aww', 'not', 'nice'], ['not', 'read', 'detail', 'may', 'sara', 'jayn', 'kid', 'show', 'not', 'excit'], ['also', 'want', 'miss', 'gir', 'much', 'get', 'roomi'], ['frank', 'up', 'last', 'day', 'today', 'sad', 'see', 'go', 'best', 'deliveri', 'guy', 'ever', 'hope', 'new', 'guy', 'not', 'fucktard'], ['not', 'worri', 'babe'], ['yes', 'made', 'sign', 'notic', 'miss', 'sunday', 'far', 'luck', 'unlucki', 'japanes', 'cat'], ['train', 'bristol', 'london', 'terribl', 'wifi'], ['sad', 'dad', 'die', 'hakuna', 'matana', 'mean', 'worri'], ['visit', 'la', 'ventana', 'de', 'los', 'cielo', 'foundat', 'push', 'bck', 'week', 'excit', 'go', 'amp', 'meet', 'kid', 'wait', 'anoth', 'wks'], ['pick', 'coupl', 'toy', 'tonight', 'yay', 'weekend', 'though'], ['not', 'sleep', 'good', 'last', 'night', 'woke', 'anoth', 'bellyach', 'wrong', 'mee'], ['aww', 'poor', 'boy', 'cri', 'sad'], ['min', 'meet'], ['yes', 'haha', 'impal', 'cross', 'key', 'love', 'ewan', 'mcgregor'], ['think', 'wow', 'surviv', 'freshman', 'sophomor', 'year'], ['ouch', 'back', 'man', 'sick'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['news', 'kid', 'not', 'find', 'parent'], ['class', 'tri', 'listen', 'realli', 'like', 'twitter', 'facebook', 'amp', 'myspac', 'oh', 'yeaah', 'amp', 'hungri'], ['home', 'not', 'great'], ['point', 'becom', 'appar', 'degre', 'mean', 'jack', 'shit'], ['want', 'magic', 'mountain', 'tix', 'not', 'get', 'station', 'paso', 'boo', 'suck'], ['shirt', 'fuzz', 'magnet', 'today', 'feel', 'total', 'uncomfort'], ['tri', 'best', 'not', 'share', 'love', 'head', 'cold'], ['gave', 'cabl', 'tough', 'econom', 'time', 'either', 'cabl', 'shoe', 'know', 'cabl', 'lost'], ['dang', 'disappoint'], ['wick', 'tuner', 'card', 'arriv', 'although', 'not', 'sure', 'abl', 'get', 'set', 'readi', 'fa', 'cup', 'final', 'tomorrow'], ['stupid', 'hip', 'hate', 'not', 'even', 'break', 'new', 'kick', 'grr'], ['wish', 'say', 'appli', 'work', 'saturday'], ['sad', 'assembl', 'next', 'block'], ['girl', 'battl', 'rare', 'breast', 'cancer'], ['wish', 'dalla', 'still', 'say', 'ow', 'lol', 'hey', 'spell', 'name', 'wrong', 'good', 'thank', 'ff', 'love'], ['unfortun', 'not', 'see', 'spread', 'poo'], ['woo', 'hulu', 'desktop', 'poor', 'mac', 'kind', 'struggl', 'though', 'poor', 'littl', 'core', 'duo', 'not', 'keep'], ['matter', 'heart', 'complic'], ['son', 'surgeri', 'yesterday', 'mommi', 'son', 'time', 'not', 'long', 'today'], ['think', 'bead', 'crumb', 'navig', 'return', 'new', 'fusion', 'studio', 'realli', 'miss', 'top', 'item'], ['mani', 'thing', 'miss', 'tweet'], ['slow', 'hate', 'get', 'trailhead', 'not', 'get'], ['sorri', 'not', 'understand', 'peopl', 'expect', 'everyon', 'react', 'thing', 'quot', 'pois', 'quot'], ['sorri', 'hear', 'carol'], ['missin', 'guy', 'day', 'ill', 'b', 'tomorrow', 'butt', 'see', 'june', 'blockk'], ['r', 'spin', 'hookah'], ['dote', 'husband', 'lol', 'hope', 'brace', 'go', 'eat', 'normal'], ['thought', 'unfair', 'peopl', 'n', 'got', 'depress', 'hater'], ['slight', 'headach'], ['guy', 'go', 'get', 'metal', 'detector', 'brickman', 'saw', 'chad', 'ask', 'davey', 'fb', 'sorri', 'ring'], ['decid', 'sprain', 'mine', 'bother', 'never', 'check'], ['noo', 'work', 'weekend'], ['weekend', 'aboutto', 'suck'], ['like', 'roll', 'eye', 'curious', 'hell', 'good', 'sing', 'real', 'treat', 'far', 'concern'], ['wish', 'could', 'pole', 'got', 'space', 'mayb', 'throw', 'furnitur', 'get', 'pole'], ['oh', 'man', 'go', 'connect', 'old', 'school', 'nintendo', 'play', 'mario', 'game', 'not', 'bag', 'got', 'search'], ['one', 'cat', 'sick'], ['thursday', 'realli', 'necessari', 'ever', 'heard', 'school', 'horribl', 'mum'], ['film', 'not', 'come', 'camera', 'broken', 'lamesauc'], ['think', 'break', 'heart', 'emo', 'sound', 'meh'], ['tire', 'n', 'want', 'sleep', 'bed'], ['dammit', 'not', 'watch', 'stadium', 'music'], ['wast', 'way', 'much', 'paper', 'offic', 'noth', 'worthi', 'almost', 'disgust'], ['love', 'realli', 'simpl', 'think', 'word', 'put', 'twi', 'front', 'clever'], ['galbladia', 'garden', 'shit', 'hard'], ['realli', 'want', 'home', 'right'], ['work', 'get', 'quick', 'bite', 'eat', 'kill', 'wrist', 'self', 'address', 'envolop'], ['felt', 'one', 'tooth', 'without', 'brace', 'bracket', 'got', 'soo', 'hype'], ['glad', 'alright'], ['disgust', 'assumpt', 'regard', 'happen', 'harlem', 'last', 'night', 'correct', 'without', 'read', 'stori', 'first'], ['poor', 'wife', 'laid', 'anoth', 'hour', 'doctor', 'order', 'not', 'much', 'deal', 'scream', 'babi'], ['mean', 'go', 'pizza', 'tonight', 'go'], ['oh', 'dear', 'sorri', 'laugh'], ['omfg', 'dude', 'look', 'well', 'put', 'shame'], ['think', 'gangsterr', 'ass', 'not', 'even', 'fit', 'g', 'unit', 'amp', 'know'], ['not', 'hope', 'take', 'good', 'long', 'recov'], ['phylli', 'hyman', 'unsung', 'stori', 'sad'], ['site', 'republish', 'blog', 'feed', 'often', 'end', 'higher', 'blog', 'googl', 'search', 'result'], ['move', 'make', 'sore', 'not', 'know', 'go', 'make', 'get', 'close'], ['microeconom', 'project', 'ihat', 'subject', 'amp', 'besid', 'english', 'ilet', 'exam', 'tomorrow', 'waa', 'help'], ['shoe', 'hurt', 'feet'], ['work', 'huge', 'headach'], ['feel', 'like', 'shit'], ['oh', 'dear', 'disturb', 'coffe', 'connoisseur', 'die', 'littl'], ['youtub', 'not', 'want', 'watch', 'britain', 'got', 'talent', 'debat', 'piti', 'parti'], ['not', 'make', 'nyc', 'huh'], ['got', 'peopl', 'not', 'let', 'skip', 'sci', 'pratic', 'beco', 'skola', 'impt', 'not', 'wast', 'parent', 'money', 'nt', 'fair'], ['woot', 'interview', 'went', 'awsom', 'not', 'get', 'talk', 'johnni', 'thought', 'oh', 'well', 'still', 'realli', 'good'], ['wow', 'soderl', 'ferrer', 'gill', 'simon', 'lost'], ['knee', 'sore', 'physio'], ['hate', 'put', 'toddler', 'dispos', 'rash', 'need', 'ointment', 'hate', 'rash', 'even', 'wors'], ['dollarama', 'wish', 'new', 'job'], ['tweet', 'hard', 'not', 'get'], ['look', 'show', 'turn', 'brain', 'mush', 'not', 'hurt', 'anymor', 'good', 'free', 'onlin', 'one', 'know'], ['coffe', 'got', 'cold', 'blah'], ['lost', 'phone'], ['mom', 'amp', 'feel', 'horribl', 'must', 'think', 'not', 'meant', 'thought', 'would', 'better', 'brunt'], ['day', 'slow', 'internet'], ['omgood', 'back', 'school', 'soon', 'fun'], ['not', 'yet', 'back', 'run', 'text', 'ring', 'later', 'xoxo'], ['tire', 'headach', 'like', 'sunshin'], ['got', 'peopl', 'not', 'let', 'skip', 'sci', 'pratic', 'beco', 'skola', 'impt', 'not', 'wast', 'parent', 'money', 'nt', 'fair'], ['die', 'kp', 'go', 'upgrad', 'spell', 'first', 'head', 'back'], ['hate', 'live', 'fl', 'miss', 'ga', 'like', 'say', 'not', 'know', 'got', 'till', 'gone', 'ga', 'mind'], ['crap', 'break', 'quot', 'work', 'weekend', 'quot', 'rule', 'much', 'overload', 'work', 'aargh', 'hate'], ['revis', 'uni', 'exam', 'loom'], ['ym', 'meebo', 'amp', 'ebuddi', 'realli', 'hate', 'us'], ['go', 'miss', 'senior', 'much', 'not', 'goo'], ['poor', 'nicol', 'absolut', 'destroy', 'cell', 'phone'], ['listen', 'peopl', 'say', 'eww', 'current', 'frog', 'disect', 'poor', 'froggi'], ['kate', 'leav', 'lonesom'], ['realli', 'gone', 'chiropractor', 'week', 'today', 'neck', 'hurt', 'bad'], ['order', 'new', 'comput', 'unfortun', 'not', 'get', 'end', 'june'], ['two', 'dozen', 'rose', 'sent', 'overnight', 'deliv', 'morn', 'found', 'recipi', 'town', 'sad'], ['not', 'hate', 'left', 'one', 'slice', 'bread', 'left', 'bag', 'half', 'sandwich'], ['holiday', 'soo', 'bore'], ['eww', 'print', 'new', 'badg', 'thingi', 'work', 'n', 'eww', 'pictur', 'took', 'mani', 'n', 'ugli'], ['say', 'goodby', 'two', 'best', 'intern', 'elev', 'ever'], ['bad', 'migran', 'need', 'go', 'danc', 'tonight', 'not', 'good', 'combin'], ['wonder', 'ankl', 'ever', 'stop', 'hurt'], ['well', 'atm', 'anyway', 'manag', 'cos', 'music', 'talent', 'ps', 'horribl', 'thing', 'say', 'bout', 'rove'], ['two', 'ticket', 'amadou', 'miriam', 'tue', 'june', 'not', 'use', 'anyon', 'want', 'face', 'valu', 'good'], ['stink', 'anyway'], ['realli', 'hurt', 'realli', 'suck', 'not', 'know', 'fix', 'serious'], ['realli', 'wish', 'could', 'convinc', 'brandon', 'move', 'somewher', 'like', 'want', 'move', 'lexington'], ['curl'], ['alway', 'hope', 'die', 'see', 'old', 'one', 'make', 'sad'], ['not', 'go', 'gym', 'today', 'feel', 'bad'], ['man', 'miss', 'truck', 'much', 'return', 'month', 'in', 'month'], ['paypal', 'hate', 'refus', 'let', 'verifi', 'account'], ['commi', 'finest', 'youtub', 'blogger', 'block', 'china', 'updat', 'us', 'china', 'great', 'wall', 'conquer'], ['sound', 'pain', 'sorri', 'got', 'hurt', 'may', 'ask', 'happen'], ['god', 'open', 'cloud', 'said', 'hate', 'josh'], ['well', 'go', 'peac', 'corp', 'prospect'], ['gee', 'total', 'hatin', 'like', 'real', 'mean', 'like', 'duh', 'studi', 'enough', 'need', 'refresh', 'tonit', 'hard'], ['still', 'not', 'figur', 'sad', 'take', 'research', 'know'], ['oh', 'great'], ['wish', 'could', 'special', 'someon'], ['omfg', 'head'], ['sorri', 'miss'], ['hate', 'stinkin', 'tire', 'everyday', 'hard', 'get', 'thought', 'suppos', 'start', 'get', 'energi', 'back'], ['think', 'might', 'like', 'twiterfon', 'better', 'tweeti', 'recent', 'upgrad', 'twiterfon', 'great', 'none', 'tweeti'], ['busi', 'day', 'time', 'tweet', 'bmore', 'happen', 'weekend'], ['not', 'good', 'enough'], ['pretti', 'took', 'like', 'hour', 'urss'], ['tire', 'sad'], ['shop', 'therapuet', 'better', 'need', 'financ', 'therapi', 'howev'], ['wet', 'dirti', 'one'], ['look', 'like', 'anoth', 'sober', 'weekend', 'ahead'], ['not', 'good'], ['loadsa', 'shizz', 'happend', 'upset'], ['miss', 'laugh', 'till', 'stomach', 'hurt'], ['life', 'suck'], ['glad', 'nice', 'gray', 'sky', 'raini', 'wisconsin'], ['careless', 'vocal'], ['freesat', 'coverag', 'sky', 'dish', 'realli', 'realli', 'bad', 'moment', 'block', 'place', 'realli', 'annoy'], ['confer', 'call', 'hp', 'gave', 'invalid', 'pass', 'code', 'not', 'attend'], ['dead', 'bore', 'also', 'dead', 'poor', 'student', 'life', 'piss', 'take'], ['massiv', 'headach'], ['head', 'thump'], ['annoy', 'miss', 'mitch', 'benn', 'lemon', 'tree', 'damn'], ['oh', 'crash', 'ball', 'pump'], ['open', 'offic', 'quot', 'writer', 'quot', 'weird', 'need', 'word', 'open', 'word', 'document', 'correct'], ['need', 'go', 'sleep', 'exhaust'], ['wish', 'garden', 'could', 'bbq', 'tonight', 'might', 'set', 'loung', 'bbq', 'type', 'thing', 'work', 'fridayfirehazzard'], ['rain', 'pour', 'true', 'sorri', 'hate', 'kind', 'time'], ['sad', 'day', 'told', 'student', 'last', 'year', 'lot', 'cri', 'sinc'], ['slovakian', 'countri', 'side', 'refresh', 'chang', 'compar', 'tarmac', 'car', 'citi', 'boy', 'need', 'tarmac'], ['aww', 'horribl', 'xd'], ['not', 'leav', 'forev', 'miss', 'much'], ['oh', 'tire'], ['not', 'know', 'yet', 'word', 'hope', 'though', 'good', 'stuff', 'happen', 'late', 'get', 'excit'], ['bug', 'code', 'go', 'forum', 'reg', 'let', 'know', 'work'], ['poor', 'phone', 'nekkid', 'without', 'cover'], ['accord', 'quarter', 'famili', 'six', 'live', 'poverti'], ['sorri', 'not', 'use', 'tweetdeck', 'not', 'let', 'tweet', 'today'], ['think', 'prize', 'end', 'sorri', 'hear', 'though'], ['reali', 'want', 'go', 'nice', 'everybodi', 'busi'], ['haha', 'go', 'turn', 'not', 'tweet', 'phone', 'stupid', 'spammer'], ['alway', 'littl', 'sad', 'see', 'follow', 'realli', 'like', 'decid', 'unfollow'], ['well', 'exam', 'fail', 'bsc', 'gone'], ['grr', 'peopl', 'suck', 'cri', 'anim', 'die', 'natur', 'show', 'peopl', 'sick', 'hunt', 'endang', 'speci'], ['hard', 'work', 'last', 'two', 'week', 'lose', 'weight', 'fear', 'lose', 'muscl', 'made', 'doc', 'appt', 'injur', 'foot'], ['disneyland', 'blast', 'yesterday', 'back', 'work'], ['saw', 'load', 'ambul', 'amp', 'polic', 'car', 'amp', 'car', 'smash', 'roof', 'lie', 'road', 'quot', 'man', 'dead', 'sure'], ['brilliant', 'day', 'today', 'got', 'car', 'wash', 'got', 'wash', 'done', 'go', 'work', 'hour'], ['unfortun', 'outsid'], ['annoy', 'make', 'us', 'girl', 'follow', 'sport', 'knowledg', 'look', 'dumb'], ['hard', 'time', 'use', 'hulu', 'heard', 'anyon', 'problem', 'use', 'window', 'vista'], ['need', 'cancel', 'appt', 'home', 'wash', 'machin', 'repair', 'man', 'sorri'], ['aww', 'boy', 'beard', 'like', 'man', 'via', 'asylm'], ['half', 'class', 'call', 'retard', 'hurt', 'real'], ['rip', 'omar', 'edward', 'kill', 'friend', 'fire', 'nyc'], ['not', 'good', 'homemad', 'flour', 'tortilla', 'age'], ['lmaaoo', 'horribl', 'poor', 'thing'], ['shower', 'back', 'bed', 'sick', 'still'], ['everyth', 'annoy', 'today'], ['cheer', 'mate', 'still', 'get', 'wednesday', 'ok', 'incred', 'wealthi', 'man'], ['hate', 'histori', 'rock'], ['hand', 'hurt'], ['lucki', 'girl', 'work', 'day', 'tomorrow', 'mayb', 'even', 'monday'], ['kind', 'bum', 'go', 'miss', 'return', 'bg', 'never', 'know', 'like', 'make', 'love'], ['aww', 'mate', 'shitter'], ['never', 'arriv', 'wait', 'monday'], ['ow', 'hurt'], ['cash', 'kno', 'not', 'upset', 'not', 'updat', 'yet'], ['ugh', 'sleepi', 'think', 'still', 'kind', 'sick'], ['soo', 'tire', 'still', 'kind', 'angri', 'miss', 'concert'], ['stupid', 'competit', 'stuff', 'keep', 'get', 'way', 'go', 'get', 'word', 'today', 'kill'], ['leav', 'get', 'angri', 'teeth', 'pull'], ['wasabi', 'recov', 'surgeri'], ['miley', 'go', 'quit', 'hannah', 'not', 'want', 'believ'], ['ground', 'tonight', 'hate', 'stupid', 'silent', 'mode'], ['tire'], ['back', 'fuck', 'school'], ['oh', 'boy', 'go', 'loong', 'day'], ['goal', 'gila', 'last', 'game', 'milan', 'dillemat'], ['ok', 'go', 'play', 'basketbal', 'oh', 'well'], ['mod', 'not', 'send', 'back', 'red', 'ring', 'death', 'suck', 'took', 'week', 'get', 'mine', 'back', 'microsoft'], ['cri', 'real', 'tear'], ['launch', 'today', 'teacher', 'chang', 'plan', 'watch', 'stupid', 'move', 'tesla'], ['yeah', 'thing', 'not', 'go', 'well', 'get', 'feel', 'like', 'not', 'felt', 'long', 'long', 'time'], ['new', 'car', 'alreadi', 'give', 'problem', 'not', 'good', 'sign'], ['forgot', 'lunch', 'one', 'els', 'order', 'stuff', 'boo'], ['know', 'think', 'like', 'die'], ['soo', 'tire', 'could', 'not', 'get', 'enough', 'sleep'], ['monday', 'not', 'abl', 'love'], ['die', 'not', 'know'], ['sad', 'go', 'miss', 'see', 'pennywis', 'year'], ['soo', 'pretti', 'mine', 'havnt', 'flower', 'year'], ['oh', 'not', 'difficult', 'nut', 'market', 'home', 'turf'], ['burnt', 'sorri', 'back', 'front', 'burnt'], ['tri', 'get', 'work', 'done', 'not', 'happi', 'work', 'situat'], ['hate', 'move'], ['miss', 'cutoff', 'free', 'chocol', 'eh', 'season', 'come'], ['offici', 'apt', 'learn', 'stuff', 'crazi', 'neighbor', 'use', 'live', 'across'], ['soo', 'drop', 'phone', 'not', 'text', 'tweet', 'current', 'bang', 'face', 'spike', 'cover', 'poison', 'ivi', 'infest', 'wall'], ['oh', 'kindergarten', 'teacher', 'die', 'collinson', 'alway', 'rememb', 'everi', 'student', 'ever', 'love', 'ladi'], ['fun'], ['missin', 'boo'], ['chicken', 'noodl', 'soup', 'made', 'lunch', 'feel', 'better', 'burn', 'tongu', 'good', 'day'], ['sit', 'deck', 'read', 'psycholog', 'note', 'ipod', 'dog', 'far', 'warm'], ['reeaalli', 'though', 'ew', 'hate', 'stock'], ['miss', 'lol', 'plaid', 'bud', 'haha', 'damn', 'not', 'bg', 'right'], ['ram', 'ff', 'still', 'slow', 'disabl', 'not', 'sure', 'one', 'make', 'cut', 'honest', 'like', 'sophi', 'choic'], ['not', 'finish', 'bio', 'mol', 'mind', 'map', 'stupid', 'sheet', 'hid', 'section', 'back'], ['kill', 'dill', 'plant', 'happen', 'dill', 'great', 'sudden', 'dead'], ['boor', 'learn', 'though'], ['sad', 'leav', 'soon'], ['feel', 'like', 'shit', 'could', 'not', 'sleep', 'last', 'night', 'went', 'sleep', 'n', 'bk', 'soo', 'tire'], ['well', 'took', 'earli', 'graduat', 'final', 'stage', 'guinea', 'pig', 'serious', 'wast', 'time'], ['worst', 'day', 'ever', 'noon'], ['listen', 'mende', 'discog', 'still', 'think', 'disband', 'loss', 'metal'], ['fuck', 'awak', 'hate', 'sick'], ['not', 'seem', 'access', 'restuar', 'citi', 'due', 'internet', 'javascript', 'problem'], ['pull', 'direct', 'not', 'know', 'go'], ['real', 'bad', 'headach'], ['fuccin', 'bacc', 'hurt', 'drag', 'long', 'blocc', 'piec', 'wood', 'corner', 'garag'], ['hope', 'present', 'went', 'well', 'today', 'tweet', 'yr', 'campus', 'tomorrow', 'around', 'lunch', 'time', 'onward'], ['want', 'know', 'wors', 'cowork', 'brew', 'fresh', 'cup', 'coffe', 'think', 'bacon'], ['oh', 'hope', 'not', 'bad', 'sound'], ['want', 'goo'], ['bad'], ['found', 'abuelo', 'aguadilla', 'not', 'well'], ['tour', 'philippin', 'sometim', 'lot', 'fan', 'would', 'realli', 'love'], ['hey', 'love', 'voic', 'shot', 'new'], ['rip', 'michael'], ['exam', 'kind', 'near', 'week', 'project', 'yet', 'submit', 'almost', 'fail', 'one', 'subject', 'may', 'allah', 'save'], ['not', 'starfleet', 'one', 'not', 'even', 'romulin', 'one', 'like', 'random', 'one', 'not', 'rememb', 'ha', 'not', 'wear', 'lame'], ['omg', 'bad', 'mood', 'wat', 'peopl'], ['straighen', 'hair', 'not', 'go', 'straight', 'want', 'bummerr'], ['oww', 'not', 'even', 'describ', 'much', 'back', 'hurt', 'go', 'go', 'stupid', 'doctor'], ['alway', 'miss', 'not', 'abl', 'commenc', 'foolish', 'til', 'fall', 'come', 'fall', 'visit', 'yay'], ['quot', 'hi', 'jonathan', 'spotifi', 'month', 'cn', 'unlimit', 'music', 'interupt', 'quot', 'love', 'r', 'littl', 'chat', 'j', 'not', 'leav'], ['poor', 'heather', 'not', 'make', 'cheerlead', 'squad', 'sorri', 'babygirl', 'mayb', 'next', 'year'], ['aahh', 'friday', 'funer'], ['lol', 'bk', 'year', 'go', 'not', 'come', 'yet'], ['told', 'andrew', 'jt', 'go', 'cameo', 'mtv', 'movi', 'award', 'said', 'quot', 'piss', 'quot', 'guess', 'fight'], ['hope', 'better', 'weekend'], ['good', 'repli', 'fallin', 'sad', 'face'], ['feel', 'pain', 'mine', 'way'], ['sad', 'wish', 'could', 'stay', 'longer', 'last', 'time', 'ill', 'see', 'tonight', 'better', 'not', 'wear', 'make'], ['ugh', 'got', 'stop', 'bite', 'nail', 'grr'], ['wish', 'pool'], ['soo', 'tire', 'studi', 'subject', 'histori', 'go', 'hard', 'gt', 'lt', 'help'], ['serious', 'quiet', 'lone', 'without', 'bunni'], ['oh', 'plzz', 'never', 'time'], ['class', 'sick', 'hungri'], ['ever', 'piss', 'thought', 'meant', 'wank', 'not', 'crap'], ['got', 'replac', 'phone', 'text', 'messag', 'call', 'histori', 'gone', 'sad'], ['nope', 'nott', 'plan', 'aunti', 'come', 'america', 'havin', 'big', 'famili', 'meal', 'not', 'xx'], ['not', 'even', 'better', 'kapsel', 'cha', 'dy', 'nuli', 'note', 'spertinya', 'gw', 'ga', 'ditag', 'cuz', 'g', 'ada', 'notificationnya', 'huhu'], ['kind', 'miss', 'first', 'main', 'male', 'tauren', 'shaman', 'name', 'icewat', 'stuck', 'mayb', 'fetch', 'one', 'day'], ['good', 'morn', 'sinc', 'quot', 'talk', 'quot', 'keep', 'awesom', 'tweet'], ['ugh', 'hate', 'not', 'car', 'miss', 'littl', 'ford', 'focus'], ['hmm', 'realli', 'weird', 'not', 'know', 'one', 'sowwi'], ['guess', 'belt', 'thing', 'sinc', 'not', 'hear', 'stop', 'weekend', 'talk', 'bout', 'ring', 'etc'], ['aww', 'twiter', 'miss', 'today', 'post', 'littl', 'mea', 'movi', 'soo', 'coold'], ['hell', 'know', 'suffer'], ['sourish', 'limb', 'prevent', 'gg', 'friday', 'not', 'happi', 'not', 'v', 'long', 'fri'], ['blah', 'work', 'job', 'one', 'day', 'job', 'two', 'night'], ['lol', 'okay', 'song', 'catchi', 'get', 'stuck', 'head'], ['worri', 'someth', 'bad', 'happen', 'today', 'not', 'know', 'go', 'happen', 'next'], ['get', 'readi', 'tonight', 'teacher', 'dinner', 'beach', 'rain', 'hate'], ['st', 'pub', 'anyon', 'tonight', 'not', 'want', 'lone', 'drunk', 'tonight'], ['time', 'not', 'friend', 'today'], ['hahah', 'sad', 'current', 'activ', 'though', 'room'], ['want', 'go', 'see', 'cab', 'realli', 'bad'], ['went', 'get', 'dog', 'vet', 'stitch', 'ear', 'charg', 'us', 'still', 'bleed', 'like', 'waterfal', 'everytim', 'move'], ['um', 'think', 'miss', 'jay', 'leno'], ['holi', 'crap', 'time', 'go', 'suck', 'away', 'life', 'wast', 'whole', 'week', 'wish', 'self', 'control'], ['three', 'hate', 'word', 'quot', 'see', 'monday', 'quot'], ['tri', 'catch', 'swarm', 'gone', 'roof', 'gabl', 'end', 'set', 'bait', 'hive', 'hope', 'best', 'moment'], ['ughh', 'serious', 'hung'], ['fuck', 'cold'], ['miss', 'danc', 'friend'], ['get', 'readi', 'go', 'ikea', 'alon', 'cuz', 'one', 'go'], ['not', 'know', 'write', 'anymor', 'mind', 'must', 'tire', 'past', 'midnight', 'alreadi', 'tour', 'philippin'], ['not', 'feel', 'good'], ['yeah', 'one', 'thing', 'hate', 'tweetdeck'], ['cat', 'anxious', 'watch', 'wild', 'turkey', 'back', 'think', 'eye', 'bunni', 'rabbit'], ['ok', 'finish', 'set', 'free', 'soo', 'mad', 'rite', 'not', 'end', 'like', 'not', 'want', 'bad', 'guy'], ['know', 'sprain', 'repetit', 'injuri'], ['appar', 'fall', 'apart', 'front', 'eye'], ['wish', 'could', 'get', 'sushi', 'deliv', 'work'], ['hate', 'hiccup'], ['beauti', 'weather', 'sick', 'babi', 'tanapoli'], ['miss', 'chat'], ['headach', 'headach', 'go', 'away', 'come', 'anoth', 'day'], ['time', 'go', 'slow'], ['wish', 'drem', 'could', 'come', 'true'], ['interview', 'pick', 'ny', 'probabl', 'forgot', 'blogtalk', 'radio'], ['bad', 'never', 'made', 'last', 'ten', 'year'], ['friday', 'night', 'good'], ['know', 'miss'], ['tire', 'bore', 'watch', 'movi', 'home', 'alon'], ['screw', 'goin', 'back', 'bed', 'go', 'tomorrow', 'sad'], ['hate', 'put', 'new', 'contact'], ['ask', 'anyon', 'possibl', 'get', 'photo', 'receiv', 'diploma', 'dad', 'camera', 'die', 'right', 'moment'], ['nt', 'abl', 'follow', 'anyon', 'come', 'itsuck'], ['huffi', 'not', 'good', 'day', 'night', 'life', 'poor', 'babi'], ['oh', 'god', 'not', 'end', 'danc', 'sob'], ['ohh', 'man', 'mom', 'got', 'bag', 'caramel', 'candi', 'thing', 'soo', 'good', 'go', 'get', 'fat'], ['hate', 'interview', 'go', 'horribl', 'today'], ['unfortunatley', 'tooth', 'kind', 'crown'], ['nt', 'abl', 'follow', 'anyon', 'come', 'itsuck'], ['followfriday', 'thank', 'still', 'not', 'even', 'close'], ['sad', 'lost', 'anoth', 'person', 'close', 'cancer'], ['piss', 'bluetooth', 'headset', 'batteri', 'last', 'cell', 'batteri', 'gg', 'moto', 'q'], ['ten', 'hour', 'ago', 'sleep', 'sorri'], ['blame', 'price', 'friday', 'replac', 'free', 'book', 'friday', 'not', 'want', 'rrtheatr', 'anymor'], ['back', 'sore', 'not', 'done', 'jump', 'last', 'night'], ['pleas', 'not', 'forget', 'us'], ['realli', 'miss', 'phone', 'not', 'wait', 'till', 'new', 'one', 'come'], ['pic', 'not', 'load', 'twitter'], ['sarci', 'usual'], ['english', 'exam', 'bleh', 'hate', 'vocab'], ['got', 'laid', 'stupid', 'economi'], ['bad', 'hair', 'day'], ['shout', 'mom', 'wakin', 'prematur', 'preciat'], ['holi', 'take', 'beat', 'unseed', 'back', 'doubl'], ['parti', 'move', 'next', 'weekend', 'weather'], ['read', 'mcdonald', 'actual', 'run', 'ad', 'econom', 'slowdown', 'great', 'lovin'], ['oh', 'lot', 'peopl', 'start', 'tweet', 'hope', 'could', 'still', 'read', 'multipl', 'tweet', 'philippin', 'tour', 'pleas'], ['realli', 'good', 'concept', 'mozconcept', 'realli', 'love', 'send', 'someth', 'mine', 'time'], ['kill', 'everyon', 'noth'], ['sorri', 'hear', 'mom', 'realli', 'suck'], ['ugh', 'car', 'got', 'stolen', 'sometim', 'yesterday', 'even', 'morn', 'husband', 'due', 'go', 'work', 'like', 'afford'], ['degre', 'tear', 'happi', 'moment'], ['happi', 'friday', 'weekend', 'everyon', 'tgif', 'noth'], ['sad', 'miss', 'opportun', 'valencia', 'new', 'video'], ['think', 'disord', 'stay', 'al', 'night', 'reason', 'n', 'sleep', 'al', 'day', 'suuk'], ['leav', 'nola', 'today', 'count', 'second', 'start', 'cri', 'love', 'place', 'much'], ['see', 'friend', 'coursework', 'weekend', 'work', 'happi'], ['stupid', 'red', 'hair', 'difficult', 'upkeep', 'manag', 'boo'], ['youtub', 'love', 'hd', 'video', 'well', 'mayb'], ['not', 'wait', 'get', 'hand', 'new', 'blackberri', 'one', 'die'], ['search', 'apart', 'kaohsiung', 'go', 'see', 'apart', 'next', 'tuesday', 'not', 'found', 'good', 'one', 'reason', 'rent'], ['site', 'blog', 'worst', 'year', 'tell', 'meh', 'fake'], ['key', 'crack', 'crap', 'kind', 'miss', 'old', 'phone', 'alreadi'], ['ahh', 'not', 'find', 'anyth', 'way', 'much', 'open'], ['hour', 'sinc', 'dog', 'put', 'sleep', 'rip', 'old', 'friend'], ['sore', 'head'], ['fun', 'not', 'school', 'wish', 'could', 'go', 'germani', 'like', 'hour', 'away', 'xoxo'], ['sicken', 'shoot', 'smh', 'prayer', 'famili'], ['gosh', 'bore', 'want', 'sleepp', 'work', 'kay', 'lt'], ['ugli', 'gray', 'outsid', 'even', 'san', 'diego', 'not', 'cold', 'get', 'us'], ['nope', 'anthoni', 'wreck', 'car', 'help', 'get', 'run'], ['not', 'believ', 'shit', 'spend', 'minut', 'snicker', 'ice', 'cream', 'seem', 'like', 'one', 'anymor'], ['throat', 'kill'], ['struggl', 'woke', 'run', 'sleep'], ['even', 'would', 'better'], ['roast', 'probabl', 'death'], ['gus', 'formal', 'known', 'world', 'ugliest', 'dog', 'die', 'miss', 'gus'], ['final', 'sunni', 'day', 'sick', 'go', 'outsid', 'play'], ['back', 'home', 'go', 'miss', 'everi', 'one'], ['freak', 'tire', 'like', 'bodi', 'refus', 'move'], ['hot', 'not', 'like'], ['hot', 'station', 'not', 'pack', 'train', 'pack', 'window', 'open', 'train', 'roast', 'sardin'], ['ugh', 'worri', 'math', 'test'], ['wish', 'weather', 'would', 'slight', 'less', 'raini', 'could', 'use', 'hot', 'tub'], ['hate', 'today'], ['ds', 'die', 'whatta', 'letdown'], ['ipod', 'taken', 'last', 'breath', 'truli', 'devast', 'lost', 'public', 'transport', 'companion'], ['come', 'garden', 'warm', 'beauti', 'not', 'much', 'revis', 'though'], ['tgif', 'resto', 'home', 'dayuumm', 'expens'], ['not', 'like', 'see', 'like', 'must', 'someth', 'make', 'smile'], ['probabl', 'not', 'kind', 'expens', 'work', 'peopl', 'weekend', 'work'], ['go', 'make', 'break'], ['take', 'bad', 'ass', 'dog', 'pet', 'sad'], ['chill', 'sofa', 'hate', 'vaccin', 'feel', 'soo', 'ill'], ['lost', 'game', 'point'], ['got', 'back', 'exam', 'sure', 'go', 'tri', 'get', 'ticket', 'il', 'divo', 'someon', 'not', 'want', 'us'], ['spent', 'hour', 'sit', 'sun', 'picnic', 'lunch', 'ice', 'cream', 'win', 'bbq', 'today'], ['take', 'twitter', 'break', 'cell', 'die'], ['littl', 'booboo', 'sick'], ['go', 'go', 'bed', 'ear', 'infect', 'complet', 'dizzi', 'yyuck', 'stomach', 'hurt', 'love'], ['love', 'mandi', 'moor', 'much', 'also', 'angela'], ['favorit', 'shirt', 'ruin', 'death', 'bleach', 'fb'], ['miss', 'get', 'quot', 'twilight', 'quot', 'jacket', 'modcloth', 'man', 'wish', 'not', 'long', 'monkey', 'arm', 'could', 'gotten', 'l', 'instead'], ['hii', 'text', 'day', 'not', 'respond'], ['think', 'would', 'like', 'phoeb', 'mom', 'friend', 'stop', 'movi', 'sad', 'part'], ['take', 'sad', 'whole', 'new', 'level'], ['yep', 'suck', 'thought', 'somewher', 'said'], ['sudden', 'rememb', 'memori', 'ohh', 'pleas'], ['googl', 'go', 'mean', 'doubleclick', 'goe', 'mean', 'not', 'get', 'work', 'done'], ['made', 'six', 'day', 'row', 'accid', 'hous', 'pop', 'took', 'strang', 'place', 'not', 'give', 'time'], ['quot', 'unfollow', 'quot', 'not', 'purpos', 'someth', 'fishi', 'go', 'tweet', 'deck', 'let', 'know', 'quot', 'unfollow', 'quot'], ['think', 'ipod', 'sick', 'not', 'want', 'connect'], ['one', 'want', 'sit', 'lunch', 'guess', 'buri', 'head', 'laptop', 'continu'], ['think', 'book', 'gone', 'forev', 'mourn', 'forev', 'shit'], ['oh', 'great', 'radio', 'disney', 'not', 'crash', 'latest', 'webkit', 'kid', 'run', 'hey', 'wait'], ['oh', 'snap', 'broke', 'windshield', 'replac', 'wiper', 'blade'], ['suck', 'mama'], ['failur'], ['miss', 'bed', 'sleepi'], ['babi', 'start', 'kindergarten', 'crazi', 'summer', 'go'], ['grr', 'hate', 'damn', 'near', 'forc', 'go', 'place', 'especi', 'sit', 'bus', 'entir', 'day', 'sit', 'hous', 'podunktown', 'va'], ['suck', 'still', 'hungri', 'suck', 'food'], ['got', 'star', 'pre', 'wash', 'fail', 'rinc'], ['earthlink', 'say', 'modem', 'dead', 'want', 'buy', 'new', 'one', 'sign', 'one', 'year', 'contract', 'argh'], ['frustrat', 'copi', 'across', 'usb', 'old', 'server'], ['actual', 'realli', 'miss', 'fabian', 'pretti', 'sad', 'sinc', 'talk', 'like', 'hour', 'ago', 'gosh', 'time', 'fli', 'miss', 'someon'], ['not', 'think', 'coffe', 'work', 'agre', 'tummi'], ['ben', 'amp', 'jerri', 'fail', 'got', 'email', 'free', 'ice', 'cream', 'say', 'click', 'redeem', 'coupon', 'click', 'get', 'error', 'messag'], ['almost', 'fell', 'asleep', 'hair', 'dryer', 'tire', 'feel', 'like', 'go', 'puke'], ['offici', 'done', 'high', 'school', 'sad', 'miss', 'alreadi', 'movi', 'later'], ['need', 'new', 'run', 'shoe', 'feet', 'complet', 'torn'], ['envi', 'everyon', 'aot'], ['unfortun', 'not', 'someon', 'squat'], ['know', 'alreadi', 'week', 'behind', 'ff', 'tri', 'get', 'one', 'done', 'today', 'call', 'work', 'earli', 'due', 'problem', 'busi', 'day'], ['said', 'ef', 'nose'], ['dreari', 'day', 'la', 'sunshin', 'go'], ['oh', 'hope', 'not', 'bad'], ['work', 'next', 'door', 'suck'], ['wait', 'go', 'period', 'get', 'final', 'omgg', 'soo', 'go', 'fail'], ['dang', 'ldbf', 'not', 'give', 'follow', 'friday', 'shot'], ['yes', 'found', 'come', 'greenvill', 'perfect', 'weekend', 'pictur', 'sidekick', 'go', 'shoot'], ['sharapova', 'lose', 'set'], ['sad', 'face', 'keep', 'crash', 'itun'], ['twitterberri', 'move', 'ubertwitt', 'suffer', 'bb', 'cach', 'error'], ['sorri', 'hear', 'news'], ['need', 'get', 'togeth', 'ricki', 'get', 'home', 'not', 'go', 'pleas', 'break', 'damn', 'bathroom'], ['oh', 'dead', 'muffin', 'sad'], ['tweetdeck', 'languish', 'api', 'hell'], ['wonder', 'great', 'weekend'], ['back', 'lancast', 'bore', 'alreadi', 'not', 'wait', 'start', 'work', 'miss', 'hel'], ['could', 'tell', 'go', 'angri', 'day'], ['eww', 'town', 'fair', 'tire', 'smell', 'horribl', 'make', 'sick'], ['hey', 'mar', 'miss', 'also', 'yeah', 'got', 'find', 'stupidstupid', 'school'], ['bird', 'live', 'find', 'way', 'kill', 'damn', 'thing', 'besid', 'extermin', 'vega', 'suck'], ['hate', 'sweeti', 'bad', 'day'], ['said', 'fuck', 'nose'], ['nobodi', 'like', 'feel', 'low', 'prioriti'], ['sorri', 'type', 'wrong', 'usual', 'type', 'someth', 'not', 'read', 'press', 'button'], ['competit', 'around', 'corner', 'not', 'take', 'slow', 'least', 'week', 'twist', 'ankl', 'back', 'jc', 'aw', 'pain'], ['not', 'get', 'anoth', 'one', 'alfi'], ['headach'], ['goodnight', 'love', 'attend', 'extra', 'class', 'school', 'tomorrow', 'urgh'], ['guy', 'soo', 'unfair', 'smh'], ['know', 'mark', 'still', 'one', 'favorit', 'boy', 'ever', 'nice', 'ador'], ['not', 'talk', 'sinc', 'last', 'day', 'school', 'right'], ['evermor', 'amp', 'end', 'fashion', 'rock', 'poor', 'foot', 'though', 'oww', 'injur', 'foot', 'not', 'good', 'sore', 'tomorrow', 'detail', 'follow', 'later'], ['ughh', 'studi', 'final', 'wish', 'could', 'go', 'prom'], ['waayi', 'hungri', 'oh', 'fyi', 'work', 'email', 'blah'], ['total', 'miss', 'chatroom', 'lame'], ['oh', 'god', 'moth', 'live', 'fuck', 'power', 'outlet', 'actual', 'powersquid'], ['sometim', 'forget', 'boy', 'feel'], ['not', 'one', 'long', 'time', 'expens'], ['hate', 'comput', 'much'], ['also', 'think', 'talk', 'okay', 'need', 'get', 'bed', 'way', 'miss', 'brother'], ['sinus', 'headach', 'suck', 'big', 'time'], ['think', 'boat', 'sail', 'friend', 'cco', 'month', 'ago', 'wish', 'luck', 'though'], ['oh', 'snap', 'broke', 'windshield', 'replac', 'wiper', 'blade'], ['know', 'love', 'nichola', 'braun', 'amp', 'think', 'make', 'okay', 'cameron', 'not', 'want', 'see', 'either'], ['damn', 'broke', 'day', 'guitar', 'hero', 'metallica', 'come', 'boo'], ['much', 'amaz', 'pervert', 'ruin'], ['stop', 'tweet', 'brain', 'not', 'function', 'want', 'cri', 'haha', 'philippin', 'tour', 'pleas', 'love', 'ya'], ['giver', 'life', 'reward', 'taker', 'giver', 'make', 'taker', 'possibl', 'get', 'appreci', 'get', 'taken'], ['serious', 'not', 'like', 'girl'], ['move', 'back', 'home', 'today', 'pro', 'obnoxi', 'closer', 'con', 'mpls', 'least', 'year'], ['dang', 'not', 'even', 'rememb', 'birthday', 'today'], ['not', 'think', 'sister', 'refusn', 'get', 'ticket', 'next', 'week'], ['not', 'eat', 'hot', 'pocket', 'anymor', 'without', 'think', 'jim', 'gaffigan'], ['suck', 'not', 'draw', 'tablet'], ['tri', 'get', 'year', 'hard', 'move', 'suck'], ['want', 'see', 'bad'], ['noo', 'quot', 'thehannabeth', 'crush', 'quot'], ['know', 'worth', 'shot', 'though'], ['truli', 'sad', 'cheap', 'littl', 'camcord', 'shot', 'crap'], ['hate', 'ram', 'use', 'host', 'virtual', 'machin', 'suck', 'much'], ['go', 'nap', 'n', 'chill', 'probabl', 'go', 'movi', 'later', 'ugh', 'headach', 'suck', 'ass', 'cloudi', 'day'], ['radio', 'x', 'go', 'sport', 'next', 'month', 'radio', 'dead', 'grandrapid'], ['sigh', 'guess', 'not', 'go', 'meet', 'today'], ['god', 'school', 'go', 'suck', 'ass', 'next', 'year'], ['guy', 'call', 'kid', 'earlier', 'today', 'hurt'], ['pm', 'ok', 'let', 'us', 'go', 'bowman', 'strategicclock', 'first', 'break', 'aargh', 'tire'], ['argu', 'byron', 'said', 'fat'], ['ugh', 'know', 'economi', 'depress'], ['hey', 'chutti', 'tire', 'travel', 'tomo', 'friday'], ['downfal', 'relax', 'later', 'mad', 'manual', 'labor', 'finish', 'clean', 'fold', 'work', 'blue'], ['wish', 'chicago'], ['huh', 'cri', 'forget'], ['slept', 'hrs', 'bodi', 'ach'], ['get', 'go', 'coffe', 'fun', 'hate'], ['aww', 'laavli', 'come', 'got', 'stun', 'wee', 'tan', 'l'], ['think', 'quot', 'not', 'girlfriend', 'quot', 'need', 'not', 'douchebag', 'right', 'not', 'mood', 'feel', 'neglect'], ['spent', 'last', 'two', 'week', 'attempt', 'grow', 'beard', 'scratch', 'fear', 'may', 'look', 'bit', 'rubbish'], ['left', 'inn', 'school', 'dang', 'straight', 'dead', 'lt'], ['home', 'exact', 'meant', 'home', 'also', 'comput', 'uh', 'brokt'], ['blah', 'car', 'repair', 'almost', 'dollar', 'shop', 'around', 'better', 'deal'], ['wish', 'go', 'still', 'come', 'nicol', 'preprom', 'not', 'wait', 'preprom'], ['hungri', 'not', 'appetit'], ['apart', 'empti', 'amp', 'day', 'sad', 'last', 'week'], [], ['start', 'eat', 'healthi'], ['feet', 'hate', 'feet', 'get', 'cold'], ['whoop', 'got', 'sunburnt'], ['aww', 'sorri', 'kind', 'fish'], ['ian', 'go', 'matine', 'tomorrow', 'plan', 'go', 'expens', 'night'], ['anoth', 'song', 'make', 'cri', 'cri', 'day', 'night', 'long'], ['dog', 'suffer', 'abandon', 'issu', 'think', 'move', 'without'], ['guy', 'stupid', 'idea', 'good', 'girl', 'actual', 'care', 'sad'], ['bus', 'stuck', 'traffic', 'go', 'late'], ['sleep', 'time', 'want', 'watch', 'gossip', 'girl', 'way', 'tire', 'goodnight'], ['swear', 'dog', 'anxieti', 'issu'], ['yes', 'fb', 'ah', 'miss'], ['eep', 'jealous', 'work', 'um', 'receiv', 'viva', 'broadcast', 'onlin', 'plz'], ['forgiv', 'hurt', 'one', 'love'], ['sickk', 'two', 'day', 'sinc', 'summer', 'start', 'suck', 'alreadi'], ['damp', 'weather'], ['ever', 'restaur', 'item', 'menu', 'lunch', 'decis', 'not', 'hard'], ['know', 'suck', 'master', 'procrastin', 'guy', 'not', 'much', 'fun', 'without'], ['internet', 'like', 'grade', 'fast', 'die'], ['oh', 'noon', 'not', 'know', 'make', 'get', 'min', 'lunch'], ['sorri', 'bearer', 'bad', 'news'], ['bore', 'realli', 'not', 'know'], ['uggh', 'school', 'bore', 'not', 'wait', 'year', 'stress', 'shoulda', 'stay', 'home', 'today'], ['not', 'happi', 'bunni'], ['melt', 'mayb', 'squar', 'inch', 'skin', 'ran', 'cold', 'water', 'min', 'two', 'ice', 'ice', 'melt', 'hurt'], ['honest', 'credit', 'phone', 'suck', 'not', 'even', 'text', 'peopl', 'see', 'happen', 'like', 'total', 'grrsvill'], ['stress', 'anyth', 'get', 'better', 'sigh'], ['get', 'upset', 'work', 'cus', 'bindz', 'j', 'bulli', 'not', 'let', 'go', 'duti', 'free', 'shop'], ['project', 'suck'], ['walk', 'puppi', 'downtown', 'also', 'mysteri', 'miss', 'cat', 'solv', 'hid', 'basement', 'near', 'two', 'day'], ['like', 'nt', 'gettin', 'hectic'], ['think', 'rate', 'ill', 'class', 'sigh'], ['noo', 'juli', 'go', 'back', 'home', 'noo'], ['eat', 'home', 'made', 'indian', 'food', 'boak', 'x'], ['cold', 'get', 'chill'], ['make', 'sad', 'peopl', 'phone', 'sick'], ['wish', 'van', 'come', 'round', 'miss'], ['miss'], ['far', 'vigor', 'prune', 'regret', 'remov', 'mani', 'cucumb', 'flower', 'cucumb', 'plant'], ['follow', 'follow', 'sorri', 'ahhahah', 'miss'], ['yes', 'think', 'stay', 'offic', 'slight', 'less', 'ridicul', 'hot'], ['tom', 'today', 'school', 'play', 'pov', 'break', 'almost', 'cri', 'show', 'sao', 'paulo', 'today', 'wish', 'could'], ['friday', 'friday', 'morn', 'ugh'], ['also', 'proof', 'number', 'life', 'imaginari', 'boyfriend', 'name', 'vinc', 'sad', 'friend', 'encourag'], ['oh', 'check', 'stock', 'port', 'market', 'unabl', 'buy', 'ticon', 'best', 'price'], ['burn', 'like', 'ginger', 'kid', 'sun', 'arm', 'red'], ['one', 'even', 'like', 'answer', 'life', 'last', 'night', 'pshh'], ['not', 'believ', 'tila', 'tequila', 'ct', 'not', 'know', 'upset'], ['get', 'one', 'field', 'vehicl', 'clean', 'look', 'like', 'action', 'hero', 'governor', 'want', 'give', 'anoth', 'furlough', 'day', 'nice'], ['oh', 'pw', 'done', 'wrong', 'sign', 'time', 'children', 'articl', 'neil', 'gaiman', 'teas', 'bea'], ['feel', 'low', 'depress', 'not', 'holiday'], ['jeff', 'not', 'get', 'visa', 'time', 'come', 'visit', 'sad', 'news', 'go', 'lapa', 'tonight', 'samba', 'night', 'away'], ['soo', 'tire', 'cubicl'], ['go', 'check', 'make', 'sure', 'fishi', 'dead', 'poor', 'fishi'], ['cheer', 'yell', 'shake', 'end', 'chant', 'suck', 'quot', 'x', 'quot', 'got', 'suspend', 'amp', 'give', 'public', 'apolog', 'lol'], ['blah', 'regist', 'coach', 'summer', 'eh', 'tourney', 'start', 'juli', 'vacat', 'fk', 'life', 'haha'], ['not', 'eat', 'lunch', 'wife', 'like', 'want'], ['goddamn', 'fuck', 'suck', 'hug'], ['miss', 'babi', 'day'], ['seem', 'huge', 'delay', 'deliv', 'pocket', 'queri'], ['lie', 'like', 'restaraunt', 'name', 'quot', 'garfield', 'quot', 'nowher', 'found'], ['suck', 'man', 'hope', 'weekend'], ['not', 'readi', 'babi', 'tomorrow', 'grow', 'fast'], ['not', 'look', 'forward', 'long', 'trip', 'morn', 'sick'], ['saw', 'june', 'make', 'think', 'jenni', 'miss', 'much'], ['know', 'weather', 'clear', 'suppos', 'nice', 'sat', 'sun'], ['tire'], ['not', 'bad', 'enough', 'time', 'last', 'night', 'bodi', 'decid', 'want', 'sick'], ['lol', 'freakingg', 'wors', 'looks', 'shirt', 'short', 'sandal', 'look', 'like', 'go', 'rain', 'outsid', 'boo', 'yahoo', 'wearther'], ['not', 'let', 'queer', 'boy', 'donat', 'blood'], ['half', 'hour', 'work', 'wish', 'someth'], ['freez', 'cold', 'not', 'function', 'right', 'type', 'weather', 'starv', 'max'], ['leg', 'hurt', 'stand', 'day'], ['run', 'thing', 'say', 'start', 'think', 'hate', 'flood', 'inbox', 'quot', 'philippin', 'tour', 'quot'], ['everi', 'time', 'succeed', 'code', 'get', 'quot', 'sorri', 'credit', 'card', 'declin', 'quot'], ['love', 'avail', 'dear', 'would', 'love', 'help', 'convert'], ['damn', 'wish', 'go', 'found', 'late', 'get', 'wrangler', 'kid', 'miss', 'mountainjam', 'everi', 'year'], ['ohoh', 'miss', 'tweet', 'go', 'stay', 'awak', 'night', 'see', 'announc', 'damn', 'time', 'differ'], ['tweet', 'alli', 'court', 'last', 'time', 'sad', 'sad', 'moment'], ['man', 'suck'], ['weird'], ['portugues', 'nation', 'librari', 'could', 'use', 'also', 'right', 'seem', 'stuck', 'somewher', 'circa', 'exampl'], ['came', 'back', 'watch', 'termin', 'salvat', 'cathay', 'not', 'much', 'action', 'feel', 'sorri', 'marcus', 'though'], ['scratchi', 'scratchi', 'throat', 'warm', 'fluid', 'need'], ['aw', 'xx'], ['saw', 'sun', 'blink', 'gone'], ['ahh', 'close'], ['cankl', 'sore'], ['grr', 'stupid', 'meebo', 'disconnect', 'everi', 'second'], ['edit', 'crap', 'school', 'drag', 'give', 'lol', 'ill', 'home', 'want', 'go', 'home', 'vida', 'bore', 'right'], ['miss', 'old', 'ha', 'ha', 'not', 'tell', 'person', 'name'], ['realli', 'wish', 'spare', 'cash', 'buy', 'new', 'punch', 'wii'], ['wow', 'r', 'watch', 'outsid', 'smelli', 'english'], ['not', 'even', 'tell', 'much', 'hair', 'dresser', 'piss', 'clue', 'wtf', 'ask', 'expect', 'worst'], ['neighborhood', 'gas', 'station', 'gone', 'kaput', 'busi', 'conveni', 'trip', 'ice', 'whatev', 'mile', 'travel'], ['freez', 'math', 'class'], ['last', 'day', 'la', 'sad'], ['gah', 'buddi', 'k', 'must', 'hang', 'person', 'right', 'miss', 'along', 'parker', 'mcphee'], ['go', 'home', 'get', 'home', 'black', 'berri', 'woo', 'hoo', 'get', 'see', 'presten', 'lt'], ['go', 'home', 'get', 'home', 'black', 'berri', 'woo', 'hoo', 'get', 'see', 'presten', 'lt'], ['work', 'freakin', 'comput', 'tri', 'save', 'stuff', 'harddriv', 'seem', 'fail', 'miser'], ['oh', 'hate', 'friday', 'even'], ['take', 'care', 'sick', 'children'], ['get', 'hair', 'cut', 'todayi', 'nerrvous'], ['love', 'love', 'player', 'come', 'visit', 'miss', 'girl'], ['oh', 'forget', 'thing', 'see', 'ahah', 'hate', 'creep'], ['gave', 'inspir', 'last', 'updat'], ['went', 'realli', 'long', 'cycl', 'ride', 'mum', 'brother', 'bff', 'han', 'today', 'bum', 'ach'], ['feel', 'ucki', 'today', 'need', 'defens', 'vitamin', 'water', 'not', 'want', 'sick', 'more'], ['oh', 'noess', 'senior', 'last', 'day', 'howev', 'tickl', 'till', 'floor', 'giggl', 'made', 'total', 'worth', 'plus', 'senior', 'sandwhich'], ['ask', 'mum', 'bout', 'go', 'tommorow', 'laugh', 'face', 'lmao'], ['ugh', 'not', 'breath', 'right', 'today'], ['think', 'control', 'thought'], ['man', 'not', 'go', 'sunday', 'help', 'day', 'piano', 'recit', 'suck'], ['wow', 'last', 'hour', 'twitter', 'yet', 'sent', 'twitter', 'guy', 'bare', 'w'], ['got', 'hair', 'cut', 'great', 'stupid', 'gum'], ['unlock', 'decad', 'not', 'lucki', 'never', 'got', 'ta', 'make', 'luck', 'involv'], ['mm', 'nando', 'good', 'topshop', 'rule', 'actual', 'devast', 'not', 'come', 'london', 'show', 'quot', 'quot', 'bail'], ['regrettin', 'decis', 'made'], ['could', 'not', 'rememb', 'differ', 'cord', 'meant', 'lost', 'half', 'leav', 'graduat', 'anyway'], ['think', 'revis', 'garden', 'morn', 'without', 'sunscreen', 'not', 'best', 'idea', 'oucch'], ['suck', 'major', 'not', 'still', 'golf', 'tournament'], ['mayb', 'first', 'mistak', 'not', 'everyon', 'cool', 'brown', 'nose', 'moment'], ['burn', 'ohh', 'xoxo'], ['hate', 'arriv', 'employe', 'park', 'lot'], ['work', 'suck', 'big', 'time'], ['say', 'goodby', 'good', 'trust', 'friend', 'today', 'goodby', 'free', 'sky', 'tv', 'best', 'friend', 'anyon', 'could'], ['work', 'not', 'feel', 'like', 'bein', 'dis', 'bitch', 'today'], ['ouuhh', 'not', 'cri', 'feel', 'sad', 'right'], ['new', 'babi', 'well', 'attempt', 'quot', 'paint', 'quot', 'weekend'], ['crappi', 'day'], ['urg', 'go', 'got', 'money'], ['well', 'normal', 'day', 'would', 'alreadi', 'done', 'not', 'normal', 'day', 'mean', 'offic', 'till', 'late'], ['back', 'vet', 'not', 'good'], ['love', 'not', 'leav'], ['came', 'home', 'get', 'ratti', 'shop', 'staff', 'blister', 'foot', 'meh'], ['went', 'get', 'car', 'inspect', 'sticker', 'got', 'gigant', 'red', 'r', 'one', 'keep', 'pile', 'take', 'not', 'worri', 'ok'], ['laundri', 'instead', 'sit', 'darn', 'laundri', 'keep', 'mock'], ['lucki', 'beggin', 'juri', 'duti', 'not', 'ever', 'send', 'notic', 'notic', 'peopl', 'address'], ['lost', 'without', 'laptop', 'break', 'today', 'made', 'even', 'wors', 'big', 'boss', 'skipton', 'show', 'today'], ['not', 'get', 'mine', 'keep', 'get', 'error'], ['miss'], ['ano', 'pa', 'bang', 'aasahan', 'ko', 'sa', 'iyo', 'never', 'fail', 'fail'], ['yes', 'sober', 'hahaha', 'tanghal', 'tapat', 'dude', 'haha', 'wild', 'not', 'knoww', 'plan', 'plan', 'go', 'us'], ['best', 'could', 'proof', 'crack', 'lol'], ['talk', 'vincent', 'miss', 'baad'], ['would', 'premier', 'avatar', 'footag', 'not', 'also', 'better', 'hang'], ['suck'], ['mourn', 'venus', 'third', 'round', 'loss'], ['ugh', 'stupid', 'teenag', 'show', 'peac', 'time'], ['get', 'new', 'bottom', 'totem', 'pole'], ['sick', 'like', 'day'], ['wow', 'atleast', 'three', 'two', 'month', 'go', 'go', 'away'], ['sorri', 'hear'], ['panera', 'not', 'nice', 'iphon'], ['dear', 'go', 'fuck', 'kiddo', 'go', 'sit', 'noth', 'awesom', 'shop', 'lt'], ['hell', 'rain', 'hate', 'rain'], ['ok', 'guess', 'need', 'actual', 'work', 'long', 'pm', 'oh', 'may', 'ditch', 'earli'], ['miss', 'hope', 'come', 'back'], ['hug', 'hubbi', 'probabl', 'place', 'come', 'septemb'], ['ew', 'sorri', 'zach'], ['wow', 'mosquito', 'backyard', 'suck', 'cough', 'half', 'death', 'middl', 'night', 'keep', 'cassidi', 'awak'], ['go', 'eat', 'someth', 'feel', 'horrid', 'need', 'hug'], ['akh', 'woke', 'miss', 'much', 'say', 'hassan', 'speech'], ['got', 'wiff', 'pazik', 'fart'], ['wow', 'person'], ['weekend', 'cuzzo', 'vivi', 'not', 'stand', 'leav', 'week'], ['back', 'hurt', 'meant', 'go', 'tonight', 'poor', 'rik'], ['bah', 'made', 'hungri'], ['play', 'hooki', 'work', 'go', 'see', 'hope', 'get', 'along'], ['geometri', 'like', 'said', 'not', 'would', 'graduat', 'feel', 'pain', 'hun'], ['snotti', 'nose', 'poor', 'chest', 'not', 'good'], ['wish', 'dog'], ['hate', 'get', 'put', 'steroid', 'face'], ['followfriday', 'thank', 'much', 'behind', 'still', 'half'], ['refus', 'accept', 'us', 'holiday', 'head', 'woodi', 'longboard', 'diner', 'um', 'hove'], ['manchest', 'wayi', 'busi', 'warm', 'today', 'also'], ['lost', 'friend', 'not', 'anyth'], ['bad', 'day'], ['wait', 'wake', 'hazin', 'sad'], ['gut', 'not', 'go', 'tonight'], ['boo', 'not', 'sleep', 'say', 'hi', 'random', 'peopl'], ['feel', 'mad', 'sorri', 'seck', 'make', 'feel', 'better', 'go', 'fashion', 'show'], ['kind', 'like', 'not', 'car', 'situat', 'late', 'prevent', 'particip', 'due', 'carless'], ['ooh', 'comput', 'make', 'playlist', 'come', 'onlin', 'pls', 'bore', 'block', 'everyon'], ['twenti', 'minut', 'fuck', 'call', 'would', 'think', 'person', 'would', 'mention', 'alreadi', 'troubl', 'ticket', 'investig', 'issu'], ['murphi', 'law', 'sorri', 'comput', 'not', 'cooper', 'lot', 'work', 'kid'], ['much', 'pm', 'not', 'think', 'go', 'get', 'done'], ['birthday', 'weekend', 'shit', 'alreadi', 'head', 'drive', 'atl', 'tonight'], ['come', 'worst', 'possibl', 'thing', 'happen', 'not', 'swine', 'flu', 'not', 'aid', 'rrod'], ['toom', 'tour', 'philippin', 'pleeas', 'risk', 'health', 'get', 'repli', 'haha'], ['god', 'hate', 'scari', 'movi', 'not', 'wimpi'], ['today', 'not', 'go', 'way', 'plan', 'earli', 'lunchbreak', 'amp', 'may', 'not', 'back', 'til', 'mon', 'weekend', 'go', 'fun', 'friend', 'though'], ['not', 'like', 'new', 'termin', 'movi', 'man'], ['worri', 'cousin', 'son'], ['oh', 'sorri', 'feel', 'pain', 'not', 'kill', 'either', 'alway', 'one', 'find'], ['crave', 'cinnamon', 'toast', 'crunch', 'cold', 'today'], ['damn'], ['aww', 'sri', 'yesterday'], ['ahh', 'hate', 'sick', 'watch', 'aton', 'sleep'], ['excit', 'today', 'still', 'much'], ['omg', 'head', 'still', 'hurt', 'need', 'get', 'comic', 'today', 'got', 'hurri', 'lol'], ['burn', 'tongu'], ['sad', 'cuz', 'mommi', 'leav', 'indi', 'today'], ['fun', 'fill', 'even', 'funer', 'home', 'joy'], ['done', 'focus', 'summer', 'life', 'hard'], ['wish'], ['miss', 'hello', 'kitti', 'not', 'enough', 'time', 'oh', 'well'], ['ah', 'sorri', 'play', 'game', 'psp', 'friend', 'tonight', 'return', 'ago'], ['womp', 'womp', 'woomp'], ['well', 'guess', 'like', 'shit', 'cure', 'crave', 'get', 'mcskillet', 'want'], ['haavent', 'read', 'paper', 'yet', 'magic', 'loss', 'get', 'watch', 'game', 'last', 'night', 'know', 'lost'], ['feel', 'sick', 'oreo', 'cheesecak', 'milkskak', 'lol'], ['bum', 'maxi', 'dress', 'think', 'cute', 'summer', 'quot'], ['shit', 'aw', 'could', 'not', 'believ', 'first', 'sad'], ['head', 'sam', 'adam', 'breweri', 'not', 'sampl', 'get'], ['soo', 'loney'], ['hope', 'migrain', 'not', 'stick', 'around', 'long'], ['blerrgh', 'hot', 'sticki'], ['sunburn', 'ouch'], ['say', 'hello', 'marina', 'green', 'could', 'not', 'particip', 'barcelona', 'weeken'], ['tri', 'tri', 'past', 'learn', 'cockney', 'sad', 'near', 'imposs', 'find', 'book', 'thing'], ['travesti'], ['freakin', 'day', 'would', 'look', 'forward'], ['comput', 'got', 'screw', 'hell', 'virus', 'finish', 'wipe', 'drive', 'reinstal', 'window', 'xp', 'want', 'mac'], ['home', 'tomorrow', 'run', 'spin', 'time', 'chiropractor', 'laundri', 'shop', 'visit', 'famili', 'miss', 'nathan'], ['yeah', 'not', 'realli', 'feel', 'either', 'cours', 'not', 'like', 'movi', 'line', 'wish', 'get', 'anim'], ['left', 'school', 'new', 'dress', 'broke', 'strap', 'rip'], ['pup', 'would', 'love', 'save', 'live', 'saturday', 'night', 'although', 'know', 'miss', 'blast'], ['noo', 'fb', 'good', 'love', 'convers'], ['wish', 'rain', 'would', 'stay', 'away', 'go', 'pool'], ['got', 'key', 'new', 'flat', 'gorgeous', 'weather', 'weekend', 'spend', 'quot', 'pack', 'quot'], ['look', 'though', 'sick', 'littl', 'friend'], ['cool', 'dang', 'ihav', 'clean', 'room', 'lol', 'good', 'luck', 'job', 'gurl'], ['wzzup', 'derrek', 'r', 'start', 'band', 'practic', 'jayk', 'skylar', 'leav', 'california', 'today', 'lucki'], ['make', 'boyfriend', 'look', 'differ', 'cute', 'matter', 'lt'], ['miss', 'babyy'], ['workk', 'yay'], ['wish', 'take', 'care'], ['spent', 'much', 'today', 'tube', 'journey', 'alway', 'take', 'soo', 'long', 'brace', 'thursdayi'], ['yea', 'nice', 'weekend'], ['lost', 'first', 'field', 'note', 'notebook', 'page', 'fill', 'rip', 'fieldnot'], ['hate', 'not', 'abl', 'see', 'monitor', 'minut', 'sun', 'not', 'blind'], ['not', 'kno', 'wat', 'er', 'saddo'], ['reason', 'not', 'get', 'boc'], ['look', 'one', 'year', 'anniversari', 'mane', 'um', 'sad'], ['cri', 'like', 'babi', 'put', 'cat', 'year', 'ago', 'tear', 'happi', 'watch'], ['would', 'love', 'ride', 'superman', 'right'], ['ohh', 'make', 'sens', 'need', 'reread', 'lotr', 'trilog', 'lost', 'three', 'book', 'long', 'time', 'ago', 'sad'], ['aww', 'read', 'tweet', 'not', 'sure', 'later', 'either', 'work', 'feel', 'us'], ['brother', 'wander', 'around', 'hous', 'underwear', 'charm', 'sister', 'femal', 'guest', 'sure'], ['not', 'want', 'lose', 'wisdom', 'teeth', 'make', 'wise', 'soon', 'without', 'trace', 'wisdom'], ['photo', 'still', 'hook', 'edit', 'comp', 'know', 'guy', 'miss', 'artwork', 'decid'], ['damn', 'stephan', 'not', 'even', 'feel', 'sorri', 'work'], ['not', 'like', 'bang', 'want', 'hair', 'back'], ['oh', 'good', 'pierc', 'bottom', 'lip', 'right', 'grade', 'pierc', 'dress', 'code'], ['sad', 'work', 'today', 'not', 'win', 'ticket'], ['might', 'swine', 'flu', 'haha', 'got', 'flu'], ['sun', 'burn', 'arm', 'look', 'angri', 'parti', 'tonight', 'though', 'babe', 'woop'], ['walk', 'class', 'hate', 'not', 'mine'], ['need', 'get', 'good', 'hard', 'workout', 'today', 'work', 'feel', 'like', 'slack', 'good'], ['poor', 'butterfli', 'dead'], ['love', 'tell', 'not', 'match', 'shirt', 'perfect', 'not', 'move', 'pleas', 'suppos', 'without'], ['one', 'experienc', 'problem', 'log', 'digit', 'point', 'forum'], ['sunni', 'hot', 'london', 'today', 'sit', 'offic', 'crank', 'spreadsheet'], ['jdubb', 'funki', 'guess', 'neglect'], ['bsnl', 'stupid', 'net', 'went', 'without', 'email', 'whole', 'day'], ['ehh', 'carnt', 'stand', 'hot', 'weather'], ['wake', 'appear', 'miss', 'not', 'much'], ['ugh', 'feel', 'sick', 'stomach', 'five', 'hour', 'work', 'go'], ['thank', 'sana', 'matanggap', 'ako'], ['nah', 'act', 'like', 'dick', 'show', 'suck', 'last', 'night'], ['seen', 'hope', 'ebay', 'replac', 'work', 'take', 'bit', 'anyway', 'lol'], ['aww', 'sad', 'miss', 'see', 'guy', 'big', 'screen'], ['hour', 'fifteen', 'drive', 'left', 'bore', 'ate', 'half', 'food', 'alreadi'], ['back', 'park', 'sunburnt', 'not', 'wait', 'go', 'get', 'sober', 'jst', 'wnt', 'b', 'fun'], ['ouch', 'hate', 'happen'], ['ik', 'feel', 'soo', 'bad'], ['hell', 'go', 'last', 'night', 'morn', 'suck', 'move', 'tonight'], ['need', 'jb', 'dread', 'fact', 'retail', 'summer'], ['exhaust', 'new', 'song', 'quot', 'one', 'day', 'quot', 'myspac', 'check'], ['not', 'research', 'traffic', 'beauti', 'system', 'twitter', 'approx', 'mine', 'grab'], ['start', 'get', 'sad'], ['feel', 'like', 'death', 'evil', 'headach', 'need', 'pack', 'drive', 'parent', 'bum'], ['big', 'header', 'folio', 'hour', 'sale', 'yet', 'realli', 'impati', 'lol'], ['suck'], ['someon', 'broke', 'car', 'big', 'time', 'realli', 'bad', 'day'], ['heater', 'room', 'day', 'school', 'amp', 'boil'], ['yeah', 'got', 'text', 'well', 'summer', 'break', 'week', 'far', 'bore', 'watch', 'tenni', 'match'], ['think', 'florida', 'heat', 'much', 'reluct', 'take', 'place'], ['not', 'believ', 'thought', 'morn', 'shift', 'today', 'told', 'alex', 'could', 'take', 'airport', 'flight', 'shift'], ['home', 'sore', 'feet', 'sad', 'sale', 'granda', 'hous', 'went', 'miss'], ['haha', 'yeah', 'improv', 'nite', 'big', 'time', 'make', 'skype', 'call', 'soon', 'though', 'tear', 'away'], ['middl', 'breakfast', 'school', 'get', 'migrain', 'week', 'mayb', 'one', 'never', 'went', 'away'], ['remind', 'good', 'speak', 'not', 'postur', 'check', 'awhil'], ['alcohol', 'make', 'tire', 'miss', 'want', 'much', 'hurt'], ['twittin', 'go', 'bad', 'get', 'phone', 'lost', 'like', 'shit'], ['realli', 'wish', 'spoil'], ['think', 'juz', 'miss', 'last', 'bus', 'need', 'walk', 'home', 'sia'], ['smell', 'bad', 'garlic'], ['right', 'side', 'earphon', 'stop', 'work', 'sudden', 'need', 'buy', 'new', 'one'], ['last', 'night', 'cork', 'come', 'tomorrow', 'not', 'even', 'rememb', 'doubl', 'sad', 'face', 'haha', 'word', 'lili', 'allen', 'not', 'fair'], ['curs', 'server', 'restrict', 'wait', 'get', 'home'], ['oh', 'ouch', 'hurt', 'damn', 'wash', 'machin', 'get', 'lt', 'lt', 'gt', 'gt'], ['momma', 'martini', 'went', 'food', 'shop', 'without'], ['internet', 'connect', 'ruin', 'great', 'scrabbl', 'game'], ['not', 'think', 'twitpic', 'work'], ['soo', 'close', 'finish', 'exam', 'role', 'monday', 'life', 'back'], ['father', 'stay', 'home', 'confer', 'call', 'sorri'], ['think', 'bugger', 'mobil', 'ack', 'stubborn', 'ars', 'refus', 'get', 'new', 'one'], ['weekend', 'get', 'close', 'bad', 'stuck', 'north', 'hope', 'abl', 'get', 'next', 'weekend', 'real', 'life', 'fun'], ['ala', 'best', 'offer', 'small', 'poni', 'row', 'boat'], ['record', 'sent', 'peopl', 'obvious', 'meant', 'get', 'not', 'feel', 'bad'], ['not', 'count'], ['lost', 'nintendog', 'upset'], ['not', 'believ', 'gorgeous', 'weather', 'today', 'amp', 'spend', 'work'], ['geez', 'hate', 'bein', 'work', 'till', 'day', 'like', 'feel', 'like', 'wast', 'lovley', 'day'], ['bad', 'headach'], ['know', 'sad', 'back', 'auto', 'industri', 'not', 'understand', 'iphon', 'would', 'chang', 'live'], ['three', 'hour', 'hair', 'still', 'not', 'straight'], ['sorri', 'found', 'member', 'preview', 'sold', 'awhil', 'open', 'noon', 'general', 'public'], ['exhaust', 'sick', 'face', 'greenish'], ['wait', 'aaron', 'get', 'town', 'leav', 'work', 'boo'], ['not', 'feel', 'like', 'babysit', 'want', 'go', 'gym', 'weird', 'know', 'miss', 'zack'], ['hope', 'ami', 'okai'], ['stress', 'sad', 'pugsli', 'miss', 'hope', 'hes', 'okay', 'stuck', 'otrip', 'not', 'look', 'someon', 'post', 'pic', 'fb'], ['unfortun'], ['bro', 'martin', 'need', 'repent', 'pam', 'said', 'go', 'get', 'meet', 'last', 'wknd'], ['bleargh', 'never', 'clean', 'much', 'hous', 'want', 'work', 'matter', 'earli', 'wake', 'today', 'sink', 'laundri'], ['young', 'ladi', 'local', 'chines', 'take', 'order', 'said', 'cute', 'inde', 'piti', 'probabl', 'twice', 'age'], ['inconsider'], ['everyon', 'sad', 'touch', 'rule', 'still', 'get', 'see', 'us', 'get'], ['yeah', 'man', 'brought', 'back', 'market', 'coupl', 'year', 'scarc'], ['not', 'depress', 'stay', 'weekend', 'someon', 'els', 'wait', 'kid'], ['sorri', 'not', 'impress', 'slightest', 'not', 'eat', 'like', 'sadden', 'confus'], ['omg', 'lg', 'touchscreen', 'fone', 'pile', 'shite', 'roll', 'new', 'contract', 'month'], ['cold'], ['saw', 'poni', 'use', 'live', 'front', 'hous', 'develop', 'cush', 'diseas', 'though'], ['confus', 'flippin', 'expens'], ['head', 'park', 'kid', 'hope', 'not', 'rain', 'cloudi'], ['fuck', 'hate', 'strawberri', 'run', 'special', 'k'], ['get', 'clean', 'tue', 'get', 'tooth', 'pull', 'thur', 'got', 'schedul', 'bridg', 'might', 'need', 'root', 'canal', 'ugh'], ['not', 'invit', 'get', 'togeth', 'either', 'playin', 'secur', 'told', 'us', 'quiet'], ['not', 'go', 'abl', 'talk'], ['damnn', 'day', 'came', 'fast', 'cherish', 'moment'], ['michael', 'scholfield', 'dead', 'sorri'], ['luck'], ['final', 'got', 'wash', 'hair', 'feel', 'much', 'better', 'got', 'dri', 'effort'], ['someon', 'fuck', 'birthday', 'sex', 'basic', 'said', 'song', 'nigga', 'selfish', 'listen', 'song', 'care'], ['though', 'cloth', 'collect', 'design', 'togeth', 'visual', 'art', 'not'], ['ha', 'potenti', 'loss', 'finger', 'think', 'get', 'po', 'charg', 'not', 'full', 'proof'], ['found', 'bug', 'driver', 'not', 'handl', 'high', 'packet', 'per', 'second', 'gt'], ['gross', 'hot', 'cotton', 'everywher', 'hello', 'allergi'], ['gut', 'not', 'get', 'ticket', 'pink'], ['sorri', 'definit', 'get', 'weekend'], ['still', 'tire', 'due', 'late', 'night', 'work', 'b', 'earli', 'work', 'bad', 'time'], ['wish', 'could', 'go', 'got', 'work'], ['move', 'block', 'street', 'goodby', 'hardwood', 'floor'], ['look', 'time', 'sunk', 'total', 'shock', 'honest'], ['sore', 'ultim', 'tri', 'figur', 'pay', 'school', 'next', 'semest'], ['miss', 'loverboy', 'much'], ['realli', 'hope', 'see', 'tweet', 'sent', 'much', 'swear', 'tour', 'philippin', 'pleas', 'pray'], ['bad', 'programm', 'compani'], ['soo', 'sad', 'miss', 'san', 'diego'], ['oow', 'look', 'pain', 'poor', 'bb'], ['time', 'get', 'work', 'alreadi', 'start', 'day', 'bad', 'miss', 'screen', 'morn', 'el', 'capitan'], ['done', 'absolut', 'noth', 'day', 'piti', 'not', 'go', 'got', 'work', 'boo'], ['noo', 'want', 'watch', 'comet', 'not', 'want', 'go', 'workk'], ['download', 'fail', 'phone', 'not', 'like', 'phone'], ['not', 'think', 'not', 'peopl', 'nice', 'would', 'anyon', 'think', 'ok', 'say', 'much', 'less', 'make', 'movi'], ['inoo', 'not', 'want', 'go', 'meet', 'kyle', 'obsess', 'not', 'fair'], ['want', 'rain', 'today', 'like', 'full', 'thunderstorm', 'style', 'probabl', 'not'], ['better', 'come', 'back', 'soon', 'lt'], ['day', 'go', 'freedom', 'damn', 'xam'], ['play', 'good', 'big', 'babi'], ['drag', 'hell', 'look', 'freakin', 'scari', 'watch', 'termin', 'realli', 'good'], ['thank'], ['everybodi', 'sick'], ['omg', 'wtf', 'porn', 'site', 'follow'], ['school', 'bore', 'want', 'go', 'home'], ['hey', 'socialmediatv', 'new', 'record', 'show', 'viewabl', 'later', 'thank', 'social', 'media', 'tv', 'live', 'gt'], ['got', 'mcdonald', 'surpis', 'not', 'popular', 'drunk', 'food', 'option', 'suck', 'diner', 'not', 'anymor'], ['oh', 'god', 'sad', 'day'], ['known', 'someth', 'would', 'go', 'wrong', 'van', 'problem', 'oh', 'pleas', 'tell', 'not', 'cost', 'us', 'arm', 'leg'], ['aww', 'teach', 'son', 'one', 'manner', 'mani', 'boy', 'lack'], ['tri', 'height', 'small', 'car', 'not', 'much', 'fun', 'special', 'bumbpi', 'countri', 'road', 'haha'], ['hug', 'not', 'abl', 'shag', 'crush', 'anymor', 'x'], ['comp', 'delet', 'half', 'app'], ['thirti', 'minut', 'turn', 'three', 'hour', 'oop'], ['miss', 'one', 'would', 'anyth', 'spend', 'min', 'one', 'use', 'say', 'tell'], ['poke', 'run', 'away', 'want', 'sugar'], ['know', 'suck'], ['sadden', 'husker', 'internet'], ['argh', 'sorri', 'thorn', 'side', 'sinc', 'got', 'rude', 'mouthi', 'etc'], ['saw', 'bird', 'slowli', 'die', 'right', 'next'], ['fell', 'go', 'hous', 'not', 'fun'], ['bsg', 'might', 'made', 'cri'], ['decid', 'studi', 'finger', 'throat', 'make', 'gage', 'nois', 'hate', 'mfs'], ['omg', 'got', 'sleep', 'neighbor', 'build', 'deck', 'amp', 'start', 'tire', 'feel', 'like', 'took', 'benadryl'], ['gym', 'day', 'hope', 'enjoy', 'last', 'friday', 'twenti'], ['sad', 'everyon', 'leav'], ['not', 'happi', 'fact', 'back', 'hurt', 'today'], ['bore', 'work', 'ridicul', 'saturday', 'go', 'suck', 'class', 'morn'], ['sheesh'], ['ichigo', 'good', 'ping', 'amp', 'poop', 'outsid', 'not', 'use', 'fact', 'not', 'sister', 'lone', 'puppi'], ['fail', 'class', 'algebra', 'damn', 'shit', 'hard'], ['hate', 'sick', 'especi', 'one', 'pamper'], ['mcfonald', 'roulett', 'lose', 'forgot', 'mygril', 'snack', 'wrap'], ['sorri', 'littl', 'disturb', 'sapinsidetrack', 'palo', 'alto', 'went', 'debug', 'session', 'line', 'unmut'], ['realli', 'get', 'sick', 'ugh', 'fuckin', 'nurs', 'home', 'lay', 'bed', 'might', 'go', 'run', 'later', 'watch', 'movi', 'austin', 'sara', 'amp', 'sami', 'left'], ['peopl', 'follow', 'peopl', 'follow', 'pleas', 'x'], ['not', 'trap', 'work', 'day'], ['pinkpop', 'weekend', 'amp', 'got', 'ticket', 'mean', 'bruce', 'springsteen', 'oh', 'well', 'wweekkeenndd'], ['may', 'gray', 'coldplay', 'nice'], ['yay', 'train', 'late', 'start', 'min', 'late', 'arriv', 'london', 'first', 'place'], ['want', 'good', 'breakfast', 'school', 'wiggiti', 'whack'], ['nice', 'bea', 'bum', 'not', 'make', 'tri', 'get', 'togeth', 'near', 'futur'], ['feel', 'like', 'dye', 'right'], ['sit', 'bed', 'not', 'want', 'go', 'work'], ['guess', 'got', 'wow', 'imposs'], ['never', 'thought', 'would', 'say', 'miss', 'job', 'commut', 'cubicl', 'free', 'food', 'amp', 'coffe', 'downtown', 'quit'], ['cheer', 'wish', 'font', 'play'], ['twitter', 'look', 'funni', 'someon', 'help'], ['ugh', 'tri', 'respond', 'messag', 'miss', 'town', 'could'], ['not', 'feel', 'well', 'got', 'dentist', 'appoint', 'later'], ['need', 'wash', 'cat', 'uncool'], ['damn', 'rhiniti', 'boohoo', 'poor', 'nose'], ['meet', 'yay', 'work'], ['back', 'work', 'migrain', 'linger', 'not', 'wait', 'weekend'], ['ugh', 'soo', 'much', 'work', 'today', 'tri', 'make', 'train', 'game', 'look', 'like', 'hour', 'sunday', 'offic'], ['not', 'ticket', 'boyfriend', 'not', 'might', 'rain', 'lt', 'though'], ['damn', 'lot', 'messag', 'sweet', 'quot', 'gt', 'yeah', 'sayang'], ['know', 'neck', 'jack', 'forc', 'pay', 'park', 'not', 'turn', 'head', 'parallel', 'park', 'free', 'space'], ['day', 'go', 'well', 'far', 'meet', 'though'], ['miss', 'guy'], ['outlook', 'not', 'good'], ['studi', 'bullshit', 'econ', 'test'], ['bore', 'bff', 'not', 'want', 'hang'], ['instead', 'lay', 'degre', 'got', 'give', 'fourth', 'grader', 'hour', 'fml'], ['dream', 'brought', 'king', 'island', 'pretti', 'sweet', 'bum', 'poughkeepsi', 'hour'], ['not', 'want', 'exam', 'next', 'week'], ['realli', 'disappoint', 'not', 'make', 'bloomington', 'launch', 'parti', 'tonight', 'around', 'check'], ['realli', 'not', 'right', 'sick', 'newt', 'freezer', 'awe', 'x'], ['not', 'singl', 'one', 'lol', 'would', 'say', 'creativ', 'bright', 'fun', 'avatar', 'depth', 'ff'], ['tire', 'sick', 'time'], ['dog', 'rosco', 'die', 'yestarday', 'sad'], ['suck'], ['go', 'hate', 'long', 'drive', 'want', 'get', 'paper', 'work'], ['still', 'devast', 'manchest', 'unit', 'lose', 'ucl', 'final'], ['oh', 'darn', 'lost', 'anoth', 'follow'], ['crazi', 'debt', 'issu', 'mayb', 'mess', 'close', 'old', 'account', 'not', 'realli', 'sure', 'look', 'like', 'may', 'cover', 'aargh'], ['dang', 'miss', 'goodnight'], ['ugh', 'definit', 'go', 'sick', 'come', 'go', 'suck'], ['omg', 'right', 'hear', 'us', 'block', 'annoy', 'wake', 'deaf'], ['sit', 'marshal', 'center', 'must', 'realli', 'not', 'want', 'go', 'time', 'lost', 'wallet', 'n', 'id', 'not', 'go'], ['not', 'make', 'sad', 'agre', 'though', 'need', 'sa', 'magic', 'lyric'], ['not', 'wait', 'novemb', 'jobro', 'concert', 'examin'], ['wifflebal', 'damn'], ['femal', 'robin', 'flew', 'window', 'watch', 'die', 'bush', 'think', 'go', 'cri'], ['go', 'courthous', 'pay', 'tag', 'amp', 'tax', 'go', 'expens'], ['shut', 'fool', 'dontlik', 'fact', 'keep', 'abandon'], ['wish', 'could', 'one', 'go', 'confer', 'bahama', 'next', 'week'], ['sent', 'home', 'yest', 'work', 'today', 'feel', 'like', 'hell', 'burn', 'high', 'temp', 'got', 'hubbi'], ['lost', 'bowl', 'suck'], ['work', 'miss', 'home', 'news'], ['sound', 'like', 'great', 'idea', 'wish', 'could', 'make'], ['stood', 'outsiden', 'got', 'worst', 'butterfli', 'everr'], ['haha', 'nice', 'know', 'not', 'alon', 'work', 'bbc', 'not', 'see'], ['cancel', 'run', 'favour', 'stay', 'wish', 'moni', 'pubul', 'though'], ['alway', 'hungri', 'time', 'not', 'even', 'feel', 'like', 'eat', 'not', 'throat', 'sore', 'sick'], ['hour', 'sun', 'turn', 'blancmang', 'suck', 'pale'], ['tri', 'figur', 'right'], ['read', 'sim', 'genet', 'sim', 'forum', 'appar', 'hair', 'dye', 'pass', 'offspr', 'disappoint'], ['sorri', 'hear', 'make', 'sad'], ['chemistri', 'not', 'fun'], ['miss', 'brandon', 'want', 'talk', 'anthoni', 'sadsho'], ['wish', 'could', 'listen', 'canada', 'websit', 'not', 'let'], ['need', 'hug', 'dnt', 'feel', 'good'], ['feel', 'cousin', 'monkey'], ['rare', 'sleep', 'not', 'help', 'hehe'], ['poor', 'pirat', 'last', 'wisdom', 'tooth', 'look', 'realli', 'peaki'], ['might', 'not', 'enough', 'money', 'colleg'], ['hot', 'today', 'not', 'like', 'hate', 'new', 'timet', 'bad', 'week'], ['oh', 'sorri', 'hear'], ['sunburn'], ['deal', 'overact', 'right'], ['fuuck', 'not', 'know', 'andi', 'get', 'youu'], ['watch', 'ard', 'earn', 'money', 'dissapear'], ['hate', 'park', 'car', 'get', 'hit'], ['huggl', 'not', 'see', 'repli', 'right', 'away', 'boss', 'hover', 'today', 'feel', 'pissi', 'life'], ['enjoy', 'week', 'work', 'back', 'next', 'week'], ['eye', 'doctor', 'amp', 'bring', 'triniti', 'mom', 'fell', 'stair', 'today', 'amp', 'broke', 'toe', 'ugh'], ['steve', 'make', 'fruit', 'smoothi', 'day', 'amp', 'berri', 'delici', 'made', 'mine', 'today', 'amp', 'berri', 'berri', 'bad'], ['poor', 'babi', 'need', 'alo', 'nope', 'sorri', 'hint'], ['oddo', 'grandfath', 'pass', 'away', 'sleep'], ['pretti', 'awesom', 'part', 'person', 'bike', 'behind', 'said', 'hello', 'left', 'recogn'], ['white', 'shoe', 'make', 'cring', 'white', 'shoe', 'give', 'paus'], ['damn', 'not', 'show', 'peopl', 'conserv', 'blackjack'], ['watch', 'wayi', 'much', 'bever', 'hill', 'today', 'not', 'proud', 'fact', 'tv', 'fail'], ['oh', 'silenc', 'verona', 'want', 'go', 'jaja', 'enjoyyitverymuch', 'bring', 'photho', 'danni', 'dougi'], ['lil', 'sister', 'chares', 'best', 'friend', 'pass', 'today'], ['know', 'right', 'lead', 'foot'], ['mouth', 'hurt', 'stupid', 'retain'], ['joe', 'kevin', 'pic', 'new', 'pair', 'pjs', 'pmsl', 'could', 'die', 'lmfaoo', 'miss', 'boy'], ['hm', 'not', 'good', 'medium', 'much', 'respond', 'previous', 'post', 'day', 'ago', 'amp', 'convers'], ['yes', 'readi', 'go', 'got', 'ugh', 'soo', 'pretti', 'outsid'], ['great', 'camp', 'wish', 'could'], ['ooh', 'jealous', 'yoghurt', 'carrot'], ['want', 'someon', 'spend', 'summer', 'even', 'whilst', 'nice', 'relax', 'mood'], ['know', 'mean', 'rain', 'suck'], ['not', 'make', 'phone', 'call', 'hate', 'anxieti', 'crap', 'someon', 'cure'], ['got', 'copi', 'yesterday', 'although', 'right', 'dig', 'scala', 'not', 'read', 'yet'], ['want', 'go', 'back', 'school', 'sigh', 'poor'], ['miss', 'jmichell', 'told', 'treat', 'like', 'step', 'child', 'smh'], ['realiti', 'must', 'surviv', 'not', 'kill', 'make', 'stronger', 'lore'], ['expect', 'warm', 'usual', 'stuck', 'wear', 'sun', 'dress', 'cold', 'day'], ['not', 'guy', 'retard'], ['good', 'hear', 'time', 'weekend', 'work', 'though'], ['oh', 'miss', 'piano'], ['love', 'lt', 'host', 'lmao'], ['need', 'hug', 'cuz', 'garbag', 'truck', 'men', 'keep', 'drive', 'next', 'whistl', 'work', 'hard', 'graduat'], ['got', 'today', 'also', 'miss', 'friend'], ['not', 'know', 'heck', 'space', 'time', 'bgt', 'bore'], ['still', 'full', 'buffet', 'palm', 'stomach', 'actual', 'hurt', 'ugh', 'gluttoni', 'bite'], ['hate', 'go', 'onlin', 'look', 'balanc', 'bank', 'alway', 'lot', 'lower', 'need'], ['way', 'griffin', 'stapl', 'remov', 'head', 'fun'], ['need', 'hug', 'pitch', 'lacklust', 'shortstop', 'not', 'field', 'amp', 'big', 'papi', 'not', 'get', 'mendoza', 'line'], ['headach'], ['hurt', 'left', 'knee', 'somehow', 'last', 'night', 'hurt', 'walk'], ['want', 'cooki'], ['still', 'deal', 'quit', 'bit', 'pain', 'jump', 'soon', 'lay', 'frustrat', 'thank', 'ask'], ['busi', 'day', 'today', 'banburi', 'fair', 'fashion', 'show', 'tonight', 'move', 'apart', 'tomorrow', 'start', 'pack', 'yet'], ['ex', 'boyfriend', 'year', 'broke', 'month', 'ago', 'engag', 'gf', 'week', 'sad', 'embarrass', 'hug'], ['fantast', 'day', 'amaz', 'girl', 'wish', 'sara', 'not', 'go', 'home', 'fb'], ['money', 'problem', 'bad', 'day'], ['wind', 'crampin', 'style', 'section', 'yard', 'not', 'get', 'water', 'would', 'move', 'sprinkler', 'surround', 'mud'], ['slow', 'get', 'tix'], ['morn', 'rode', 'behind', 'guy', 'bird', 'cage', 'contain', 'plastic', 'tyrannosaurus', 'rex', 'attach', 'bicycl', 'could', 'not', 'get', 'photo'], ['lucki', 'still', 'work', 'anoth', 'hour'], ['oohh', 'well', 'could', 'alway', 'borrow', 'burn', 'buddi', 'lol'], ['ahh', 'soo', 'happi', 'ashley', 'tisdal', 'germani', 'not', 'oberhausen', 'show', 'tv', 'clock'], ['whew', 'move', 'freezer', 'cooler', 'lot', 'work', 'expect', 'miss', 'htc', 'roundtabl'], ['time'], ['happi', 'chines', 'total', 'disappoint', 'food', 'usual', 'good', 'fail'], ['sad', 'david', 'leav', 'tomoro', 'week'], ['heart', 'burn'], ['wish', 'could', 'afford', 'attend', 'benefit'], ['wassup', 'bad', 'day', 'not', 'good'], ['link', 'not', 'work'], ['internet', 'pain', 'slow', 'today'], ['whooaa', 'got', 'overwheolm', 'itus', 'attack', 'eat'], ['sad', 'david', 'tennant', 'left', 'not', 'particular', 'want', 'job', 'anyway'], ['not', 'not', 'know', 'reason'], ['bit', 'devast', 'lost', 'entir', 'document', 'folder', 'home', 'comput'], ['first', 'time', 'week', 'play', 'wow', 'get', 'stuck', 'quot', 'authent', 'quot'], ['appar', 'not', 'get', 'anymor', 'sad'], ['lose', 'gut', 'lol', 'serious', 'gain', 'lil', 'not', 'like', 'look'], ['oh', 'wow', 'thank', 'info'], ['great', 'final', 'meet', 'last', 'night', 'wish', 'time', 'talk', 'not', 'go', 'coffe', 'gtgs', 'though', 'day', 'job'], ['get', 'migran', 'leav', 'either', 'arthriti', 'gout'], ['webcam', 'still', 'not', 'work', 'evil', 'stuff'], ['argh'], ['kid', 'sick', 'not', 'not', 'go', 'like', 'crazi', 'stalker'], ['possibl', 'go', 'tonight', 'anyth', 'lancast', 'miss', 'baltimor'], ['need', 'hug', 'junior', 'cert', 'week', 'total', 'stress'], ['know', 'lame'], ['aww', 'hope', 'feel', 'better', 'soon'], ['sadden', 'youtub', 'chang', 'like', 'everi', 'youtub', 'kid', 'use', 'differ'], ['aww', 'wish', 'sun', 'get', 'tan', 'walk', 'go', 'mee', 'go', 'mee'], ['cricket', 'beer', 'sunshin', 'good', 'well', 'apart', 'beer', 'tablet'], ['lazi', 'day', 'awesom', 'realli', 'go'], ['rope', 'witdraw', 'full', 'effect', 'one', 'tie', 'teach', 'demo', 'one', 'play', 'worst', 'one', 'play'], ['rachael', 'make', 'want', 'cri'], ['sorri', 'not', 'reach', 'either', 'url'], ['not', 'feel', 'well', 'today', 'ugh', 'not', 'go', 'home'], ['oh', 'hella', 'forgot', 'say', 'offici', 'good', 'morn', 'like', 'hear', 'go', 'good', 'morrn', 'twittervill', 'lol'], ['yeah', 'not', 'realiz', 'bad', 'till'], ['not', 'give', 'blood', 'within', 'year', 'get', 'tattoo', 'not', 'gut'], ['go', 'hate', 'around', 'babi'], ['head', 'huwwt'], ['straighten', 'anoth', 'pound', 'though', 'seem', 'pricey'], ['ugh', 'realli', 'hot', 'today', 'alreadi', 'not', 'even', 'noon', 'yet', 'want', 'ice', 'water'], ['done', 'alreadi', 'one', 'proof', 'noth', 'fair', 'world'], ['finish', 'read', 'chuck', 'palahniuk', 'quot', 'pygmi', 'quot', 'kind', 'hate', 'realli', 'disappoint', 'pretti', 'high', 'hope', 'one'], ['yeah', 'weather', 'ruin', 'plan', 'go', 'beach', 'well'], ['ok', 'one', 'hour', 'still', 'wait', 'lose', 'patienc'], ['mail', 'someth', 'got', 'not', 'probli', 'mean', 'not', 'get'], ['guy', 'figur', 'saturday', 'realli', 'want', 'go', 'mom', 'sick', 'take', 'hospit', 'tampa'], ['hate', 'headrush'], ['luck', 'goin', 'forum', 'person', 'earth', 'not', 'goin'], ['realli', 'wish', 'someon', 'would', 'make', 'groupchat', 'theme', 'adium', 'suit', 'irc', 'ymous', 'way', 'low', 'contrast'], ['troubl', 'sync', 'iphon', 'work', 'exchang', 'email', 'help'], ['hang', 'san', 'fran', 'airport', 'got', 'hour', 'wait', 'go', 'way', 'sfo', 'wifi', 'garbag'], ['sunburn', 'knee'], ['sigh', 'not', 'sound', 'happi'], ['mood', 'shrimp', 'scampi', 'not', 'vermouth'], ['today', 'not', 'go', 'relax', 'like', 'hope'], ['got', 'haircut', 'felt', 'like', 'guy', 'quot', 'last', 'samuri', 'quot', 'forc', 'ponytail', 'cut'], ['ate', 'much', 'not', 'want', 'work'], ['yes', 'think', 'unless', 'chang', 'sent', 'happi', 'mother', 'day', 'text', 'never', 'respond', 'back'], ['got', 'tire', 'kitchen', 'uninhabit', 'swept', 'mop', 'floor', 'dri', 'work', 'top'], ['wish', 'could', 'enjoy', 'girl', 'day'], ['made', 'sure', 'got', 'credit', 'end', 'sure', 'forgot', 'peopl', 'though'], ['not', 'know', 'not'], ['never', 'order', 'chip', 'due', 'unhealthi', 'get', 'burrito', 'chipotl', 'qdoba', 'not', 'feel', 'right', 'without'], ['total', 'need', 'go', 'doctor', 'bitch', 'still', 'hurtin', 'like', 'hell', 'shall', 'return'], ['slam', 'finger', 'car', 'dor', 'fml', 'ow'], ['enjoy', 'weather', 'go', 'work', 'last', 'shift'], ['stressin', 'suppos', 'clean', 'room', 'feel', 'like', 'crap'], ['feel', 'like', 'continu', 'long', 'take'], ['not', 'believ', 'spend', 'lunch', 'break', 'insid', 'desk'], ['suffer', 'hayfev', 'drowsi', 'much', 'piriton', 'head', 'bed', 'air', 'purifi'], ['back', 'lunch', 'pour', 'rain', 'ugh', 'ohh', 'well', 'least', 'get', 'death', 'cab', 'cuti', 'mood'], ['let', 'know', 'goe', 'pray', 'ummph', 'still', 'not', 'believ'], ['finish', 'mikado', 'shut', 'lol'], ['would', 'know', 'pack', 'make', 'poor', 'lauren'], ['sushi', 'joint', 'close', 'still', 'nice', 'lunch', 'angel'], ['wish'], ['say', 'imposs', 'plurk', 'work', 'system', 'administr', 'close', 'access', 'firew'], ['feel', 'super', 'sick'], ['lt', 'googl', 'wish', 'would', 'spend', 'bit', 'time', 'ad', 'bit', 'chrome', 'though'], ['twitter', 'slow'], ['finish', 'noodl', 'done', 'dishwash', 'realli', 'realli', 'warm', 'not', 'like'], ['hate', 'pain'], ['last', 'day', 'favorit', 'quit', 'sad'], ['updat', 'tweeti', 'open', 'browser', 'still', 'broken'], ['ozzi', 'back', 'vet', 'not', 'feel', 'well', 'look', 'sad', 'possibl', 'uti', 'result', 'tomorrow'], ['wtf', 'kind', 'best', 'friend', 'still', 'not', 'met', 'hubbi', 'depress'], ['sit', 'martin', 'class', 'youtub', 'stupid', 'realli', 'want', 'popsicl', 'jealous', 'sara'], ['zoita', 'cardio', 'apt', 'doc', 'say', 'not', 'close', 'need', 'surgeri', 'close'], ['mad', 'not', 'ughh'], ['hungri', 'not', 'leav', 'lunch'], ['man', 'sinus', 'r', 'realli', 'buggin', 'morn'], ['interest', 'even', 'amongst', 'homeless', 'peopl', 'venic', 'beach', 'last', 'night', 'wish', 'camera', 'model', 'releas'], ['kind', 'headach'], ['slow', 'answer'], ['wish', 'coulda'], ['yuotub', 'link', 'deni', 'work'], ['ouch', 'stomachac', 'ate', 'lot'], ['california', 'sunni', 'not', 'make', 'kind', 'sad'], ['anyth', 'help'], ['not', 'sleep', 'amp'], ['go', 'miss', 'guy', 'much', 'thank', 'make', 'year', 'senior', 'school', 'amaz'], ['itsuck', 'everyon', 'one', 'want', 'text', 'text'], ['inoo', 'sed', 'ino', 'feel', 'coz', 'love', 'kyle', 'feel', 'like', 'saddo', 'true', 'ha', 'want', 'see', 'tuesday'], ['ok', 'one', 'orang', 'still', 'open', 'whew', 'scare', 'sorri', 'one', 'close'], ['youtub', 'made', 'fail', 'right', 'mayb', 'hate'], ['oasi', 'ribena', 'toughest', 'decis', 'everr'], ['year', 'pretti', 'sure', 'not', 'readi'], ['yarn', 'arriv', 'monday', 'not', 'even', 'know', 'shipment', 'noth', 'dye'], ['gettin', 'readi', 'trip', 'back', 'not', 'want', 'leav'], ['not', 'profession'], ['yeah', 'imagin', 'not', 'nice', 'much', 'longer', 'shift'], ['bore', 'firday', 'even', 'noth'], ['time', 'nerd'], ['ouch', 'better', 'get', 'use', 'think', 'prime', 'marriag', 'year'], ['say', 'quot', 'close', 'quot', 'not', 'mean', 'quot', 'come', 'quot', 'ffs', 'peopl', 'also', 'rip', 'polli'], ['must', 'brought', 'bad', 'weather', 'state'], ['goddamnit', 'live', 'age', 'constant', 'communic', 'not', 'anyon', 'return', 'text'], ['vacuum', 'entir', 'hous', 'three', 'time', 'screw', 'vacuum'], ['tri', 'teriyaki', 'cooki', 'though', 'got', 'non', 'win', 'great'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['cours', 'evil', 'day', 'job', 'want', 'stay', 'longer', 'need', 'win', 'lotteri'], ['wish', 'could', 'want', 'stay', 'play', 'guy', 'enjoy', 'block', 'parti'], ['jona', 'demi', 'miss', 'niick', 'soul', 'asasgdygyasdgi'], ['could', 'lost', 'dog', 'poor', 'girl'], ['panchito', 'burfday', 'parti', 'tonight', 'wish', 'kiddo'], ['damn', 'got', 'math', 'test', 'today'], ['motherfuck', 'qw'], ['feel', 'bad', 'littl', 'sister', 'put', 'lot', 'money', 'saab', 'took', 'full', 'coverag', 'last', 'week', 'total', 'yesterday'], ['unfortun', 'not', 'purpos', 'itun', 'shuffl', 'follow', 'dreadzon'], ['haha', 'yea', 'feel', 'like', 'taken', 'wrong', 'direct', 'use', 'cool', 'place', 'mess'], ['epsilon', 'greater', 'zero', 'miss', 'mommi'], ['unfortun', 'miss', 'girl', 'radio', 'tonight', 'midst', 'night', 'write', 'session'], ['drive', 'nut'], ['shit', 'friend', 'state', 'not', 'know', 'help', 'noth', 'say', 'seem', 'help', 'wish', 'knew', 'say'], ['oh', 'yeah', 'mom', 'told', 'thought', 'meant', 'twitter', 'id', 'amp', 'confus', 'suck', 'sick'], ['ommg', 'gurll', 'not', 'go', 'sad'], ['not', 'believ', 'find', 'not', 'peopl', 'contact', 'famili', 'first', 'sad'], ['sometim', 'come', 'back', 'car', 'thing', 'suck', 'feel', 'anxious', 'yucki'], ['good', 'luck', 'servic', 'tomorrow', 'wish', 'could', 'see', 'guy', 'vacat'], ['anyon', 'pleas', 'say', 'hello', 'feel', 'lone'], ['realli', 'think', 'stay', 'till', 'tomorrow', 'back', 'philli', 'want', 'stay', 'bad'], ['aw', 'toy', 'stori', 'come', 'next', 'year'], ['cut', 'hand', 'open'], ['ha', 'not', 'know', 'stand', 'anyth', 'rough', 'today', 'hurt', 'talk'], ['far', 'want', 'go', 'home'], ['molli', 'keep', 'punch', 'cuz', 'see', 'yellow', 'car', 'go', 'cover', 'bruis', 'not', 'like', 'game'], ['headach', 'heat'], ['way', 'lake', 'geneva', 'miss', 'laura'], ['go', 'one', 'upset', 'daughter', 'rat', 'took', 'sudden', 'turn', 'wors', 'not', 'make'], ['not', 'feel', 'good', 'today'], ['dude', 'lol', 'chris', 'brown', 'live', 'far', 'apart', 'afraid', 'fli'], ['get', 'nice', 'food', 'mam', 'bay', 'like', 'room', 'tonight', 'b', 'not', 'mingin', 'burger', 'kitchen'], ['teeshirt', 'faar', 'small', 'like', 'much', 'stop', 'wear'], ['awessome', 'cut', 'hurr', 'give', 'massag', 'orr', 'alki', 'foodtour', 'yeaah', 'amp', 'pray', 'cousin'], ['yes', 'not', 'understand', 'mean', 'know', 'hollywood', 'thing', 'call', 'love'], ['miss', 'friggin', 'hair', 'appt'], ['good', 'dayi', 'shop', 'not', 'get', 'want', 'though', 'best', 'friend', 'come', 'home', 'xd', 'ili', 'shannii', 'x'], ['want', 'soldier', 'come', 'home', 'not', 'hear', 'anymor', 'kill'], ['problem', 'flash', 'not', 'gpu', 'acceler', 'atom', 'not', 'play', 'youtub', 'hd', 'hulu', 'hd', 'fullscreen', 'big', 'deal', 'plex'], ['hillsong', 'tom', 'night', 'dad', 'birthday', 'wish', 'could', 'see', 'birthday', 'though'], ['aww', 'wish', 'safe', 'gone', 'n', 'hug', 'must', 'hard', 'say', 'goodby'], ['degre', 'centigrad', 'much', 'hotter', 'degre', 'centigrad'], ['not', 'good', 'funer', 'cri', 'way', 'contagi'], ['want', 'soldier', 'come', 'home', 'not', 'hear', 'anymor', 'kill'], ['littl', 'bit', 'upset', 'peopl'], ['pretti', 'sure', 'sat', 'wrong', 'train', 'go', 'wrong', 'way', 'bah'], ['handwrit', 'not', 'everyon', 'make', 'fun', 'sit', 'myseld', 'lrc'], ['bed', 'sick', 'heavi', 'fever', 'went', 'dr', 'part', 'reason', 'watch', 'aladdin', 'still', 'not', 'fed'], ['not', 'get', 'feel', 'fine', 'yesterday', 'ball', 'sick', 'hate', 'flu'], ['fml', 'spill', 'entir', 'diet', 'coke', 'lap', 'yay'], ['done', 'plant', 'sun', 'shine', 'soon'], ['feel', 'sick', 'probabl', 'summer', 'flu'], ['ughh', 'miley', 'creatur', 'song', 'infest', 'brain'], ['oh', 'dear', 'sunburn', 'back'], ['yeah', 'need', 'sick'], ['frustrat', 'pictur', 'not', 'load'], ['wheater', 'austria', 'bad', 'whole', 'weekend', 'sorri'], ['miss', 'cousin', 'much'], ['could', 'not', 'respond', 'cuz', 'max'], ['hate', 'cat', 'pee'], ['confus', 'weather', 'realli', 'go', 'sunni', 'realli', 'go', 'rain'], ['creas', 'nike', 'ohh', 'well'], ['arrghh', 'stupid', 'eczema', 'go', 'soon', 'sort'], ['hate', 'life'], ['hate', 'khaki', 'pant', 'project', 'todayi'], ['know', 'law', 'rebel', 'small', 'thing'], ['send', 'messag', 'greg', 'time', 'answer', 'ok', 'still', 'love', 'amp', 'goog', 'luck', 'move', 'eri'], ['runni', 'nose', 'not', 'breath', 'terribl', 'feel'], ['iphon', 'today', 'want', 'see', 'morn', 'virginia', 'beach', 'not', 'think', 'get'], ['oh', 'go', 'break', 'up', 'guy', 'move'], ['sorri', 'not', 'like', 'girl', 'way'], ['soo', 'not', 'funni', 'move', 'comput', 'comput', 'render', 'draw', 'come', 'revit', 'autocad', 'never', 'bad'], ['fuck', 'clean', 'whole', 'asshol', 'come', 'home', 'amp', 'go', 'make', 'mess', 'mom', 'not', 'even', 'get', 'see'], ['beauti', 'day', 'ocracok', 'hope', 'thunderstorm', 'stay', 'away', 'not', 'look', 'good'], ['john', 'make', 'wear', 'mask', 'glove', 'work', 'sick', 'say', 'not', 'want', 'catch', 'swine', 'flu'], ['lmao', 'boss', 'ross', 'not', 'come', 'love', 'man', 'truth'], ['cruis', 'quot', 'serious', 'eat', 'ny', 'quot', 'not', 'bode', 'well', 'futur', 'miss', 'nyc', 'gastronom', 'tour'], ['hut', 'face', 'hammer', 'earlier', 'accid', 'obvious', 'hurt'], ['bore', 'lone', 'work'], ['stratus', 'go', 'bye', 'bye', 'today', 'love', 'car', 'high', 'school', 'fb'], ['ran', 'worm', 'skate', 'poor', 'wormi', 'glad', 'back'], ['gas', 'plus', 'money', 'desper', 'word', 'day'], ['balanc', 'unfortun', 'not', 'abl', 'find', 'card', 'limit', 'high', 'enough', 'transfer', 'whole', 'thing'], ['final', 'ef', 'internet', 'effin', 'need', 'updat', 'wifi', 'sg', 'mall', 'not', 'know', 'miss', 'dada', 'craigi'], ['sorri', 'hear'], ['thank', 'god', 'elton', 'allow', 'see', 'new', 'tw', 'trailer', 'sinc', 'work', 'block', 'youtub', 'lj'], ['apolog', 'not', 'fix', 'hurt', 'feel', 'kev', 'anyway', 'get', 'next', 'time', 'c'], ['most', 'sick', 'went', 'bed', 'woke', 'feel', 'most', 'dead'], ['la', 'unifi', 'summer', 'school', 'drastic', 'cut', 'due', 'ca', 'budget', 'cut', 'sad'], ['bore', 'work'], ['ooc', 'sorri', 'keep', 'miss'], ['not', 'find', 'go', 'sleepless', 'night', 'tonight'], ['good', 'hang', 'dad', 'look', 'job', 'still'], ['want', 'roc', 'imi', 'buu'], ['moment', 'foward', 'go', 'spend', 'money', 'wise', 'dress', 'shoe', 'shop', 'everi', 'week', 'pig', 'fav', 'rest'], ['hate', 'everyth', 'seafood', 'happen', 'serv', 'lobster', 'chow', 'hall', 'nooww', 'got', 'headach', 'ugh', 'smh'], ['gosh', 'anoh', 'cloudi', 'day', 'wish', 'would', 'go', 'away', 'rain'], ['weather', 'hous', 'paint', 'go', 'drag', 'till', 'next', 'week'], ['reealli', 'wish', 'could', 'not', 'n', 'goin', 'late'], ['bad', 'need', 'stop', 'think'], ['deathmatch', 'not', 'game', 'plus', 'not', 'realli', 'good', 'game', 'lol'], ['stress', 'fro', 'work', 'drink'], ['littl', 'felt', 'thing', 'look', 'like', 'incestu', 'product', 'two', 'love'], ['tri', 'soo', 'hard', 'work', 'home', 'today', 'fail', 'not', 'fault', 'though'], ['condol'], ['yeah', 'yesterday', 'found', 'hous', 'want', 'sold', 'bank', 'ef', 'car', 'accid'], ['know', 'drizzl', 'way', 'work', 'hope', 'warm', 'weekend'], ['realli', 'wish', 'could', 'go'], ['miss', 'never', 'want', 'come'], ['got', 'hospit', 'jimmi', 'realli', 'pleas', 'send', 'good', 'thought', 'realli', 'worri'], ['depend', 'want', 'becom', 'poor'], ['miss', 'hope', 'well', 'send', 'big', 'hug'], ['ok', 'home', 'made', 'pizza', 'tonight', 'horror', 'run', 'anchovi'], ['lol', 'dammit', 'well', 'next', 'time'], ['screw', 'phone', 'broken', 'not', 'bother', 'text'], ['got', 'go', 'doctor', 'morn', 'feel', 'sick', 'right', 'bare', 'talk', 'still', 'yell', 'across', 'hous', 'lol'], ['kickbox', 'class', 'today', 'pretti', 'bum', 'still', 'go', 'work', 'hard'], ['not', 'feel'], ['ugh', 'miss', 'potus', 'five', 'guy', 'block', 'hous', 'block', 'job'], ['wear', 'exact', 'cloth', 'use', 'wear', 'canada', 'beani', 'touqu', 'ahh', 'bring', 'back', 'memori', 'miss', 'snow'], ['go', 'miss', 'much', 'cri', 'right'], ['fourteen', 'hour', 'later', 'still', 'worst', 'allergi', 'life', 'shoot', 'engag', 'session', 'field', 'last', 'night'], ['got', 'back', 'bbq', 'got', 'sunburn', 'leg', 'well', 'sore'], ['wah', 'go', 'miss', 'bowi', 'peopl', 'esp', 'alyanna', 'bondoc', 'lt', 'cesar', 'lt', 'not', 'know', 'surviv', 'without', 'sosa'], ['power', 'cut', 'went'], ['would', 'done', 'legless', 'stillborn', 'spaniel', 'idea', 'sad', 'later', 'strawberri', 'dead', 'puppi'], ['hous', 'bust', 'hous', 'smell', 'like', 'bowl', 'alley', 'maad', 'gross', 'hous', 'need', 'new', 'roof', 'basement'], ['beneath', 'show', 'got', 'cancel', 'bummer', 'guess', 'not', 'see', 'til', 'cornerston', 'goign'], ['get', 'boy', 'doc', 'persist', 'cough', 'not', 'good'], ['lunch', 'not', 'alreadi', 'hungri'], ['thank'], ['need', 'share', 'love', 'us', 'still', 'rock', 'gear'], ['aw', 'onlin', 'portugues', 'test'], ['must', 'fool', 'twitterland', 'not', 'get', 'retweet', 'sadsvill'], ['jealous', 'right', 'hate', 'new', 'england', 'weather'], ['fight', 'migrain', 'medic', 'almost', 'work'], ['man', 'french', 'open', 'week', 'not', 'opportun', 'catch', 'singl', 'match'], ['yeah', 'not', 'suck', 'work', 'nano', 'take', 'music', 'sad'], ['wish', 'could', 'seen', 'nephew', 'graduat', 'kindergarten'], ['way', 'home', 'dood', 'not', 'think', 'crappi', 'vodafon', 'gprs', 'handl'], ['bad', 'luck'], ['f', 'work', 'want', 'somebodi', 'come'], ['love', 'fli', 'live', 'chat', 'not', 'like', 'sick'], ['bushidokan', 'class', 'got', 'cancel', 'sign', 'karat', 'someplac', 'els'], ['jon', 'last', 'yr', 'interest', 'quot', 'question', 'agil', 'quot', 'agil', 'session', 'not', 'see', 'yr', 'schedul'], ['wat', 'good', 'miss', 'alreadi'], ['come', 'everyon', 'seem', 'make', 'much', 'money'], ['not', 'feel', 'good', 'sick', 'stomach'], ['redskin', 'releas', 'jon', 'jansen', 'guy', 'put', 'ton', 'sweat', 'bruis', 'team', 'miss'], ['got', 'back', 'arizona', 'yesterday', 'move', 'furnitur', 'stuff', 'arizona', 'hous', 'ship', 'redwood', 'citi', 'sad'], ['head', 'starbuck', 'go', 'take', 'bus', 'paradis', 'starbuck', 'miss', 'minut'], ['good', 'day'], ['meet', 'lincoln', 'squar', 'bummer', 'free', 'park'], ['lil', 'sad', 'look', 'like', 'nomor', 'brooklyn', 'wtf'], ['feel', 'sudden', 'like', 'stomach', 'not', 'readi', 'resum', 'peristalsi', 'event', 'two', 'night', 'prior'], ['quot', 'catch', 'quot', 'dvd', 'rent', 'yesterday', 'crack', 'figur', 'minut', 'movi'], ['oh', 'accord', 'laineygossip', 'taylena', 'fame', 'gosh', 'poor', 'two', 'heartbreak', 'row'], ['listen', 'album', 'youtub', 'awesom', 'not', 'buy'], ['poor', 'poor', 'mouth'], ['weird', 'mayb', 'updat', 'not', 'sent', 'phone', 'haha'], ['go', 'work', 'one', 'suck', 'miss', 'happi', 'hour', 'sonic'], ['not', 'believ', 'almost', 'got', 'put', 'rescu', 'group', 'went', 'got'], ['snap', 'break'], ['worri', 'sam', 'want', 'know', 'okay'], ['gratz', 'tix', 'suck', 'poor', 'though', 'tri', 'get', 'pj', 'harvey', 'tix', 'debat'], ['total', 'want', 'white', 'chocol', 'macadamia', 'cooki', 'field', 'mall', 'soo', 'far', 'away', 'bleh', 'think', 'make'], ['abl', 'creat', 'itun', 'account', 'longer', 'redeem', 'kris', 'allen', 'album', 'note', 'said', 'got', 'cancel'], ['yeah', 'think', 'touch', 'someth', 'mike', 'germ', 'sore', 'throat', 'dammit', 'knew', 'not', 'gone'], ['realli', 'mad', 'forget', 'may', 'deadlin', 'mile', 'award', 'trip', 'south', 'america'], ['wat', 'stress', 'week', 'jus', 'hope', 'everyth', 'fall', 'place'], ['wonder', 'clumsi', 'late'], ['aww', 'thatss', 'well', 'sad', 'x'], ['mean', 'portfolio', 'sad', 'luck', 'appli', 'place', 'far'], ['piec', 'photo', 'quilt', 'boe', 'employe', 'hung', 'huntington', 'beach', 'sad', 'mani', 'peopl', 'quilt', 'pic', 'laid'], ['york', 'v', 'lanc', 'telli', 'not', 'go', 'well', 'yorkshir'], ['piss', 'annoy', 'date', 'stamp', 'pictur', 'wish', 'would', 'rememb', 'turn'], ['think', 'open', 'macmaz', 'sourc', 'not', 'time', 'work', 'anymor'], ['ruin', 'lunch', 'eat', 'half', 'bag', 'cheddar', 'feel', 'sick'], ['hate', 'midget', 'smfh', 'dream', 'fightin', 'ln', 'boston', 'market', 'turbul', 'kept', 'head', 'bunt'], ['wish', 'pitchfork', 'would', 'shutup', 'primavera', 'make', 'miss', 'spain'], ['offic', 'make', 'comput', 'feel', 'better'], ['work', 'sick', 'ok', 'mall'], ['say', 'goodby', 'year', 'awesom', 'help', 'fit', 'team', 'verita'], ['yeah', 'sad'], ['today', 'aba', 'full', 'emot', 'tear', 'asd', 'autism', 'day', 'harder', 'other', 'hard', 'not', 'interven', 'poor', 'babi'], ['miss', 'coffe'], ['okay', 'sum', 'reason', 'not', 'lettin', 'vote'], ['makin', 'tea', 'stressin'], ['jus', 'got', 'back', 'run', 'sunset', 'blvd', 'cuzin', 'tri', 'kill', 'leg', 'still', 'movin', 'sittin'], ['not', 'forget', 'nash', 'disappoint', 'sun', 'fan'], ['ugh', 'anoth', 'quot', 'day', 'today', 'quot', 'utter', 'word', 'last', 'week', 'miss', 'yr', 'old', 'birthday', 'amp', 'even', 'ical'], ['truck', 'bit', 'dust', 'not', 'know', 'make', 'mustang', 'game', 'tomorrow'], ['wish', 'knew', 'someon', 'could', 'hook', 'us', 'friend', 'told', 'got', 'crappi', 'seat', 'show', 'chi'], ['yea', 'someon', 'get', 'best'], ['trouser', 'damp'], ['cop', 'tell', 'tori', 'dad', 'may', 'never', 'find', 'remain'], ['wish', 'go', 'internet', 'week'], ['said', 'mention', 'bear', 'fun', 'bear', 'like', 'peanut', 'butter'], ['well', 'sound', 'delici', 'lay', 'patio', 'tom', 'san', 'pool', 'enjoy', 'burger'], ['also', 'hang', 'right', 'bore', 'hahaha', 'not', 'work', 'today', 'differ', 'hour', 'money', 'lol', 'whatev'], ['found', 'schoolmat', 'die', 'heart', 'attack', 'morn', 'bare', 'miss', 'balli'], ['turn', 'thing', 'felt', 'forgiv', 'remould', 'cut'], ['wish', 'noww', 'grr'], ['hi', 'guy', 'da', 'usael', 'notmuch', 'realli', 'lt', 'sad'], ['haha', 'would', 'cute', 'nobodi', 'ever', 'come', 'visit', 'god', 'damn', 'lake', 'geneva', 'far', 'civilizati'], ['might', 'end', 'like', 'poor', 'bus', 'driver', 'kind', 'weird', 'wish', 'today'], ['would', 'far', 'away'], ['still', 'melt', 'hous', 'shade', 'not', 'fair'], ['one', 'interest', 'special', 'popcorn', 'stale', 'wast', 'go', 'find', 'homeless', 'person', 'give'], ['slim', 'edc', 'lineup'], ['siickk', 'dun', 'feel', 'good'], ['lunch', 'boringg', 'drive', 'school', 'today', 'ugh', 'hope', 'better', 'dodd'], ['jet', 'blue', 'okay', 'guess', 'cancel', 'flight', 'not', 'lot', 'backup', 'plane', 'first', 'class'], ['ugh', 'fricken', 'internet', 'like', 'work', 'without', 'want', 'back', 'colleg', 'connect'], ['eesh', 'sorri', 'hear', 'not', 'go', 'make', 'travel', 'michigan', 'fun'], ['need', 'motiv', 'life', 'oh', 'love', 'would', 'nice'], ['harrump', 'gag', 'beer', 'noon', 'want', 'play'], ['soo', 'sunburnt', 'mum', 'earlier', 'wait', 'get', 'fell', 'asleep', 'trampolin', 'hour', 'sun'], ['ugh', 'bad'], ['realli', 'not', 'woth', 'f', 'ck', 'not', 'anythin', 'right', 'wrong'], ['post', 'guitar', 'hero', 'ass', 'kick'], ['becoz', 'leg', 'sprain', 'nta', 'ble', 'proper', 'wrkout', 'worri', 'shud', 'dis', 'hapen', 'wen', 'satrt', 'diet'], ['hi', 'everybodi', 'sorri', 'long', 'listen', 'iwa', 'busi'], ['happen', 'three', 'week', 'ago', 'serial', 'card', 'fraudster', 'loos'], ['phone', 'broken', 'amp', 'lazi', 'go', 'verizon', 'store', 'get', 'new', 'one', 'oh', 'well', 'guess', 'phone', 'awhil', 'aha'], ['want', 'hang', 'play', 'not', 'fiddl', 'faddl', 'workload'], ['think', 'wrong', 'stuf', 'breath', 'feel', 'like', 'sore', 'throat'], ['gosh', 'miss', 'singer', 'theater', 'miss', 'learn', 'music', 'act', 'exercis', 'n', 'especi', 'miss', 'onstag'], ['oh', 'noe', 'tv', 'broken', 'red', 'standbi', 'light', 'anyth', 'check', 'plug', 'fuse', 'insid'], ['omg', 'sorri', 'hear', 'realli', 'need', 'talk', 'someon', 'alway', 'shoulder', 'lean'], ['poop', 'pennsylvania', 'rest', 'stop', 'hate', 'use', 'public', 'toilet'], ['oh', 'god', 'yeah', 'forgot'], ['go', 'suck', 'sober', 'one', 'tonight'], ['well', 'mayb', 'someon', 'care'], ['headach', 'not', 'go', 'away'], ['spent', 'hour', 'morn', 'go', 'yearbook', 'see', 'senior', 'start', 'harleton', 'speech', 'bore'], ['got', 'new', 'brew', 'buddi', 'kitchen', 'go', 'smell'], ['lt', 'lt', 'chose', 'wrong', 'career'], ['sorri', 'not', 'best', 'day', 'neither', 'though', 'work', 'tonight'], ['feel', 'bad', 'profil', 'pic'], ['hate', 'work', 'sunni', 'boohoo'], ['laugh', 'today', 'hope', 'thing'], ['not', 'avail', 'area', 'would'], ['sad', 'robot', 'song', 'librari'], ['want', 'go', 'outsid', 'play', 'sunshin', 'sit', 'front', 'comput', 'day', 'least', 'lunch', 'patio'], ['not', 'like', 'chang', 'feel', 'like', 'googl', 'send', 'email', 'tell', 'thing', 'gunna', 'phone'], ['hi', 'pretti', 'man', 'not', 'upload', 'pic', 'reason', 'wrote', 'wish', 'find', 'women'], ['want', 'bad', 'go', 'mcfli', 'concert'], ['clean', 'find', 'stuff', 'sell', 'poor'], ['sleep', 'interupt', 'damn', 'univers', 'say', 'get', 'intil', 'thougth', 'would', 'sleep'], ['tonight', 'parti', 'girl', 'minus', 'vita'], ['hollyoak', 'curs', 'justin', 'strike', 'date', 'burton', 'end', 'screw', 'poor', 'sod'], ['hate', 'go', 'miss', 'tweet', 'weekend'], ['mii', 'shit', 'mii', 'dude'], ['forgot', 'charg', 'cell', 'last', 'night', 'dead'], ['write', 'essay', 'colleg', 'write', 'bore'], ['want', 'longboard', 'rain', 'ughh'], ['oh', 'use', 'intern', 'sig', 'extern', 'damn', 'fb'], ['yess', 'flash', 'shitti', 'tonight'], ['not', 'feel', 'good', 'today'], ['miss', 'puppi'], ['not', 'know', 'go', 'love', 'skinni', 'jean'], ['yes', 'go', 'sophmor', 'colleg', 'geez', 'not', 'get', 'job', 'everyon', 'think', 'fifteen'], ['terribl', 'cartoon', 'suppos', 'mexican'], ['want', 'bad', 'go', 'mcfli', 'concert', 'anybodi', 'go'], ['rofl', 'problem', 'two', 'hand'], ['look', 'much', 'better', 'short', 'hair'], ['woke', 'feel', 'damn', 'lazi', 'time', 'work', 'damnit'], ['ah', 'rememb', 'day', 'would', 'sleep', 'noon', 'well', 'guess', 'today', 'god', 'feel', 'like', 'loser'], ['feel', 'need', 'advil'], ['lol', 'stay', 'craig', 'got', 'footi', 'molli', 'miss', 'good', 'weather', 'buggi', 'either'], ['watchin', 'justin'], ['not', 'funni', 'profil', 'ass', 'like', 'wtf', 'still', 'kind', 'heat', 'ugh'], ['ohh', 'ouch', 'dude', 'got', 'drunk', 'last', 'night', 'not', 'get', 'context', 'sorri', 'dude'], ['goodby', 'picnic', 'classmat', 'today', 'weather', 'fuck', 'beautifuul'], ['proof', 'heat', 'good', 'day', 'wish', 'not', 'spent', 'bed'], ['school', 'go', 'miss', 'bunch', 'peopl'], ['not', 'sure', 'tweet', 'busi', 'simpl', 'thing', 'difficult'], ['god', 'creat', 'man', 'also', 'believ', 'creat', 'million', 'peopl', 'get', 'ya', 'tit', 'laff'], ['forgot', 'answer', 'kindl', 'question', 'yesterday', 'honest', 'not', 'use', 'much', 'two', 'paperback', 'book', 'want', 'read', 'first'], ['electron', 'key', 'stop', 'work', 'keyhol', 'not', 'get', 'car', 'much', 'technolog'], ['got', 'sunburn', 'arm', 'better', 'news', 'new', 'guitar', 'hero', 'metallica', 'game', 'came', 'beyond', 'happi'], ['also', 'wast', 'time', 'til', 'cab', 'get', 'spamspamspam', 'also', 'keith', 'motorbik', 'nick', 'well', 'shit'], ['hate', 'crowd'], ['weekend', 'sunni', 'got', 'anoth', 'punctur'], ['feel', 'urself', 'much', 'not', 'say', 'hi', 'likey'], ['ouch', 'sorri'], ['road', 'hour', 'ahead', 'beauti', 'girl', 'behind'], ['sad', 'neighbor', 'cut', 'tree', 'around', 'hous', 'look', 'pretti', 'seem', 'healthi', 'tragic'], ['not', 'think', 'friend', 'like', 'anymor', 'via', 'zenjar'], ['ohno', 'icki'], ['throat', 'hurt'], ['know', 'excit', 'not', 'go', 'earlierr', 'afternoon', 'love', 'tooz', 'lt'], ['problem', 'send', 'imag', 'twitterberri', 'mine', 'not', 'want', 'work', 'xx'], ['warren', 'hannah', 'dead', 'oh', 'godd', 'seriousslyy', 'tragidi'], ['anyon', 'super', 'nintendo', 'control', 'want', 'sell', 'mine', 'broke'], ['suck', 'think', 'account', 'mad', 'moni', 'middleschool', 'cafeteria', 'manag'], ['old', 'dead', 'gone'], ['guy', 'dead', 'not', 'load'], ['someon', 'would', 'give', 'speech', 'love', 'one', 'hospit', 'stupid', 'comm', 'class'], ['would', 'love', 'zoo', 'p', 'not', 'think', 'sunday', 'sometim', 'want'], ['sorri', 'readi', 'leav'], ['bad', 'day', 'gyah', 'car', 'teeth', 'miser', 'forgot', 'pack', 'lunch', 'get', 'new', 'car'], ['thought', 'would', 'check', 'home', 'minut', 'ago', 'download', 'updat', 'home', 'not', 'bother', 'soni'], ['problem', 'blackberri', 'ugh', 'need', 'anoth', 'charg', 'batteri', 'least'], ['hate', 'dentist'], ['haha', 'suck', 'actual', 'mine', 'wors', 'mine', 'ft', 'math', 'eww'], ['aim', 'not', 'work', 'due', 'network', 'problem'], ['tall', 'up', 'down', 'leg', 'pain'], ['beauti', 'bike', 'not', 'run', 'car', 'hit', 'run', 'biketo'], ['oh', 'gosh', 'hollyoak', 'sad', 'tonit'], ['way', 'mani', 'peopl', 'cri', 'school', 'picnic', 'decid', 'want', 'go', 'back', 'go', 'public', 'confus', 'sad'], ['carol', 'vorderman', 'cancel', 'interivew', 'proof'], ['bit', 'tongu', 'soo', 'swollen'], ['ugh', 'back', 'reno'], ['slight', 'disturb', 'hollyoak', 'tonight', 'realli', 'not', 'think', 'someth', 'shown'], ['got', 'notifi', 'podcast', 'accept', 'itun', 'cours', 'realiz', 'miss', 'format', 'fix'], ['work', 'graduat', 'shame'], ['wait', 'long', 'buy', 'pink', 'ticket', 'go', 'nose', 'bleed', 'sad', 'take', 'binocular'], ['spent', 'hour', 'tri', 'get', 'newborn', 'bird', 'front', 'garden', 'fli', 'poor', 'babi', 'success'], ['lif', 'wat', 'hate'], ['feel', 'effect', 'spring', 'sinus', 'kill'], ['sorri', 'bad', 'week', 'feel', 'like', 'could', 'get', 'good', 'sleep', 'would', 'much', 'better', 'fog'], ['def', 'see', 'ya', 'tonight', 'must', 'get', 'right', 'photo', 'not', 'get', 'yesterday', 'lol', 'thank', 'pleas', 'not', 'forget'], ['endodontist', 'abl', 'without', 'remov', 'hope', 'ceram', 'crown', 'not', 'shatter', 'time', 'later'], ['today', 'nice', 'posit', 'fun', 'day', 'sever', 'week', 'bum', 'day'], ['one', 'love', 'brittani', 'forgot', 'flower'], ['photoshop', 'not', 'let', 'save', 'anyth', 'due', 'disk', 'error', 'blend', 'took', 'hour'], ['realli', 'not', 'feelin', 'well'], ['aww', 'bb', 'sound', 'lone', 'want', 'drive', 'snuggl'], ['think', 'june', 'gloom', 'arriv'], ['think', 'would', 'die', 'play', 'pushit', 'miss', 'came', 'last', 'time', 'isi', 'tour'], ['sorri', 'not', 'get', 'see'], ['hi', 'angela', 'check', 'email', 'need', 'one', 'thing', 'sorri', 'day'], ['today', 'go', 'slower', 'time', 'drag'], ['urghh', 'go', 'project', 'not', 'want', 'wast', 'valuabl', 'weekend', 'time'], ['follow', 'follow', 'nice'], ['doubt', 'boo', 'alway', 'leav', 'behind', 'awesom', 'roadtrip'], ['poor', 'thing'], ['anyon', 'yucki', 'new', 'throwback', 'pepsi', 'mountain', 'dew', 'yet', 'plan', 'keep', 'around', 'not', 'drink'], ['still', 'not', 'care', 'quot', 'milk', 'quot', 'thought', 'bore'], ['want', 'dm', 'back', 'could', 'not', 'cuz', 'not', 'follow', 'thankss', 'anyway', 'mayb', 'ill', 'see', 'ya', 'around'], ['buy', 'lunch', 'get', 'pay', 'cut', 'next', 'month'], ['almost', 'readi', 'new', 'beta', 'found', 'showstop', 'bug', 'pleas', 'standbi'], ['ran', 'accela', 'unit', 'test', 'first', 'time', 'year', 'fail'], ['yeah', 'thought', 'littl', 'warn', 'guy', 'not', 'miss', 'shift', 'break', 'sure'], ['say', 'quot', 'video', 'quot', 'wtf'], ['sad', 'tea', 'oatmeal', 'cold'], ['lame', 'said', 'hello'], ['sorri'], ['dido', 'quot', 'us', 'littl', 'god', 'quot', 'quot', 'let', 'stop', 'fill', 'quot', 'make', 'panic'], ['yeah', 'feel', 'anyth', 'rememb', 'look', 'loopt', 'phone', 'nigga', 'coughin'], ['thank', 'gnite', 'thank', 'photo', 'sim', 'heart', 'broken'], ['finish', 'new', 'moon', 'woo', 'want', 'next', 'one'], ['danni', 'cut', 'beauti', 'curl'], ['saw', 'half', 'rro', 'staff', 'walk', 'not', 'see'], ['sad', 'right', 'becuz', 'ladi'], ['time', 'leav', 'passiv', 'agress', 'note', 'owner', 'not', 'dog', 'fault', 'shitti', 'owner'], ['lone', 'day', 'baguio'], ['feel', 'better'], ['know', 'feel'], ['hahah', 'not', 'valley', 'cool', 'valley', 'texa', 'valley', 'grand', 'valley', 'ahhaha', 'wish', 'live', 'california', 'valley'], ['much', 'buy', 'awesom', 'new', 'phone', 'soni', 'ericsson', 'berri', 'like', 'everyon', 'els'], ['got', 'dread', 'call', 'babysitt', 'littl', 'h', 'bump', 'head', 'sitter', 'say', 'fine', 'goos', 'egg', 'go', 'fast'], ['boo', 'listen'], ['want', 'rain', 'go', 'away', 'much', 'late'], ['aww', 'sorri', 'home', 'hope', 'ok', 'love', 'ya', 'wifey', 'lt', 'xx'], ['get', 'nerv', 'not', 'chang', 'pic'], ['wish', 'not', 'close'], ['wow', 'kind', 'bother', 'jon', 'deposit', 'appar', 'keep', 'get', 'fuck', 'time', 'deposit', 'hard'], ['imposs', 'watch', 'full', 'flash', 'video', 'mac'], ['realli', 'ill', 'not', 'well', 'week', 'got', 'bad', 'viral', 'infect'], ['want', 'dog', 'cat', 'someth', 'want', 'someth', 'unconditon', 'love', 'not', 'materialist', 'famili', 'memeb'], ['dollhous', 'save', 'come', 'back', 'anoth', 'season', 'bad', 'scrub', 'not'], ['love', 'use', 'remot', 'access', 'use', 'desktop', 'laptop', 'back', 'emerg'], ['go', 'tmobil', 'need', 'new', 'phone', 'not', 'work', 'anymor'], ['poor', 'kitti', 'noth', 'done', 'hope', 'least', 'abl', 'find', 'good', 'home'], ['not', 'make', 'smite', 'yeah', 'yeah', 'realli', 'cuti'], ['know', 'list', 'miss', 'conflict', 'plan', 'go'], ['man', 'not', 'know', 'wtf', 'talkin'], ['incred', 'worri', 'stanley'], ['gut', 'hollyoak', 'xx'], ['ha', 'found', 'new', 'cocktail', 'danc', 'wench', 'cranberri', 'juic', 'spice', 'rum', 'sound', 'nice', 'not', 'cranberri', 'juic'], ['hey', 'socialmediatv', 'ugh', 'way', 'video', 'gt', 'blah', 'pout', 'social', 'media', 'tv', 'live', 'gt'], ['not', 'sit', 'weird', 'pc', 'know', 'go', 'hit', 'deck', 'get'], ['miss', 'someon', 'haayi'], ['pleas', 'send', 'youtub', 'link', 'erin', 'watch', 'cook', 'not', 'get', 'see', 'cowboy'], ['content', 'content', 'content', 'gah', 'stori', 'life', 'right', 'thank', 'remind', 'tweet'], ['dnt', 'get', 'go', 'play', 'lasertag', 'besti', 'old', 'dead', 'gone'], ['bloodi', 'sunburn'], ['oh', 'opera', 'not', 'googl', 'friend', 'weep'], ['start', 'spoil', 'pug', 'sinc', 'brother', 'max', 'pass', 'away', 'tuesday', 'miss'], ['tummi', 'hurt', 'oh', 'noe'], ['sad', 'casu', 'everyon', 'go', 'seper', 'way', 'never', 'go', 'see', 'friend'], ['annoy', 'overwhelm'], ['realli', 'sick'], ['never', 'answer', 'back'], ['smh', 'play', 'dress', 'lol', 'not', 'see', 'vid', 'though', 'not', 'work'], ['potluck', 'daniell', 'take', 'veggi', 'tray', 'miss'], ['wow', 'slept', 'till', 'good', 'job'], ['game', 'bad', 'leav', 'hi'], ['special', 'alreadi', 'burned', 'wore', 'mum', 'shoe', 'well', 'blister', 'suck', 'ball'], ['go', 'buy', 'deck', 'sleev', 'card', 'page', 'man', 'page', 'expens', 'stupid', 'organ', 'collect'], ['california', 'budget', 'deficit', 'billion', 'mean', 'big', 'problem', 'lot', 'cut', 'includ', 'state', 'park'], ['burn', 'tongu', 'workk'], ['lupo', 'bit', 'far', 'methink', 'love', 'hour', 'way', 'provid', 'love', 'provid'], ['site', 'first', 'date', 'macri', 'deli', 'close', 'lunch', 'favorit', 'local', 'greek', 'spot', 'trojan', 'hors', 'instead'], ['soo', 'hungri', 'right', 'not', 'lunch', 'time'], ['pool', 'orlando', 'got', 'new', 'kick', 'go', 'seaworld', 'tommrow', 'miss', 'best', 'friend'], ['jus', 'skin', 'knee', 'wat', 'hurt', 'lyke', 'hell', 'though', 'alway', 'tha', 'littl', 'one', 'hurt', 'tha'], ['sad', 'come', 'pooch', 'hall', 'game', 'not', 'accept', 'friend', 'request', 'facebook', 'yet'], ['oh', 'sick', 'feel', 'kind', 'sick', 'hate', 'overcast', 'weather'], ['sorri', 'hear', 'dude', 'prob', 'much'], ['go', 'arthroscopi', 'repair', 'knee'], ['yeah', 'stomach', 'bug', 'someth', 'fever', 'etc', 'not', 'fun'], ['woke', 'came', 'realize', 'put', 'much', 'want', 'need', 'drop', 'friend', 'dammit'], ['anoth', 'interview', 'pleas', 'somebodi', 'hire', 'late'], ['sigh', 'metal', 'friend', 'keep', 'plan', 'stuff', 'sunday', 'afternoon', 'work', 'feel', 'like', 'lose', 'touch'], ['depress', 'help'], ['oh', 'male', 'stripper', 'lmao'], ['low', 'point', 'poor', 'pigeon', 'outsid', 'build', 'not', 'capabl', 'fli', 'wander', 'sidewalk', 'sad'], ['weird', 'trigger', 'definit', 'ask', 'monday', 'dude', 'shitti'], ['sorri', 'seen', 'strang', 'seem', 'happen', 'iphon', 'perhap', 'problem', 'twitterif'], ['soo', 'lucki', 'fianc', 'away', 'marin', 'not', 'even', 'seen', 'yet'], ['not', 'look', 'forward', 'drive', 'storm'], ['not', 'like', 'sick', 'guidanc', 'counsellor', 'suppos', 'take', 'kid', 'school', 'bowl', 'amp', 'pizza'], ['yeah', 'sorri', 'busi', 'last', 'night', 'ill', 'tri', 'go', 'next', 'week'], ['hey', 'link', 'not', 'work'], ['shit', 'back', 'home', 'tallcre', 'rez', 'not', 'see', 'boyfriend'], ['cri', 'whilst', 'watch', 'hollyoak', 'need', 'life', 'lol'], ['somebodi', 'accident', 'sleep', 'hour', 'instead', 'not', 'hang', 'work', 'blow', 'sorri'], ['mask', 'mo', 'chari', 'not', 'send', 'one', 'amp', 'not', 'bother', 'make', 'one', 'wear', 'boy', 'cloth'], ['genius', 'look', 'good', 'bret', 'lov', 'cancel', 'concert', 'franc', 'readi', 'men'], ['poor', 'goos'], ['head', 'throb', 'lack', 'sleep', 'still', 'mucho', 'work', 'not', 'feel', 'like', 'friday'], ['work', 'boo'], ['ate', 'mani', 'kiss'], ['soo', 'sleepi', 'last', 'day', 'school'], ['return', 'sideway', 'fuck', 'med', 'bill'], ['aw', 'stink', 'sorri'], ['readi', 'sadden', 'depress', 'dull', 'upset', 'dread', 'weekend'], ['ohh', 'like', 'frustrat', 'hand', 'iphon', 'last', 'week', 'upgrad', 'could', 'not', 'unlock'], ['miss', 'kitchen', 'team'], ['darn', 'bacon'], ['month', 'old', 'african', 'grey', 'parrot', 'sad', 'sale', 'reptil', 'forum', 'uk'], ['sit', 'bore', 'ass', 'litteratur', 'listen', 'jack', 'johnson', 'miss', 'gf', 'soo', 'much'], ['terribl', 'headach', 'need', 'relief'], ['waa', 'octo', 'drive', 'not', 'go'], ['soo', 'tire', 'wish', 'time', 'nap', 'work'], ['urghh', 'make', 'cri'], ['agre', 'marri', 'yrs', 'move', 'blah'], ['ah', 'shit', 'chest', 'hurt'], ['fuck', 'traffic', 'go', 'late'], ['make', 'sick'], ['hate', 'broken', 'wrist', 'pe', 'next', 'ugh'], ['go', 'get', 'found', 'stayin', 'til'], ['got', 'deadlin', 'meet', 'tgif'], ['ii', 'want', 'go', 'home', 'thee', 'weekend', 'ii', 'gas', 'sukk'], ['great', 'lunch', 'babi', 'bull', 'time', 'work', 'til'], ['still', 'hope', 'job', 'strep', 'look', 'like', 'not', 'look', 'around', 'place', 'next', 'coupl', 'day'], ['think', 'miss'], ['bore', 'chem', 'n', 'super', 'hungri', 'ugh'], ['cancel', 'javaon'], ['saw', 'stalkerish', 'elev', 'brooki', 'eat', 'moracca', 'go'], ['bore', 'tire', 'got', 'headach'], ['pictur', 'made', 'cri', 'lol'], ['say', 'miss', 'cousin', 'bad'], ['not', 'repli', 'none', 'fan', 'not', 'know', 'trust'], ['fun', 'show', 'tonight', 'wish', 'could'], ['could', 'not', 'get', 'time', 'vega', 'trip', 'still', 'look', 'like', 'noob'], ['heart', 'goe'], ['make', 'wors', 'friend', 'parti', 'tonight', 'stuck', 'not', 'seen', 'month'], ['burn', 'cd', 'fuck', 'outa', 'blank', 'disc'], ['hey', 'sweeti', 'cnt', 'go', 'fri', 'thnks', 'much'], ['love', 'sunshin', 'wish', 'poor', 'richi', 'would', 'feel', 'better'], ['psych', 'better', 'neuro', 'least', 'better', 'part', 'town', 'miss'], ['fuckin', 'tire', 'not', 'get', 'home', 'till', 'work', 'bjs'], ['yay', 'nice', 'weather', 'boo', 'cici', 'not', 'weekend'], ['dream', 'not', 'like'], ['think', 'someth', 'okay', 'goodluck', 'ako'], ['god', 'need', 'revis', 'today', 'lazi'], ['got', 'go', 'shop', 'wife', 'tesco', 'knew', 'day', 'go', 'well'], ['stupid', 'idiot', 'ran', 'stop', 'sing', 'almost', 'kill', 'car'], ['also', 'tire'], ['laptop', 'poop', 'new', 'harddriv', 'need', 'use', 'dh', 'old', 'pc', 'mayb', 'offlin', 'damn', 'bsod', 'happen', 'mani', 'time', 'safe', 'mode'], ['lonestar', 'pitcher', 'not', 'still', 'recov', 'last', 'weekend', 'bout', 'irrespons', 'gluten', 'consumpt'], ['save', 'not', 'buy', 'couch', 'go', 'toward', 'pay', 'visit', 'er', 'uti'], ['rose', 'citi', 'siren', 'uber', 'cool', 'last', 'night', 'wish', 'could', 'stay', 'longer'], ['wonder', 'happen', 'sun', 'damn', 'may', 'grey'], ['feel', 'nostalg', 'sad', 'happi', 'not', 'feel', 'not', 'time', 'feel', 'love'], ['sprinkl', 'outsid', 'hope', 'not', 'rain', 'game'], ['fume', 'ebay', 'purchas', 'gone', 'bad', 'outta', 'noth', 'show', 'amp'], ['miss', 'earring', 'lol', 'let', 'know', 'close'], ['wish', 'sun', 'would', 'shine', 'not'], ['ill', 'attempt', 'rememb', 'lot', 'noth', 'go'], ['cri', 'eye', 'watch', 'girl', 'last', 'period', 'hahah'], ['leavin', 'racist', 'start', 'cryin'], ['bother', 'celeb', 'eh', 'almost', 'like', 'talk'], ['wish', 'realiz', 'wife', 'not', 'held', 'onto', 'debit', 'card', 'took', 'long', 'walk', 'get', 'lunch', 'not', 'grr'], ['hungri', 'not', 'eat', 'anyth', 'right', 'tongu', 'hurt', 'bad'], ['not', 'funni'], ['everyon', 'anoth', 'hater'], ['psh', 'not', 'cool', 'enough', 'go'], ['aww', 'friend', 'call', 'said', 'got', 'better', 'job', 'not', 'work', 'anymor'], ['daisi', 'got', 'attack', 'anoth', 'doggi', 'park'], ['webcam', 'hoepfner', 'burgfest', 'karlsruh', 'automat', 'reload', 'fail'], ['need', 'rest', 'weekend', 'work', 'instead'], ['work', 'damn', 'financi', 'project', 'definit', 'not', 'fun', 'weekend', 'want', 'spend', 'wit', 'baabi', 'waah'], ['happen', 'often', 'hate', 'everi', 'time', 'move', 'usernam', 'thought', 'would', 'love', 'move', 'soon'], ['yep', 'go', 'better'], ['xbox', 'broke', 'hope', 'enjoy', 'play', 'forward'], ['cantt', 'grandpar'], ['downsid', 'get', 'tdl', 'day', 'earli', 'not', 'time', 'read', 'til', 'next', 'week', 'anyway', 'still', 'hurrah', 'clutch', 'close'], ['tie', 'shoe', 'could', 'not', 'figur'], ['oh', 'fuck', 'return', 'supermarket', 'doom', 'find', 'noth', 'drink'], ['never', 'made', 'gym', 'blowout', 'san', 'thong', 'wear', 'compani', 'phew', 'bummer', 'miss', 'workout'], ['glorious', 'week', 'best', 'holiday', 'ever', 'think', 'not', 'want', 'go', 'home', 'morn'], ['hangin', 'fam', 'head', 'hurtin'], ['sorri'], ['present', 'senior', 'board', 'fml'], ['wish', 'stuck', 'pile', 'box', 'sore', 'back', 'load', 'tesco', 'blue', 'shopper', 'bag', 'fill', 'kitchen'], ['crap', 'near', 'forgot', 'pin', 'not', 'tri', 'learn', 'anyth', 'new', 'futur', 'lest', 'push', 'vital', 'inform'], ['school', 'victoria', 'amp', 'bryan', 'school', 'soon', 'sadd'], ['got', 'right', 'bad', 'headach'], ['love', 'mini'], ['contempl', 'get', 'hair', 'cut', 'sever', 'anxieti'], ['know', 'got', 'wait', 'earl', 'think', 'late', 'wrong'], ['got', 'home', 'work', 'feet', 'kill'], ['hiyaa', 'tour', 'realli', 'disappoint', 'could', 'not', 'make', 'hope', 'dandi', 'xx'], ['addin', 'last', 'comment', 'spose', 'go', 'see', 'jona', 'brother', 'movi', 'guess', 'could', 'not', 'go', 'aswel', 'cos', 'sick'], ['work', 'realli', 'slow', 'beauti', 'day', 'friday'], ['bugger', 'forgot', 'still', 'wash', 'machin'], ['want', 'play', 'tonight', 'pout', 'pout', 'side', 'face'], ['jus', 'sittin', 'da', 'libray', 'stupid', 'comput', 'not', 'let', 'order', 'mac', 'foundat'], ['swolen', 'shitt', 'boo', 'hoo'], ['not', 'get', 'excit', 'bbi', 'hear', 'thunder', 'roll'], ['yes', 'strang', 'infect', 'bodi', 'caus', 'sicker', 'need', 'fever'], ['noth', 'like', 'get', 'work', 'find', 'cover', 'extra', 'shift', 'week', 'look', 'like', 'anoth', 'hr', 'work', 'week'], ['not', 'want', 'get', 'dress', 'adult', 'today'], ['tri', 'find', 'friend', 'not', 'luck'], ['not', 'thrill', 'marathon', 'sunday', 'assign', 'street', 'less'], ['accidentali', 'slam', 'finger', 'trunk'], ['dad', 'tell', 'travel', 'alon', 'not', 'problem', 'done', 'bore'], ['damn', 'hot', 'weather', 'freez', 'oz', 'moment', 'miss', 'summer'], ['disloc', 'pain', 'disloc', 'toe', 'remind', 'today', 'thank', 'toe', 'still', 'feel', 'weird'], ['damn', 'guy', 'not', 'hope', 'win', 'though'], ['know', 'wut', 'devi', 'dev', 'sure', 'suck', 'havin', 'id', 'weekend', 'r', 'gone', 'miser', 'week', 'drink', 'plz'], ['could', 'make', 'philadelphia', 'year', 'would', 'sad', 'not'], ['tri', 'find', 'friend', 'not', 'luck'], ['head', 'yale', 'grandmoth', 'car', 'accid'], ['two', 'load', 'move', 'crew', 'done', 'start', 'done', 'day', 'bad', 'ac', 'not', 'work', 'new', 'place', 'oh', 'life'], ['broken', 'leg', 'comment', 'pleas'], ['oop', 'not'], ['gah', 'money', 'least', 'not', 'bakugan'], ['macbook', 'die', 'switch', 'iphon'], ['would', 'love', 'plan'], ['hmm', 'not', 'birthday', 'cake', 'hoo'], ['miss', 'yoouu'], ['watchin', 'tyra', 'bore', 'like', 'alway', 'stomach', 'hurt'], ['work', 'today', 'tomorrow', 'dan', 'parti', 'yay'], ['ultimatum', 'ultimatum', 'matter', 'dress', 'suck'], ['car', 'shop', 'kaci', 'yay'], ['pretti', 'mom', 'go', 'home', 'hour', 'fix', 'leav', 'aww', 'go', 'texa', 'month'], ['mani', 'test', 'todayi', 'not', 'feel', 'confid', 'anyy'], ['afraid', 'go', 'say'], ['yeah', 'super', 'crap', 'today', 'stupid', 'write', 'ugh'], ['look', 'forward', 'mandarin', 'album', 'hope', 'come', 'singapor'], ['transfer', 'photo', 'annoy', 'want', 'watch'], ['killer', 'come', 'td', 'banknorth', 'boston', 'not', 'go', 'everyon', 'els', 'go', 'though', 'ticket', 'sale', 'sat'], ['give', 'year', 'old', 'golden', 'retriev', 'away', 'anoth', 'famili', 'today', 'sad'], ['not', 'fan', 'bulmer', 'magner', 'pear', 'awesom', 'want', 'slush', 'puppi', 'though', 'hurryup', 'classi', 'omgimpati'], ['simpli', 'want', 'go', 'ny'], ['one', 'welcom', 'new'], ['miss'], ['switch', 'cellphon', 'huaa', 'not', 'sleep', 'buzz', 'bebe'], ['feel', 'like', 'crap'], ['friend', 'love', 'spot', 'want', 'go'], ['traumat', 'sadden', 'babi', 'squirel', 'found', 'abandon', 'sidewalk'], ['omg', 'aw', 'wow', 'pyr', 'figur', 'open', 'doorknob', 'one', 'day', 'crush', 'jaw'], ['bummer', 'macbook', 'bug', 'mac', 'head', 'want', 'lend', 'help', 'hand'], ['still', 'hate', 'whole', 'twitter', 'repli', 'thing', 'feel', 'like', 'miss', 'bit', 'fixrepli'], ['quit', 'like', 'basebal', 'bball', 'oh', 'odd', 'gridiron', 'match', 'tini', 'tini', 'part', 'world', 'popul', 'call', 'footbal'], ['look', 'soo', 'pretti', 'love', 'dang', 'wish', 'ny', 'could', 'c', 'thang'], ['yeah', 'stop', 'make', 'fun', 'got', 'get', 'new', 'one'], ['love', 'one', 'leav', 'sunday', 'sad'], ['not', 'good', 'day'], ['email', 'link', 'pretti', 'sad', 'uh', 'rip', 'jessi', 'kitti'], ['need', 'get', 'away', 'wish', 'money', 'go', 'travel', 'bit', 'miss', 'east', 'coast', 'friend'], ['upload', 'pcd', 'onto', 'itun', 'xd', 'use', 'certian', 'event', 'caus', 'lt', 'sad'], ['dude', 'miss', 'way', 'name', 'mix', 'quot', 'damn', 'man', 'save', 'quot', 'hahaha'], ['dog', 'dug', 'hole', 'backyard', 'well', 'iwa', 'sleep', 'ground'], ['urgh', 'feel', 'like', 'crap', 'today', 'bad', 'headach', 'tire', 'blood', 'sugar', 'high'], ['wish', 'go', 'place', 'brandwkshop', 'see', 'got', 'scott', 'bedburi', 'poor'], ['follow', 'went', 'would', 'follow', 'back', 'not', 'anyth', 'till', 'get', 'interwebnet', 'want', 'follow', 'interest'], ['work', 'man', 'bad', 'job', 'whole', 'team', 'want', 'leav', 'believ', 'would', 'make', 'money', 'not'], ['anoth', 'qi', 'miss', 'next'], ['bout', 'get', 'readi', 'work', 'ugh', 'hate', 'workin', 'friday'], ['bore', 'wait', 'class', 'start', 'sigh', 'midterm', 'next', 'week', 'gt', 'lt'], ['jen', 'not', 'talk', 'like', 'day'], ['feel', 'like', 'want', 'cri', 'not', 'get', 'empti', 'feel', 'stomach', 'throat', 'start', 'hurt'], ['geometri', 'damn', 'bore', 'wast', 'time', 'minut', 'left'], ['friday', 'not', 'treat', 'well', 'far'], ['daddi', 'hospit', 'not', 'like'], ['thing', 'fun', 'itouch'], ['sort', 'twitter', 'frustrat', 'not', 'talk', 'someon', 'respond', 'slowli', 'issu', 'capac', 'challeng'], ['gaahh', 'want', 'stream', 'back'], ['fell', 'sidewalk', 'harvard', 'squar', 'stupid', 'cobbleston', 'hand', 'hurt'], ['luci', 'upset', 'tummi', 'sore', 'leg'], ['internet', 'stop', 'work', 'right', 'middl', 'quantum', 'leap', 'grr'], ['miss', 'quot', 'quot'], ['not', 'teas', 'desper', 'need', 'adjust'], ['perfect', 'outsid', 'work'], ['miss', 'good', 'old', 'day'], ['dust', 'amp', 'vacuum', 'apart', 'think', 'need', 'anoth', 'new', 'entir', 'apart', 'smoki', 'bought', 'one', 'kmart'], ['bore', 'mind'], ['jet', 'repair'], ['finish', 'twilight', 'wish', 'not'], ['know', 'not', 'go', 'sad', 'need', 'come', 'back', 'mi', 'soon', 'possibl', 'haha'], ['ooh', 'hangov'], ['buri', 'web', 'chang', 'go', 'make', 'lunch', 'not', 'chanc', 'later', 'much'], ['long', 'day', 'offic', 'tire', 'week'], ['got', 'fair', 'flat', 'rout', 'avail', 'problem', 'longer', 'fulli', 'function', 'bike', 'ride'], ['damn', 'paid', 'like', 'first', 'slight', 'stoopid', 'show', 'charg', 'pop', 'make', 'sad'], ['steak', 'burrito', 'bowl', 'right', 'wish', 'not', 'lazi', 'go', 'downtown'], ['still', 'repli', 'simfing', 'problem', 'irap', 'parodi', 'video', 'get', 'respons', 'sorri', 'guy'], ['not', 'like', 'kde', 'sinc', 'ver', 'like', 'vista', 'fail'], ['omg', 'hollyoak', 'well', 'dramat'], ['tummi', 'hurt'], ['tri', 'audioboo', 'record', 'distort', 'due', 'high', 'volum', 'ob'], ['think', 'day', 'thing', 'get', 'work', 'ahh', 'not', 'want', 'go'], ['would', 'realli', 'like', 'not', 'work', 'instead', 'take', 'nap'], ['bad'], ['still', 'not', 'sick', 'sick'], ['alreadi', 'know', 'go', 'miss', 'josh', 'next', 'week', 'mom', 'need', 'surgeri', 'work', 'suck', 'not', 'good', 'day', 'oh', 'tum', 'tum', 'hurt'], ['miss', 'cauzinhoo', 'alreadi'], ['hate', 'weather', 'want', 'bake'], ['serious', 'need', 'live', 'somewher', 'fabul', 'queer', 'miss', 'around', 'gay', 'peopl'], ['mast', 'ladki', 'patata', 'hai', 'chal', 'jisk', 'sath', 'bhi', 'jay', 'khush', 'miss', 'love', 'twpp'], ['tummi', 'hurt'], ['updat', 'old', 'miss', 'orang', 'nano'], ['lost', 'dc', 'hat'], ['got', 'anoth', 'got', 'laid', 'lot', 'peopl', 'becom', 'unemploy'], ['dad', 'tri', 'forc', 'learn', 'drive', 'not', 'like', 'thing', 'not', 'good', 'public'], ['ever', 'told', 'absolut', 'hate', 'write', 'email', 'status', 'pdate', 'fine', 'email'], ['wish', 'could', 'offer', 'hug', 'right', 'bad'], ['lost', 'count', 'sorri', 'let'], ['wow', 'realli', 'not', 'know', 'serious', 'well', 'suck', 'texa', 'must', 'chock', 'full', 'asbesto'], ['work', 'around', 'hous', 'boo'], ['ever', 'happen', 'creat', 'music', 'collabor', 'fun', 'without', 'quot', 'get', 'quot', 'question', 'mind', 'pleas'], ['realli', 'get', 'rid', 'sad'], ['lmao', 'get', 'alot', 'haha'], ['unless', 'absolut', 'gorgeous', 'would', 'rather', 'men', 'stay', 'cover', 'seen', 'sight', 'today', 'put', 'food', 'ukpub'], ['piss', 'someon', 'took', 'wallet'], ['realli', 'miss', 'sebastian'], ['anoth', 'lake', 'park', 'kid', 'go', 'tulan', 'not', 'uniqu', 'anymor'], ['throat', 'infect', 'come', 'strong', 'think', 'tast', 'blood'], ['work', 'say', 'bye', 'goshi', 'sunday', 'leav', 'poland', 'month'], ['time', 'like', 'lost', 'one'], ['not', 'think', 'vote', 'anymor', 'tri'], ['hell', 'youtub', 'not', 'work', 'nno'], ['oh', 'god', 'watch', 'clair', 'escap', 'realli', 'quit', 'sad'], ['go', 'withdrawl', 'miss', 'someon'], ['found', 'not', 'tweet', 'phone', 'scotland', 'differ', 'network', 'go', 'upload', 'photo', 'twitpic', 'sorri'], ['eh', 'shut', 'freeway', 'omw', 'job', 'interview', 'guess', 'go', 'late'], ['oh', 'hope', 'feel', 'better', 'soon', 'hug', 'flu', 'earlier', 'month'], ['facebook', 'use', 'myspac', 'twitter', 'hard', 'check', 'facebook'], ['total', 'forgot', 'soccer', 'today', 'ugh', 'today', 'actual', 'good'], ['listen', 'without', 'tortur', 'sad'], ['get', 'sick', 'ugh', 'lose', 'voic', 'noo'], ['trueli', 'sad', 'news', 'hear', 'creat', 'equal', 'sad', 'know', 'neighbor', 'prejudic', 'peopl'], ['bummer', 'not', 'got', 'one', 'yet', 'wait', 'year', 'grr'], ['decid', 'not', 'want', 'see', 'sweeti', 'not'], ['almost', 'die', 'laptop', 'screen', 'set', 'bright', 'reinstal', 'window', 'vista', 'got', 'headach', 'insanedefault'], ['full', 'subway', 'bomb', 'wait', 'shift', 'start'], ['quitsmokingdiari', 'week', 'tomorrow', 'sinc', 'give', 'yaayi', 'not', 'want', 'talk'], ['bout', 'tuh', 'head', 'find', 'sum', 'wher', 'tuh', 'go', 'chill'], ['wish', 'hang', 'kobe', 'right'], ['math', 'not', 'fun', 'oh', 'well', 'get', 'cook', 'soon', 'get', 'home'], ['guess', 'go', 'tri', 'nap', 'thing', 'sinc', 'kid', 'not', 'cooper', 'yet', 'week', 'sure', 'not', 'differ'], ['poor', 'babi', 'got', 'first', 'booboo', 'caus', 'lol'], ['pull', 'interest', 'meet', 'urgent', 'support', 'request'], ['ah', 'sorri', 'hear', 'trip', 'cancel'], ['mit', 'bookstor', 'best', 'book', 'select', 'one', 'bookstor', 'coupon', 'discount'], ['not', 'care', 'struggl'], ['dumb', 'reason', 'dresser', 'sticki', 'top', 'anoth', 'reason', 'famili', 'histori', 'book', 'got', 'attach', 'back', 'jack'], ['say', 'ignor', 'frown'], ['miss', 'boo', 'anoth', 'note', 'soreadi', 'game', 'come', 'grill', 'anyon'], ['still', 'lot', 'time', 'stupid', 'contract', 'month', 'chang', 'provid'], ['would', 'like', 'go', 'back', 'bed', 'horribl', 'headach', 'pound', 'behind', 'eye', 'skull'], ['thank', 'clair', 'not', 'watch', 'yet'], ['know', 'not', 'say', 'fuck', 'horni', 'hell'], ['know', 'feel', 'littl', 'depress'], ['sorri'], ['feel', 'like', 'cri', 'one', 'diamond', 'earring', 'fell', 'ear', 'loos', 'not', 'find', 'forev'], ['kwanghock', 'hao', 'da', 'za', 'ji', 'pa', 'miss', 'food', 'much'], ['feel', 'sick', 'much', 'chees', 'toast'], ['nice', 'day', 'look', 'like', 'go', 'get', 'excit', 'take', 'photo', 'get', 'home'], ['hotti', 'pooh', 'oo', 'bet', 'sounda', 'magic', 'hh', 'come', 'home', 'hour'], ['oh', 'fan', 'broke', 'noo', 'great', 'swelter', 'heat', 'like', 'hot', 'laptop', 'warm', 'well'], ['sorri'], ['call', 'sold', 'bummer', 'next', 'time'], ['sad'], ['got', 'done', 'disc', 'found', 'two', 'disc', 'last', 'two', 'day', 'solid', 'wish', 'would', 'treat', 'koozi', 'better', 'not', 'throw', 'around'], ['eat', 'roommat', 'cereal', 'sorri', 'bro'], ['wish', 'weekend', 'go', 'sol'], ['tri', 'energi', 'drink', 'report', 'back', 'guy', 'sweat', 'worst', 'cramp', 'want', 'lie'], ['beauti', 'mn', 'day', 'stuck', 'insid', 'play', 'zelda', 'got', 'play', 'least', 'hrs', 'today'], ['know', 'inlov', 'actual'], ['well', 'daughter', 'said', 'miss', 'go', 'soo', 'fast'], ['ohh', 'miss', 'brunch'], ['oh', 'god', 'liter', 'drove', 'rain', 'hard', 'could', 'not', 'see', 'front', 'shake'], ['oop', 'forgot', 'barbecu', 'work', 'today', 'not', 'need', 'pack', 'lunch'], ['nice', 'ahd', 'work', 'today'], ['loll', 'cba', 'get', 'sun', 'stuff', 'forgot', 'back', 'leg', 'would', 'not', 'gwt', 'tan', 'lol', 'hurt', 'soo', 'bad', 'right'], ['dude', 'sorri', 'never', 'got', 'number', 'fail', 'rememb'], ['jelz', 'want', 'hous', 'gt'], ['nc', 'tonight', 'june', 'go', 'miss', 'nyc', 'get', 'readi', 'birthday', 'luau', 'bbq', 'juli'], ['ohh', 'would', 'def', 'give', 'tht', 'kenyatta', 'cam', 'not', 'mine', 'sri', 'want', 'tht', 'pic'], ['horribl', 'day'], ['sad', 'true'], ['instal', 'new', 'modem', 'meant', 'run', 'time', 'faster', 'old', 'one', 'slower', 'hell', 'gah', 'slow', 'internet', 'kill'], ['never', 'eat', 'broadway', 'pizza', 'feelin', 'ill'], ['pool', 'today', 'stupid', 'weather'], ['rosco', 'smooth', 'sailin', 'one', 'tell', 'song', 'rap', 'friend', 'fail'], ['love', 'littl', 'brother', 'friend', 'come'], ['not', 'think', 'neti', 'pot', 'work', 'mayb', 'wrong'], ['not', 'believ', 'nice', 'weather', 'day', 'stuck', 'door', 'day'], ['new', 'landlord', 'call', 'not', 'move', 'tomorrow', 'morn', 'way', 'rain', 'parad'], ['wish', 'could', 'enjoy', 'weekend', 'xx'], ['pack', 'fun', 'good', 'thing', 'new', 'unit', 'keep', 'go', 'still', 'fun'], ['play', 'munchkin', 'today', 'talk', 'cake', 'get', 'readi', 'yard', 'sale', 'tomorrow', 'not', 'look', 'forward'], ['cours', 'not', 'come', 'bois'], ['littl', 'slow', 'tri', 'one', 'ben', 'amp', 'jerri', 'mission', 'marzipan', 'bit', 'letdown'], ['tell', 'not', 'miss', 'boge'], ['thank', 'not', 'care', 'look', 'face'], ['ow', 'shoulder', 'muscl', 'not', 'rememb', 'name', 'p', 'hurt', 'not', 'even', 'know'], ['suck'], ['tire', 'whyy', 'make', 'stop', 'merm', 'not', 'go', 'fun', 'tonight'], ['parent', 'got', 'f', 'start'], ['dad', 'fever', 'sinc', 'last', 'nite', 'need', 'bottl', 'blood', 'go', 'tomorrow'], ['not', 'know', 'even', 'amp', 'r', 'e', 'n', 'g', 'work', 'tomorrow', 'suck'], ['great', 'say', 'old'], ['work', 'buddi', 'left', 'earli', 'today', 'lone', 'keep', 'lookin', 'time', 'bare', 'min', 'later', 'last', 'time'], ['took', 'forum', 'access', 'away', 'fail'], ['laptop', 'go', 'die', 'not', 'work'], ['guitar', 'not', 'herew', 'yet', 'feel', 'like', 'lost', 'limb'], ['home', 'sick'], ['guitar', 'not', 'yet', 'feel', 'like', 'lost', 'limb'], ['mayb', 'go', 'one', 'day', 'thank', 'swine'], ['mobil', 'not', 'like'], ['omg', 'sad', 'jus', 'took', 'gossip', 'girl', 'done'], ['man', 'wake', 'suck', 'go', 'work', 'like', 'min', 'later'], ['miss'], ['not', 'wait', 'start', 'weekend', 'sick', 'work', 'fresh', 'herb'], ['sick'], ['sleep', 'depriv', 'hot', 'sleep'], ['hope', 'son', 'okay'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['way', 'dad', 'sista', 'deb'], ['hate', 'take', 'antibiot', 'think', 'need', 'get', 'boo'], ['laptop', 'broke', 'want', 'help', 'girl', 'take', 'best', 'buy', 'weekend', 'pleas', 'ill', 'feed'], ['sniff', 'feel', 'left', 'grin'], ['home', 'sick', 'point', 'weekend', 'ruin'], ['vote', 'sinc', 'like', 'four', 'day', 'ago', 'think', 'told', 'friend', 'vote', 'million', 'time', 'win', 'love'], ['one', 'watch', 'peep', 'actual', 'focus', 'final', 'alreadi'], ['would', 'yes', 'not', 'wait', 'bb', 'love', 'heard', 'not', 'show', 'hr', 'live', 'stream', 'year', 'though'], ['banana', 'cup', 'healthi', 'breakfast'], ['aww', 'could', 'would', 'gbi'], ['life', 'not', 'fair', 'gt', 'feel'], ['worst', 'day'], ['saw', 'show', 'week', 'ago', 'hate', 'say', 'not', 'impress', 'fun', 'good', 'though'], ['new', 'rip', 'hot', 'pink', 'polaroid'], ['although', 'know', 'would', 'never', 'okay', 'homebirth', 'moot', 'point', 'sinc', 'done', 'babi'], ['not', 'good', 'news', 'time', 'incred', 'hard', 'decis'], ['start', 'tomorrow', 'go', 'book', 'sam', 'forgot'], ['math', 'class', 'ugh', 'rather', 'class', 'act', 'damn', 'quiz', 'got', 'act', 'fast'], ['pansi', 'wtf', 'codeh'], ['dish', 'train', 'newcastl', 'leav', 'nontweetinggirlfriend', 'behind', 'week', 'alway', 'bit', 'sad'], ['get', 'impati', 'turnaround', 'time', 'repair', 'broken', 'arriv', 'new', 'espresso', 'machin', 'fb'], ['awe', 'not', 'know', 'cat', 'got', 'skin', 'cancer'], ['still', 'not', 'get', 'vanilla', 'frosti', 'yet'], ['vote', 'everi', 'day'], ['wonder', 'know', 'shallow', 'airi', 'amp', 'dumb', 'tweet', 'make', 'sound', 'guess', 'not', 'would', 'probabl', 'stop'], ['ohh', 'get'], ['borrow', 'mom', 'lenovo', 'laptop', 'trackpad', 'batteri', 'life', 'suck', 'ball', 'quarter', 'serious', 'miss', 'macbook', 'pro'], ['realli', 'want', 'milkshak', 'money'], ['want', 'go', 'tonight', 'not', 'get', 'home'], ['wonder', 'dat', 'n', 'church', 'sumtim', 'nt', 'knowng', 'certain', 'sung', 'seem', 'like', 'erbdi', 'know', 'quick', 'feel', 'bad', 'cnt', 'sing', 'along'], ['could', 'talk', 'probabl', 'not', 'though'], ['inde', 'much', 'fail'], ['want', 'meet', 'jeff', 'hardi', 'beth', 'britt', 'bad', 'soo', 'annoy', 'x', 'x'], ['java', 'not', 'work', 'hmph', 'not', 'upload', 'photo', 'facebook'], ['url', 'previous', 'post', 'timer', 'job', 'would', 'remov', 'space', 'mess', 'url'], ['visit', 'grandpar', 'manhattan', 'drop', 'sister', 'week', 'wish', 'excus', 'tire', 'today'], ['yeah', 'wast', 'time', 'fail'], ['tire', 'amp', 'readi', 'bed', 'realli', 'mood', 'salt', 'amp', 'pepper', 'chicken', 'wing', 'amp', 'noodl', 'money', 'chines'], ['sound', 'like', 'nice', 'relax', 'afternoon', 'mow', 'lawn', 'walk', 'dog'], ['damn', 'dude', 'dia', 'e', 'eu', 'tenho', 'curso', 'na', 'drc', 'flash', 'expert'], ['thing', 'hate', 'playoff', 'pen', 'hockey', 'much', 'ticket', 'want', 'go', 'game', 'ticket'], ['oh', 'great', 'tampa', 'peopl', 'anybodi', 'area', 'know', 'someon', 'work', 'jain', 'societi', 'tampa', 'bay', 'none', 'phone', 'work'], ['vote', 'person', 'myspac', 'keep', 'talk', 'fake', 'lt', 'help', 'thru', 'hrdest', 'time', 'life', 'x'], ['read', 'someth', 'happi'], ['alicia', 'tonight', 'idkk', 'ughh'], ['ohio', 'lover', 'tattoo', 'got', 'design', 'shirt', 'haha', 'lost', 'shirt'], ['sad', 'sit', 'home', 'could', 'go', 'partyy'], ['tri', 'not', 'want', 'listen', 'not', 'know', 'anymor', 'feel', 'like', 'not', 'care', 'anymor'], ['twitterfail', 'fuck', 'hard', 'right', 'annoy'], ['ahh', 'sad'], ['made', 'sad'], ['waah', 'asshat', 'cvs', 'yesterday', 'shortchang', 'paid', 'chip'], ['finger', 'hurt', 'infect'], ['stop', 'follow', 'not', 'cool', 'enough'], ['take', 'forev', 'upload'], ['told', 'tri', 'said', 'late', 'girl', 'took', 'get', 'readi', 'want', 'meet'], ['hate', 'weather', 'live', 'ure', 'whole', 'life', 'get', 'use', 'alway', 'raini'], ['tri', 'az', 'brook', 'omg', 'not', 'even', 'outsid', 'less', 'minut', 'get', 'neck', 'burn'], ['noo', 'miami', 'want', 'lay', 'rain', 'stop'], ['hate', 'sound', 'not', 'like', 'shut'], ['major', 'crampl'], ['miss', 'place', 'miss', 'wegman', 'even', 'whole', 'food', 'wegman'], ['vote', 'mr', 'twitter', 'univers', 'bit', 'stuck'], ['thank', 'rub', 'jerk', 'guy', 'go', 'weekend'], ['damn', 'sad', 'not', 'heard', 'new', 'one', 'yet', 'sound', 'like', 'spare', 'tragedi'], ['want', 'see', 'tonight', 'one', 'go', 'whhyy'], ['evalu', 'not', 'like', 'part', 'job'], ['pitman', 'south', 'look', 'like', 'busi', 'bad'], ['hope', 'pill', 'someth', 'cuz', 'go', 'go', 'nut'], ['music', 'trailer', 'terribl', 'go', 'cheesi', 'handbag', 'hous', 'expect', 'dnb', 'hard', 'hous'], ['phone', 'call', 'yet', 'minut', 'pluck', 'courag', 'wish', 'phone', 'would', 'ring'], ['denial', 'move', 'van', 'park', 'block', 'away'], ['much', 'work', 'littl', 'time'], ['need', 'burp', 'nausea'], ['want', 'go', 'not', 'sure', 'show', 'great'], ['well', 'least', 'good', 'tast', 'art', 'cabinet', 'much'], ['dude', 'tri', 'would', 'not', 'load'], ['know', 'want', 'come', 'keep', 'compani', 'whilst', 'mum', 'friend', 'night', 'nice', 'even'], ['feel', 'realli', 'bad', 'femal', 'racoon', 'abus', 'racoon', 'husband', 'alway', 'black', 'one', 'help'], ['season', 'sorri', 'notic', 'previous', 'updat', 'sis', 'not', 'go', 'happi'], ['say', 'mlia', 'instead', 'fml', 'hope', 'find', 'soon'], ['oh', 'miss', 'truck', 'could', 'whole', 'place', 'move'], ['mourn', 'miss', 'homesskool', 'fair', 'today'], ['sorri', 'could', 'not', 'get', 'project', 'work', 'windoz', 'laptop', 'ton', 'folk', 'came', 'afterward', 'saw', 'run'], ['lucki', 'drizzl', 'mommi', 'say', 'puddl', 'big', 'enough', 'swim', 'dog', 'park', 'today'], ['nanaimo', 'miss', 'son', 'alreadi', 'not', 'even', 'left', 'yet'], ['ha', 'give', 'spymast', 'chanc', 'curious', 'miss'], ['ah', 'serious', 'not', 'even', 'work', 'children', 'still', 'sick', 'groundhog', 'friday', 'got', 'wors'], ['total', 'worth', 'great', 'movi', 'cool', 'glass', 'miss', 'ya', 'miss', 'miss', 'new', 'york'], ['feel', 'almost', 'empti', 'insid', 'today', 'not', 'good', 'feel'], ['miss', 'sixx'], ['may', 'tell', 'cos', 'never', 'repli'], ['sad', 'kind', 'mess', 'get', 'weekend'], ['lucki', 'week', 'summer'], ['sorri', 'could', 'not', 'get', 'projector', 'work', 'windoz', 'laptop', 'ton', 'peopl', 'came', 'afterward', 'saw', 'live'], ['teratoma', 'caviti', 'experienc', 'bald'], ['allerg', 'bunni', 'allerg', 'fur', 'suck', 'not', 'cosmic', 'ironi', 'furri', 'allerg', 'fur'], ['sale', 'sign', 'front', 'hous'], ['gor', 'soo', 'bore', 'man', 'not', 'think', 'could', 'get', 'bore'], ['got', 'back', 'absolut', 'exhaust', 'hour', 'work'], ['much', 'surpris', 'use', 'credit', 'card', 'crack', 'dawn', 'serious', 'onlin', 'gambl', 'one', 'problem', 'not'], ['sick', 'sick', 'sore', 'throat', 'flu'], ['new', 'pictur', 'not', 'work'], ['lost', 'luggag', 'sorri', 'hear', 'check', 'select', 'travel', 'luggag'], ['feel', 'like', 'throw'], ['haha', 'calm', 'get', 'shade', 'still', 'sick', 'though', 'probabl', 'knockout'], ['spill', 'chocol', 'milk', 'car'], ['happi', 'belat', 'birthday', 'hun', 'net', 'broke', 'first', 'chanc', 'get', 'onlin', 'luff', 'yoo', 'xx'], ['feel', 'bad', 'kid', 'sick'], ['car', 'not', 'start'], ['sad', 'could', 'hang', 'feel', 'less', 'apathet'], ['still', 'tri', 'get', 'better', 'get', 'mommaz', 'hous', 'ahh', 'hate', 'feelin'], ['get', 'axkit', 'run', 'ubuntu', 'make', 'head', 'explod'], ['red', 'rock', 'lunch', 'colin', 'could', 'not', 'come', 'ipa', 'junior', 'fresh', 'made', 'yum', 'yum', 'yum'], ['mean', 'peopl', 'suck'], ['almost', 'got', 'giant', 'car', 'accid'], ['miss'], ['much', 'stuff', 'car', 'feel', 'mpg', 'go', 'toilet'], ['better', 'come', 'time', 'count', 'els', 'bam'], ['muhaha', 'martha', 'lt', 'fun', 'see', 'uu', 'next', 'mnth'], ['head', 'hospitol', 'pull', 'golf', 'tourni', 'place', 'think', 'someth', 'yeah'], ['sometim', 'game', 'cruel', 'not', 'real', 'like', 'last', 'night', 'wheel', 'fortun'], ['terribl', 'littl', 'beast', 'garden', 'small', 'simpli', 'collect', 'buy', 'poison', 'food', 'pellet'], ['lol', 'part', 'florida', 'trial', 'come', 'screech', 'halt', 'summer', 'fun', 'weekend'], ['hairdy', 'patch', 'test', 'smear', 'white', 'duvet', 'cover', 'fuck', 'cunt', 'lt'], ['hey', 'wife', 'die', 'realli', 'confus', 'not', 'myspac', 'littl', 'read', 'twit'], ['blatent', 'fault', 'shove', 'bag', 'said', 'felt', 'much', 'trick', 'xx'], ['go', 'work', 'great', 'day', 'atleast', 'get', 'commin', 'wahoo'], ['ugh', 'not', 'know', 'even', 'care', 'nicol', 'richi', 'c', 'miss', 'tv', 'last', 'nite', 'despit', 'twitter'], ['mm', 'pizza', 'dinner', 'yum', 'burnt', 'mouth', 'though'], ['respect', 'travi', 'clark', 'gone', 'notch'], ['anyon', 'ticket', 'mtv', 'movi', 'award', 'guy', 'scam'], ['want', 'sad', 'work', 'today', 'normal', 'not', 'work', 'friday', 'either'], ['willi', 'pout', 'grandma', 'not', 'put', 'treat', 'food'], ['bet', 'man', 'wish', 'coulda', 'went', 'whr', 'not', 'even', 'go', 'home', 'weekend', 'nyt', 'life', 'suck'], ['sneez', 'three', 'time', 'quick', 'success', 'three', 'not', 'four', 'record'], ['troubl', 'view', 'well', 'tube', 'reason'], ['realli', 'sad', 'nephew', 'keep', 'busi', 'sort', 'item', 'bwm'], ['got', 'say', 'littl', 'jealous'], ['problem', 'not', 'get', 'site', 'work'], ['oh', 'god', 'break', 'much', 'plaster', 'like', 'wall', 'thank'], ['not', 'say', 'realli', 'miss', 'red', 'porsch', 'sold', 'yrs', 'ago'], ['way', 'get', 'crate', 'bella', 'dolc', 'sad', 'cuz', 'go', 'tto', 'richmond'], ['allianz', 'interview', 'went', 'well', 'got', 'reject', 'mod', 'though', 'go', 'long', 'weekend', 'hear', 'allianz', 'monday'], ['chanc', 'see', 'race', 'germani', 'unfortun', 'hard', 'tv', 'amp', 'news', 'coverag', 'cycl', 'anymor'], ['harlem', 'jealous', 'right', 'miss', 'live', 'nyc'], ['vote', 'could', 'not'], ['morn', 'forcast', 'radio', 'part', 'most', 'cloudi', 'stay', 'insid', 'happi', 'friday'], ['not', 'feel', 'bad', 'got', 'foad', 'promot'], ['sad', 'day', 'found', 'first', 'scratch', 'car'], ['friend', 'go', 'jealous'], ['oh', 'long', 'not', 'rememb'], ['week', 'aw'], ['aw', 'man', 'half', 'term', 'not', 'long', 'enough', 'lol'], ['omg', 'sorri', 'anyth', 'help'], ['botan', 'garden', 'beauti', 'forgot', 'extra', 'memori', 'card', 'pictur', 'today'], ['keep', 'bump', 'mous', 'comput', 'not', 'go', 'sleep', 'internet', 'access', 'file', 'work', 'slowest', 'friday', 'eevveerr'], ['lucki', 'still', 'want', 'blue', 'one'], ['wat', 'racism', 'australia', 'not', 'nice'], ['move', 'offic', 'go', 'miss', 'hollywood'], ['understand', 'yah', 'leav', 'monday', 'gone', 'chi'], ['day', 'without', 'sleep', 'migrain', 'thought', 'life', 'meant', 'relax'], ['scienc', 'bore'], ['dear', 'presid', 'pleas', 'talk', 'us', 'plan', 'dadt', 'right', 'look', 'like', 'liar'], ['leav', 'not', 'miss', 'much', 'tweetbeak', 'lt'], ['hm', 'ever', 'realiz', 'incred', 'tokio', 'hotel', 'becom', 'make', 'sad'], ['list', 'state', 'park', 'pa', 'consider', 'close', 'nice', 'one'], ['post', 'offic', 'not', 'get', 'packag', 'yet', 'may', 'wait', 'tomorrow'], ['saw', 'someth', 'real', 'sad', 'lunch', 'dog', 'two', 'broken', 'back', 'leg'], ['okay', 'got', 'card', 'phone', 'fuck', 'moment', 'pleas', 'use', 'email', 'reach', 'sorri'], ['back', 'home', 'moment', 'speak', 'aunt', 'telephon', 'darius', 'neight', 'backround', 'miss', 'littl', 'hors'], ['think', 'wireless', 'router', 'die'], ['immedi', 'regret', 'decis', 'come', 'offic', 'today', 'miss', 'bed'], ['lost', 'luggag', 'sorri', 'hear', 'check', 'select', 'travel', 'luggag'], ['bad', 'day', 'histori', 'test', 'tommorrow', 'want', 'go', 'sun', 'play'], ['problem', 'not', 'finish', 'log', 'mass', 'hour', 'week', 'not', 'paid', 'pop'], ['seem', 'like', 'never', 'go', 'stop', 'never', 'get', 'want'], ['watch', 'prison', 'break', 'special', 'sad', 'end'], ['sorri', 'hear'], ['new', 'teca', 'driver', 'licens', 'design', 'ugli'], ['get', 'hair', 'short', 'hope', 'everyth', 'go', 'well', 'friend', 'current', 'get', 'surgeri'], ['spent', 'last', 'hour', 'sign', 'yearbook', 'miss', 'guy'], ['put', 'real', 'pic', 'go', 'miss', 'avatar'], ['goin', 'mall', 'go', 'see', 'movi', 'ghost', 'gfs', 'past', 'hope', 'good', 'top', 'goin', 'alon', 'ilook', 'cute', 'feel', 'good'], ['tmobil', 'hummer', 'wish', 'batteri', 'life', 'iphon'], ['not', 'get', 'rwitter', 'phone', 'phone', 'suck'], ['thank', 'much', 'ff', 'one', 'today'], ['woo', 'see', 'glasgow', 'come', 'septemb', 'agess', 'away'], ['way', 'hey', 'peopl', 'lol', 'tgif', 'hope', 'day', 'mine', 'aight', 'feel', 'like', 'kind', 'suck', 'got', 'plan', 'wknd'], ['know', 'sorri'], ['lost', 'luggag', 'sorri', 'hear', 'check', 'select', 'travel', 'luggag'], ['book', 'read', 'movi', 'watch', 'n', 'stuff', 'bore'], ['miss', 'give', 'away', 'ttc', 'code'], ['dumbfac', 'not', 'wknd', 'want', 'see', 'ya'], ['best', 'evar', 'amp', 'first', 'not', 'awnser', 'question', 'xoxo'], ['not', 'make', 'feel', 'like', 'use'], ['miley', 'tri', 'vote', 'not', 'let', 'vote', 'reason', 'ill', 'tri', 'back', 'littl', 'later', 'lt'], ['wish', 'still', 'cornwal', 'miss', 'aunti', 'dog'], ['lol', 'wrong', 'workin', 'right', 'sowwi'], ['alway', 'excit', 'new', 'chapter', 'life', 'not', 'expect', 'emot'], ['miss', 'one', 'diamond', 'earring', 'make', 'sad'], ['peep', 'got', 'onto', 'game', 'site', 'never', 'see'], ['ok', 'wtf', 'someth', 'menu', 'window', 'not', 'sell', 'want', 'bubbl', 'tea'], ['miss'], ['aww', 'keep', 'send'], ['oohh', 'sorri', 'sad', 'never', 'notic', 'dollar', 'sign', 'oxteach'], ['damn', 'damn', 'blast', 'lmhr', 'tomorrow', 'sam', 'run', 'could', 'see', 'could', 'join', 'next', 'week'], ['boor', 'nowher', 'go'], ['ugli', 'betti', 'soo', 'sad'], ['boognish', 'wish', 'clemmi', 'would', 'nice'], ['research', 'guilt', 'spent', 'day', 'feel', 'sorri', 'cold', 'need', 'spend', 'signific', 'time', 'code', 'weekend'], ['hate', 'snood', 'lol', 'sorri', 'not', 'know', 'peopl', 'play'], ['show', 'fluid', 'decreas', 'slight', 'not', 'look', 'like', 'let', 'bed', 'anytim', 'soon', 'follow', 'next', 'week'], ['follow', 'sad'], ['wait', 'get', 'home', 'watch', 'new', 'moon', 'trailer', 'clip', 'stupid', 'work', 'internet', 'access', 'restrict'], ['never', 'mind', 'close', 'sorri', 'miley'], ['hey', 'scare', 'last', 'night', 'sever', 'bad', 'nightmar'], ['mcm', 'still', 'next', 'main', 'event', 'happi', 'get', 'back', 'run', 'soon', 'still', 'day'], ['quot', 'quot', 'babi', 'phat', 'phat', 'farm', 'applebottom', 'amp', 'fubu', 'come', 'pretti', 'weak', 'doubl'], ['miss', 'red', 'rock', 'sad', 'coupl', 'day'], ['fantast', 'week', 'london', 'atroci', 'hour', 'journey', 'home'], ['alright', 'thank', 'pal', 'bore', 'witless', 'bore', 'hell', 'realli', 'want', 'go', 'somewher'], ['nic', 'idea', 'go', 'money', 'gone'], ['wow', 'way', 'discourag', 'not', 'know', 'anymor', 'fml'], ['tri', 'best', 'hope', 'not', 'get', 'laid'], ['dam', 'miss', 'hollyoak'], ['think', 'twitter', 'not', 'like'], ['jus', 'found', 'final', 'lint', 'thingi', 'dryer', 'lol', 'bent', 'outta', 'shape', 'mad'], ['ah', 'not', 'work', 'want', 'say', 'love', 'beach', 'girl', 'guy', 'ace', 'england', 'love', 'xx'], ['go', 'not', 'crap', 'anymor'], ['ok', 'need', 'hurri', 'come', 'wtf', 'want', 'go', 'hoomme'], ['definit', 'miss', 'listen', 'spill', 'canva', 'miss', 'see', 'live', 'well', 'quot', 'stitch', 'oover', 'oover', 'oh', 'quot'], ['dissapoint', 'everi', 'damag', 'ugli', 'love', 'bug'], ['feel', 'crappi', 'today'], ['peopl', 'smoke', 'pot', 'f', 'stupid', 'instant', 'turn', 'drug', 'general', 'serious'], ['prom', 'tonight', 'bad', 'not', 'go'], ['way', 'nottingham', 'icof', 'tonight', 'gig', 'umtil', 'download', 'fail'], ['bad', 'day', 'work', 'involv', 'minor', 'accid', 'everyth', 'ok', 'far', 'cut', 'immedi'], ['know', 'definit', 'go', 'tri', 'see', 'weekend'], ['squar', 'b', 'sad', 'not', 'well', 'squar', 'crochet', 'bee', 'poli', 'fibe'], ['squar', 'b', 'sad', 'not', 'well', 'squar', 'crochet', 'bee', 'poli', 'fibe'], ['squar', 'b', 'sad', 'not', 'well', 'squar', 'crochet', 'bee', 'poli', 'fibe'], ['ps', 'raing'], ['not', 'figur', 'repli', 'tumblr', 'sorri', 'not', 'get', 'nyc', 'not', 'go', 'event'], ['listen', 'bust', 'miss'], ['not', 'happi', 'camper', 'not', 'good', 'day'], ['sister', 'graduat', 'amp', 'not', 'afford', 'buy', 'anyth'], ['delay', 'midnight', 'bloodi', 'thomson'], ['worri', 'arabell', 'tweet', 'pleas', 'text'], ['suppos', 'visit', 'austin', 'not', 'feel', 'well', 'sinc', 'vaca', 'would', 'said', 'hello', 'sure'], ['run', 'errand', 'geeta', 'feel', 'like', 'plagu'], ['miss', 'matt', 'today'], ['ahh', 'poor', 'feet'], ['ha', 'got', 'anoth', 'followfriday', 'take', 'oh', 'list', 'thank', 'lot', 'ya', 'jerk'], ['bad', 'day'], ['music', 'mann', 'inbox', 'still', 'empti'], ['wish', 'friend', 'could', 'spend', 'night'], ['trade', 'weather', 'gloomi', 'today', 'la'], ['feel', 'actual', 'heartbreak', 'last', 'night', 'x'], ['unlik', 'pos', 'oakland', 'hate'], ['broke', 'vase', 'not', 'even', 'get', 'chanc', 'use'], ['well', 'let', 'us', 'bless', 'togeth', 'yes', 'feel', 'better', 'would', 'sick', 'though', 'littl', 'spare'], ['oh', 'beg', 'add', 'nite', 'dublin', 'octob', 'pleeasse'], ['tire', 'last', 'group', 'day', 'perform', 'interest', 'one'], ['not', 'got', 'text', 'back', 'sod', 'look', 'fabul'], ['would', 'vote', 'miley', 'live', 'ireland', 'fine', 'good', 'luck', 'bye', 'irish', 'sorcha', 'xx'], ['sigh', 'last', 'day', 'work', 'sadifi', 'heartpart'], ['miss', 'math', 'trade'], ['wish', 'play', 'prom'], ['oh', 'oprah', 'jump', 'front'], ['oo', 'yuk', 'not', 'good', 'retch', 'tweet'], ['pour', 'right'], ['wish', 'could', 'go', 'town', 'weekend'], ['got', 'poor', 'thing', 'not', 'go', 'choic', 'much', 'longer', 'though'], ['not', 'listen', 'music', 'work', 'probabl', 'could', 'tri', 'start', 'hunt', 'new', 'job', 'monday'], ['aww', 'fun', 'take', 'someth'], ['way', 'work', 'go', 'miss', 'general', 'hospit'], ['hunrgi', 'right', 'heel', 'kill', 'hard', 'walk'], ['twitter', 'c', 'r', 'c', 'k'], ['realli', 'not', 'like', 'weather'], ['excit', 'see', 'forev', 'lil', 'gettin', 'marri', 'ps', 'realli', 'get', 'tattoo', 'lol'], ['thank', 'god', 'overcast', 'ivori', 'tri', 'get', 'mom', 'take', 'lunch', 'egh', 'not', 'look', 'like', 'go', 'work'], ['go', 'come', 'venu', 'said', 'could', 'not', 'afford', 'open', 'cancel', 'wish'], ['shower', 'head', 'broke', 'shower', 'shot', 'straight', 'get', 'welt', 'later'], ['kh', 'thing', 'weeaboo', 'still', 'prefer', 'english', 'impati', 'haha'], ['would', 'get', 'troubl', 'not', 'follow', 'logic', 'sorri'], ['speedbump', 'suck', 'got', 'piss'], ['feel', 'loop', 'twitter', 'desktop', 'not', 'listen', 'week', 'read', 'engadget', 'age'], ['dude', 'butt', 'itch', 'not', 'scratch', 'peopl', 'r'], ['sorri', 'parent', 'come', 'around', 'go', 'eat', 'richardson', 'raain', 'cheeck'], ['worri', 'bri', 'bronchiti', 'sinus', 'infect', 'poor', 'babi'], ['break', 'daili', 'build', 'broke', 'daili', 'plan', 'well'], ['ooh', 'ouch', 'love', 'weather', 'damn', 'cover', 'sugar', 'x'], ['thank', 'though', 'tri', 'posit', 'wine', 'may', 'not', 'help', 'lol', 'wish', 'could', 'make', 'gig'], ['watch', 'one', 'day', 'middl', 'play', 'realli', 'not', 'hold'], ['feel', 'great', 'still', 'miss'], ['hi', 'net', 'yayi', 'short', 'time', 'though'], ['ahh', 'sqeaki', 'clean', 'fresh', 'even', 'though', 'wear', 'dirti', 'cloth', 'love', 'two', 'half', 'men', 'amaz'], ['charbotgreen', 'suspend', 'quot', 'unusu', 'activ', 'quot'], ['boreedd'], ['noth', 'make', 'last', 'time', 'check', 'jar', 'curri', 'sauc', 'pepper', 'insid', 'disappoint'], ['would', 'love', 'nicki', 'poo', 'bri', 'amp', 'howi', 'amp', 'aj', 'wish', 'happi', 'birthday', 'pleas', 'pleas', 'pleas', 'pleas', 'please', 'guy'], ['think', 'although', 'think', 'ignor', 'not', 'good', 'day'], ['ahahaha', 'happen', 'time', 'poor', 'angela'], ['sneez', 'hurt', 'back'], ['damn', 'real', 'sorri', 'hear'], ['aww', 'miss', 'not', 'ate'], ['know', 'shit', 'tri', 'sort', 'portfolio', 'not', 'know', 'put'], ['aww', 'sorri', 'honey', 'stink'], ['peopl', 'come', 'kill', 'mous', 'monday', 'mix', 'emot', 'mean', 'live', 'desk', 'drawer'], ['yeahh', 'ryland', 'amaz', 'xd', 'not', 'get', 'hug', 'boo', 'suarez', 'seem', 'bit', 'think', 'would', 'woken'], ['not', 'want', 'go', 'cri', 'way', 'home'], ['eaten', 'feel', 'extrem', 'bloat', 'not', 'fun', 'part'], ['say', 'find', 'hard', 'sell', 'etsi', 'sometim', 'discourag'], ['outlook', 'not', 'good'], ['itchi', 'boob'], ['dude', 'hear', 'ya', 'two', 'week', 'tomorrow', 'feel', 'old'], ['realli', 'hyperventil', 'hair', 'yes', 'certain'], ['brother', 'irrit', 'not', 'take', 'amp', 'wear', 'cloth', 'without', 'ask', 'want', 'punch', 'violent', 'shit'], ['upset', 'fact', 'last', 'year'], ['sorri', 'not', 'make'], ['look', 'nice', 'never', 'knew', 'vhs', 'short', 'life', 'span', 'hope', 'fav', 'vhs', 'not', 'dead'], ['part', 'start', 'feel', 'effect', 'tan'], ['twitter', 'not', 'let', 'updat', 'onlin', 'updat', 'box', 'not', 'work'], ['wait', 'amp', 'cramp'], ['ok', 'day', 'jo', 'bit', 'bruis'], ['mee', 'listen', 'sad', 'music', 'miss', 'ps'], ['wrote', 'leadership', 'essay', 'founder', 'expans', 'not', 'went', 'well', 'tri', 'break', 'america', 'lot', 'money', 'burn'], ['yep', 'b', 'automat', 'fall', 'someon', 'person', 'smthng', 'like', 'way', 'suck'], ['sorri'], ['lmao', 'shush', 'ill', 'come', 'joy', 'multipl', 'mouth', 'ulcer', 'think', 'come', 'back', 'heal'], ['sad', 'not', 'know', 'life', 'everyth', 'done', 'sinc', 'age', 'toward', 'healthcar', 'nurs'], ['good', 'day', 'sir', 'hungri'], ['peopl', 'make', 'not', 'like', 'yucki', 'thngs', 'not', 'cut', 'deal', 'w', 'hr', 'tear', 'kill'], ['ayi', 'fml', 'noth', 'perfect'], ['yea', 'feel', 'like', 'bein', 'ignor'], ['start', 'work', 'miss', 'like', 'not', 'see', 'till', 'tuesday'], ['sorri', 'realli', 'suck'], ['thing', 'suck', 'holiday', 'worri', 'pet', 'cat', 'tgthr', 'quot', 'cat', 'resort', 'quot', 'jonesi', 'not', 'much', 'compani'], ['miss', 'much'], ['appl', 'expect', 'launch', 'new', 'iphon', 'summer', 'hi', 'name', 'judi', 'addict', 'appl', 'product'], ['twit', 'twit', 'twitter', 'tri', 'quot', 'legal', 'quot', 'watch', 'movi', 'onlin', 'not', 'happen'], ['aww', 'would', 'virtual', 'high', 'five', 'make', 'better'], ['write', 'exam', 'saturday', 'illeg', 'weekend'], ['not', 'want', 'spanish', 'today'], ['know', 'not', 'say', 'fuck', 'horni', 'hell'], ['home', 'not', 'feel', 'like', 'go', 'work', 'tomorrow'], ['wtf', 'tweet', 'not', 'post', 'super', 'excit', 'weekend', 'lt'], ['oh', 'noe', 'hope', 'feel', 'better', 'soon', 'head', 'sympath'], ['fulli', 'obsess', 'burrito', 'enchilado', 'style', 'mom', 'not', 'want', 'go', 'though'], ['got', 'sad'], ['wish', 'not', 'go', 'work', 'tonight'], ['readi', 'eastend', 'go', 'good', 'one', 'last', 'bgt', 'semi', 'final', 'final', 'tomorrow', 'night', 'though', 'excit', 'stuff'], ['yes', 'final', 'tech', 'mean', 'noth', 'sinc', 'current', 'unemploy'], ['biggest', 'food', 'pit', 'ever', 'miss', 'across', 'school'], ['fire', 'call', 'today', 'miss'], ['go', 'go', 'brother', 'show', 'still', 'feel', 'like', 'poo'], ['anyon', 'els', 'bad', 'friday', 'not', 'fun', 'day', 'today'], ['trickeri', 'exasper', 'see', 'gay', 'pride', 'hijack', 'polit', 'bigger', 'uglier', 'anyth', 'meant'], ['tri', 'open', 'file', 'virtual', 'system', 'dryer', 'offic'], ['poor', 'toni', 'come', 'play', 'scrabbl', 'facebook'], ['fristi', 'think'], ['hey', 'sorri', 'not', 'get', 'touch', 'sooner', 'not', 'go', 'bologna', 'way'], ['want', 'danc', 'not', 'realli', 'listen', 'song', 'sinc', 'left', 'make', 'miss'], ['oh', 'phew', 'scare', 'not', 'access', 'mexico'], ['today', 'sad', 'cat', 'year', 'stop', 'eat', 'sick'], ['hey', 'left', 'nippl', 'never', 'respond', 'bacc'], ['parent', 'wacht', 'tv', 'terribl', 'noth', 'els', 'sad'], ['sad', 'camera', 'hand', 'geek', 'squad', 'week'], ['hm', 'seem', 'blog', 'mark', 'phish', 'site'], ['thank', 'know', 'happen', 'awhil'], ['lost', 'favorit', 'pen', 'good', 'thing', 'back'], ['internet', 'train', 'aw'], ['omginorit', 'would', 'fanci', 'tophat', 'time', 'realli', 'bad', 'not', 'grow', 'handlebar', 'moustach'], ['leav', 'work', 'go', 'crystal', 'search', 'licens', 'pick', 'bia', 'head', 'vega', 'ugh', 'tire', 'alreadi'], ['feel', 'soo', 'close', 'hard', 'not', 'not', 'point', 'ugh'], ['damn'], ['tire', 'gloomi', 'happeen', 'ro', 'summer'], ['wash', 'dish', 'hard'], ['tire', 'beyond', 'reason', 'would', 'rather', 'anyth', 'els', 'tire'], ['cri', 'like', 'fukn', 'babi', 'today', 'durin', 'da', 'senior', 'miss', 'senior', 'friend'], ['hurt', 'foot', 'gym', 'class'], ['not', 'like'], ['bye', 'bye', 'edinburgh', 'not', 'want', 'leav'], ['kind', 'piss', 'realli', 'want', 'go', 'see', 'drag', 'hell', 'christina', 'garrit', 'work', 'till', 'go'], ['helloo', 'tom', 'gig', 'tonight', 'sorri', 'not', 'sure', 'show', 'miss', 'uk', 'hi', 'hi', 'hi', 'hi', 'hi', 'xx'], ['pretti', 'good', 'especi', 'free', 'hot', 'waitress', 'think', 'back', 'work', 'unfortun'], ['denomin', 'librari', 'everyth', 'block'], ['ouch', 'acid', 'reflux', 'hurt'], ['justin', 'blanket', 'would', 'black', 'lint', 'white', 'skirt'], ['not', 'run', 'annapoli', 'half', 'marathon', 'weekend', 'fail', 'meet', 'register', 'deadlin', 'amp', 'complet', 'fill'], ['nightmar', 'last', 'night', 'cri', 'think', 'scar', 'life'], ['miss', 'go', 'irvin', 'liz', 'reminisc', 'adventur'], ['pain', 'sound', 'world', 'cri', 'someon', 'love', 'wors', 'not', 'even', 'hold', 'say', 'sorri'], ['not', 'miss', 'mine', 'everybodi', 'els', 'east', 'coast'], ['go', 'laundri', 'hotel', 'miss', 'though', 'ignor', 'even', 'check'], ['coincid', 'friend', 'cancel', 'movi', 'date'], ['miami', 'right', 'not', 'see', 'hand', 'deliveri', 'near', 'futur', 'unfortun'], ['woke', 'not', 'want', 'go', 'work'], ['done', 'geolog', 'realli', 'miss', 'favorit', 'sister', 'especi', 'not', 'go', 'banquet', 'tonight'], ['depress', 'right', 'not', 'know'], ['srri', 'not', 'go', 'paintbal', 'tonight', 'good', 'movi'], ['give', 'day', 'old', 'babi', 'poor', 'thing'], ['shit'], ['holi', 'wow', 'think', 'could', 'slept', 'day', 'soo', 'tire'], ['recent', 'experi', 'anyth', 'go', 'fear', 'might', 'go', 'indian', 'food', 'not', 'good', 'peopl', 'not', 'good'], ['well', 'complet', 'lame', 'sorri', 'dude'], ['yayayyayayay', 'toy', 'stori', 'come', 'june', 'though'], ['damn', 'not', 'go', 'follow', 'son'], ['pic', 'not', 'work', 'twitter'], ['sad', 'coz', 'hyd', 'theka', 'not', 'beer'], ['wish', 'could', 'share', 'problem', 'someon'], ['yeah', 'freakin', 'suck'], ['never', 'call', 'anymor', 'good', 'ross', 'town', 'might', 'go', 'show'], ['see', 'not'], ['glad', 'friday', 'week', 'schol', 'left', 'glad', 'almost', 'summer', 'though'], ['somebodi', 'buy', 'plane', 'ticket', 'home', 'miss', 'girl'], ['fee', 'pain', 'ladi', 'ga', 'ga', 'drive', 'insan', 'oh', 'dear', 'god', 'song', 'head'], ['elliott', 'claim', 'steak', 'shake', 'excit', 'anymor'], ['fb', 'hate', 'tri', 'amp', 'support', 'local', 'bookstor', 'amp', 'never', 'need'], ['need', 'memor', 'julius', 'caesar', 'line'], ['yet', 'start', 'paper', 'due', 'tonight', 'motiv'], ['figur', 'start', 'rain', 'freed', 'work'], ['well', 'man', 'truck', 'mani', 'mile', 'away'], ['ugh', 'boom', 'boom', 'pow', 'stuck', 'head', 'hate', 'song'], ['glad', 'hear', 'though', 'miss', 'watch', 'outsid', 'igloo', 'day'], ['poor', 'babi', 'dog', 'chachi', 'surgeri', 'todayi'], ['still', 'lose', 'follow', 'peopl', 'hate', 'world', 'hate', 'mayb', 'read'], ['food', 'mah', 'hous'], ['quot', 'want', 'go', 'prom', 'one', 'day', 'quot', 'wish', 'go', 'prom', 'even', 'though', 'not', 'myfriend', 'happi'], ['hate', 'not', 'bring', 'ipod', 'school'], ['followillfriday', 'suck', 'teach', 'peopl', 'nice', 'fucker', 'drool', 'notion'], ['oh', 'god', 'everyon', 'die', 'main', 'justin', 'depress'], ['heyi', 'not', 'feel', 'good', 'cuz', 'wat', 'happen', 'yesterday', 'car', 'accdentt'], ['babi', 'shut'], ['not', 'heavi', 'rain', 'wk'], ['almost', 'grandma', 'internet', 'never', 'catch', 'twitter'], ['got', 'heart', 'rip', 'love', 'guy'], ['quick', 'catch', 'miss', 'neighbour', 'poor', 'libbi'], ['sad', 'not', 'see', 'basshunt', 'metroplex', 'weekend'], ['far', 'sick', 'sing', 'got', 'post', 'nasal', 'drip', 'sore', 'throat', 'sent', 'sorri', 'not', 'email'], ['wish', 'atl'], ['aw', 'crap', 'ipod', 'thin', 'gray', 'line', 'across', 'screen', 'not', 'drop', 'take', 'good', 'care', 'long', 'die'], ['last', 'night', 'suck', 'mani', 'bad', 'dream', 'spider', 'rogu', 'octupi'], ['fml', 'not', 'car', 'prohibit', 'find', 'job'], ['bore'], ['bad', 'mood'], ['sucki', 'sucki', 'homework'], ['bad', 'day'], ['ugh', 'still', 'sick', 'calgari', 'cold', 'last', 'forev'], ['alway', 'headach'], ['still', 'stupid', 'philli', 'trip', 'sad', 'day'], ['still', 'feelin', 'like', 'blah', 'hour'], ['tri', 'resco', 'mobileform', 'toolkit', 'sampl', 'trial', 'messag', 'ruin', 'everyth', 'sampl', 'bug', 'run', 'slow', 'poor', 'impress'], ['figur', 'strong', 'guy', 'suppos', 'put', 'heavi', 'thing', 'top', 'shelv', 'ouch'], ['still', 'think', 'fkc', 'meal', 'miss', 'yesterday'], ['join', 'club', 'dougi', 'cold', 'x'], ['pour', 'outsid', 'clean', 'locker', 'bookbag', 'heavi', 'back', 'arm', 'kill'], ['oh', 'damn', 'realli', 'suck'], ['gone', 'miss', 'kay', 'way', 'alreadi'], ['twitter', 'slow', 'today'], ['feelin', 'lone', 'spendin', 'last', 'hour', 'friend'], ['yeah', 'got', 'admir', 'someon', 'take', 'job', 'satisfact', 'nth', 'degre'], ['want', 'karaok', 'get', 'go', 'work', 'lame'], ['oh', 'mann', 'likey', 'sad', 'not', 'bein', 'auction', 'twpp', 'tonight'], ['came', 'home', 'think', 'mayb', 'someth', 'good', 'eat', 'appar', 'not'], ['want', 'go', 'extra', 'show', 'realli', 'bad'], ['hate', 'go', 'work', 'night', 'micro', 'least', 'get', 'work'], ['poor', 'week'], ['gah', 'suppos', 'studi', 'sneez', 'get', 'even', 'tire'], ['goodby', 'innoc'], ['sad', 'say', 'fat', 'tear'], ['lmao', 'not', 'fake', 'pari', 'anymor', 'look', 'bio', 'way', 'not', 'log', 'onto', 'forum'], ['drs', 'bever', 'scare', 'crap'], ['uh', 'oh'], ['start', 'shit', 'leav', 'shit', 'decis'], ['last', 'free', 'friday'], ['draw', 'pictur', 'show', 'much', 'miss', 'anyon', 'blame', 'hes', 'hour', 'away', 'frm'], ['brazil', 'loov', 'miss', 'may', 'perfect', 'day'], ['dread', 'week', 'groceri', 'shop'], ['hey', 'not', 'spoken', 'london', 'bff', 'wish', 'vote', 'brodi', 'soon', 'ill', 'tell', 'vote'], ['got', 'bit', 'car', 'accid', 'poor', 'patrick'], ['get', 'dalla', 'concert', 'tix', 'sold'], ['beauti', 'nice', 'day', 'stuck', 'insid'], ['oh', 'yes', 'quit', 'nice', 'liep', 'zojuist', 'vast', 'start', 'paint', 'glove'], ['grizzli', 'bear', 'concert', 'tonight', 'not', 'wait', 'cold', 'though'], ['suggest', 'loan', 'defer'], ['anybodi', 'beer', 'right', 'hate', 'drink', 'alon', 'mrs', 'oot', 'hand', 'mrs', 'oot'], ['never', 'sent', 'carri', 'asshol', 'asshol', 'miss'], ['damn', 'internet', 'jus', 'cut', 'bout', 'shoot', 'sum', 'guy', 'eye'], ['noo', 'miss', 'soo', 'much', 'gaah'], ['hm', 'tweetdeck', 'lost', 'old', 'repli'], ['pray', 'famili', 'beav', 'sorri', 'loss'], ['urgh', 'slept', 'work', 'still', 'done', 'revis', 'snappi', 'today', 'total', 'fat', 'day'], ['headaach'], ['iva', 'alreadi', 'miss', 'yoo', 'sweet', 'xx'], ['yeah', 'not', 'sound', 'good'], ['crappi', 'music', 'radio'], ['way', 'fun'], ['meeaann', 'peopl', 'make', 'mistak', 'ok', 'lol'], ['arriv', 'cargo', 'red', 'toronto', 'postpon', 'til', 'tomorrow', 'afternoon', 'go', 'miss', 'lil', 'bro', 'wait'], ['organ', 'chemistri', 'ah', 'confus'], ['not', 'feel', 'well'], ['get', 'new', 'cellphon', 'wednesday', 'lg', 'voyag', 'soo', 'sweet', 'not', 'wait', 'long', 'though'], ['not', 'much', 'sugar', 'b', 'tast', 'lord', 'put', 'ya', 'not', 'fun', 'way'], ['thunder', 'amp', 'lightn', 'scaredededed'], ['sad', 'not', 'listen', 'sob'], ['know', 'make', 'us', 'watch', 'award', 'sunday', 'want', 'shower', 'water'], ['sorri', 'one', 'hell', 'day', 'flood'], ['wait', 'friend', 'call', 'email', 'bleh', 'feel', 'unlov'], ['wonder', 'mother', 'natur', 'make', 'life', 'miser'], ['love', 'dessert', 'use', 'live', 'live', 'tx', 'not', 'visit'], ['tire', 'tweeter'], ['screw', 'guy', 'prom', 'pictur'], ['rais', 'price', 'work', 'mean', 'peopl', 'tip', 'less', 'yay'], ['want', 'cri'], ['left', 'sad', 'wait', 'mom', 'come', 'home', 'want', 'papa', 'john', 'dinner'], ['gosh', 'watchin', 'cosmet', 'surgeri', 'nightmar', 'itv', 'aw'], ['saw', 'dark', 'burgundi', 'scion', 'xb', 'dark', 'shade', 'make', 'look', 'like', 'minivan', 'shawdow', 'line', 'curv', 'lost'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['oo', 'good', 'luck', 'dunde', 'tonight', 'not', 'cos', 'ton', 'uni', 'work'], ['soo', 'deffo', 'miss', 'music', 'channel'], ['great', 'check', 'get', 'work', 'block', 'sim', 'work'], ['friday', 'feel', 'bore', 'time', 'fun', 'today', 'not', 'much', 'mood', 'either'], ['stupid', 'job', 'not', 'know'], ['nice', 'natali', 'taught', 'jameson', 'quot', 'quot'], ['research', 'ecolog', 'friend', 'carrier', 'bag', 'not', 'cheap', 'eco', 'friend'], ['pixi', 'number', 'give', 'energi', 'rush', 'play', 'festiv', 'close', 'june', 'work', 'not', 'go'], ['noo', 'favorit', 'cowork', 'got', 'new', 'job', 'marc', 'jacob', 'show', 'not', 'fair', 'not', 'want', 'go'], ['depress'], ['kind', 'turn', 'buy', 'dig', 'deeper', 'hole', 'etc'], ['new', 'dress', 'look', 'sort'], ['unfair', 'want', 'go'], ['whew', 'final', 'done', 'edit', 'friendster', 'account', 'haha', 'oh', 'geez', 'hungri'], ['walk', 'past', 'school', 'went', 'junior', 'high', 'torn'], ['stuck', 'css', 'hell', 'help', 'framework', 'unless', 'tool', 'alreadi', 'use', 'framework'], ['pff', 'not', 'triumph', 'cuz', 'gone', 'nap', 'lmao'], ['soo', 'not', 'want', 'work', 'tomorrow', 'half', 'day', 'though', 'hope', 'sun', 'stay', 'go', 'go', 'get', 'shower', 'tweet'], ['gettin', 'fuel', 'bad', 'one', 'read'], ['babi', 'adventur', 'hour', 'car', 'lake', 'ann', 'mi', 'admit', 'cri', 'littl', 'truck', 'pull'], ['not', 'day'], ['damn', 'burn', 'leg', 'x'], ['yea', 'babi', 'go', 'miss', 'much'], ['crash', 'wi', 'mayfield'], ['long', 'day', 'still', 'mow', 'lawn'], ['hate', 'sick', 'make', 'soup'], ['heard', 'seem', 'overreact'], ['think', 'tamera', 'show', 'cw', 'abc', 'fam', 'not', 'appreci', 'like'], ['home', 'recov', 'major', 'liver', 'surgeri', 'alot', 'pain'], ['screw', 'sat', 'us'], ['omg', 'amp', 'ms', 'pantri', 'call', 'name', 'ignor', 'day', 'drive', 'complet', 'insan', 'mani', 'calori'], ['feel', 'like', 'dork', 'use', 'wrong', 'ping', 'group'], ['sometim', 'knowledg', 'not', 'good', 'thing'], ['sun', 'not', 'cool'], ['luck', 'either', 'nut', 'hope', 'see'], ['not', 'feelin', 'well', 'feel', 'soo', 'hate', 'bein', 'sick', 'summer'], ['hour', 'left', 'teenag', 'ill', 'sleepin', 'hour', 'depress'], ['think', 'niec', 'got', 'sicke', 'lame'], ['man', 'realli', 'sorri'], ['finish', 'play', 'mahjong', 'lost', 'mag', 'weisheng'], ['want', 'go', 'basshunt', 'concert', 'tonight', 'want'], ['burnt', 'hand', 'cooker', 'hurt'], ['not', 'find', 'origin', 'ex', 'model', 'version', 'not', 'much'], ['let', 'today', 'last', 'day', 'yippe', 'jackson', 'tyler', 'morri', 'alway', 'love', 'never', 'forgotten'], ['oh', 'wish', 'chick', 'fila', 'defin', 'jealous'], ['think', 'niec', 'got', 'sicke', 'lame'], ['told', 'dan', 'not', 'say', 'anyth', 'anymor', 'super', 'sad'], ['freakin', 'hot', 'humid', 'today'], ['miss', 'boo'], ['ugh', 'got', 'work', 'think', 'dang', 'taxi', 'peopl', 'not', 'say', 'well', 'fault'], ['eat', 'wich', 'yumm', 'not', 'think', 'sinc', 'season', 'end'], ['weather', 'gross', 'outsid', 'put', 'bad', 'mood'], ['sad', 'day', 'beer', 'drink', 'movi', 'goer', 'speakeasi', 'theater'], ['not', 'good', 'mood', 'mama', 'away', 'sis', 'not', 'talk', 'either', 'boy', 'not', 'see', 'weekend', 'plan'], ['man', 'fuck', 'test', 'play', 'cod', 'day', 'till', 'summer'], ['much', 'outsid', 'killen', 'eye'], ['wish', 'would', 'say', 'unfollow'], ['aww', 'miss', 'twitpic'], ['gut', 'say', 'replac', 'applianc', 'instead', 'repair', 'want', 'smart', 'tri', 'repair', 'replac', 'right', 'choic'], ['want', 'soo', 'bad', 'hate', 'miss', 'gumbo', 'shoot', 'tommorrow', 'gumbo'], ['oh', 'dear', 'serious', 'one', 'prevent', 'bite', 'itchi', 'distract', 'edit', 'sigh'], ['not', 'die', 'lunch', 'date', 'rocio', 'come', 'plus', 'new', 'shoe', 'ugh'], ['mad', 'hell', 'someon', 'stole', 'pink', 'amp', 'black', 'leapord', 'print', 'pump', 'want', 'wear', 'today', 'god', 'glori', 'bless', 'abund'], ['yea', 'go', 'need', 'put', 'blunt'], ['know', 'money', 'pedicur'], ['work', 'depress', 'hell', 'want', 'someon', 'fukin', 'come', 'holiday', 'august'], ['yep', 'tail', 'leg'], ['go', 'work', 'marri', 'wud', 'never', 'see'], ['well', 'aunt', 'dog', 'die', 'understand', 'devast', 'probabl', 'head', 'soon', 'support'], ['gah', 'jitteri', 'upset', 'absolut', 'reason'], ['rest', 'peac', 'marshal'], ['need', 'buy', 'iphon', 'good', 'app', 'work', 'though'], ['write', 'yearbook', 'make', 'want', 'cri'], ['thank', 'man', 'sort', 'ever', 'rememb'], ['cold', 'lost', 'wallet'], ['not', 'like', 'episod', 'though', 'sad'], ['yeah', 'feel', 'sad', 'though'], ['damn', 'sorri', 'hear', 'tina'], ['pretti', 'bad', 'qualiti', 'probabl', 'worst', 'pic', 'post', 'till', 'date'], ['assfuck', 'quot', 'sorri', 'quot', 'roll', 'okay', 'gave', 'sucker'], ['thingsmummysaid', 'result', 'broken', 'condom'], ['amaz', 'brand', 'new', 'pari', 'neb', 'broke', 'go', 'figur', 'weekend', 'look', 'like', 'not', 'get', 'anoth', 'one', 'next', 'week', 'sigh'], ['not', 'fair', 'not', 'vote', 'say', 'vote', 'close', 'vote', 'everyday', 'could', 'vote', 'like'], ['unhappi', 'news', 'plan', 'experiment', 'iter', 'fusion', 'reactor', 'becom', 'much', 'delay'], ['oh', 'lucki', 'need', 'send', 'mine', 'away', 'get', 'fix'], ['feel', 'lazi', 'watch', 'peopl', 'work', 'roof', 'kat', 'woman'], ['wow', 'trip', 'tampa', 'come', 'end'], ['move', 'anywher', 'long', 'freak', 'dishwash', 'despis', 'dish'], ['umm', 'school', 'subway', 'mom', 'noth', 'planss', 'ruin'], ['know', 'feel', 'head', 'get', 'stuffier', 'stuffier', 'not', 'fun'], ['give', 'sis', 'show', 'crib', 'sunday', 'incred', 'jewelri', 'design', 'gone'], ['phone', 'disconnect', 'internet', 'right', 'middl', 'uber', 'also', 'first', 'tweet', 'insid', 'steam'], ['thank', 'tip', 'otherinbox', 'not', 'work', 'outlook'], ['whope', 'tgif', 'fun', 'job'], ['work', 'starv'], ['total', 'forgot', 'phone', 'home', 'morn'], ['show', 'lunch', 'eat', 'solo', 'noodl'], ['fair', 'upset', 'fact', 'session', 'commenc', 'without', 'sam'], ['demi', 'pretti', 'bang', 'everyth', 'look', 'grown', 'pictur', 'like', 'bang'], ['bucher', 'class', 'cri'], ['happi', 'b', 'school', 'peopl', 'piss', 'sometim'], ['hi', 'anybodi', 'els', 'problem', 'karma', 'site', 'not', 'work'], ['hard', 'time', 'talk', 'new', 'peopl', 'pretti', 'sure', 'not', 'make', 'good', 'impress'], ['everi', 'gas', 'station', 'look', 'postcard', 'luck'], ['backk', 'hungri', 'hell', 'not', 'ate', 'today'], ['suck'], ['ugh', 'noth', 'valley', 'serious', 'got', 'move'], ['think', 'mow', 'lawn', 'not', 'allow', 'done', 'teenag', 'suck', 'well', 'mow'], ['consid', 'lucki', 'not', 'rain', 'age', 'depress'], ['help', 'comput', 'virus', 'place', 'etsi', 'shop', 'vacat', 'mode', 'sort', 'not', 'know'], ['feel', 'way'], ['wish', 'could', 'go', 'see', 'ya', 'warp', 'sure', 'though'], ['feel', 'realli', 'dizzi', 'not', 'soo', 'good'], ['commentari', 'sad', 'sad'], ['use', 'sennheis', 'cx', 'earbud', 'month', 'love', 'not', 'know', 'avail', 'mu', 'though'], ['kid', 'stronger'], ['arthriti', 'realli', 'poor', 'would', 'pain', 'not', 'old', 'mani', 'squat'], ['oo', 'godd', 'vodafon', 'troubl', 'network'], ['start', 'eight', 'morn', 'still', 'go', 'hate', 'alway', 'want', 'friggin', 'password'], ['japanes', 'exchang', 'student', 'cutest', 'thing', 'ever', 'seen', 'serious', 'haha', 'want', 'put', 'pocket', 'amp', 'keep'], ['hospit', 'uncl', 'surguri', 'heart', 'attack'], ['serious', 'problem', 'concentr', 'press', 'releas', 'sleepi', 'eye', 'right'], ['ii', 'not', 'either'], ['park', 'meter', 'comput', 'plus', 'got', 'jip', 'free', 'minut', 'button', 'not', 'work'], ['dream', 'cuddl', 'ladi', 'wake', 'alon', 'not', 'fun'], ['knee', 'hurt', 'bad', 'get', 'suffer', 'work', 'togeth'], ['still', 'not', 'internet', 'home', 'fuck'], ['well', 'kris', 'make', 'sick', 'panda'], ['know', 'june', 'go', 'good', 'go', 'se', 'even', 'come'], ['lure', 'foot', 'massag'], ['wish', 'could', 'twitter', 'book', 'expo', 'recept', 'javitz', 'horribl'], ['reali', 'book', 'side', 'amp', 'not', 'studyin', 'sure'], ['everyon', 'talk', 'goodi', 'want'], ['not', 'like', 'up', 'much', 'today'], ['unfortunet', 'wish', 'mean', 'sometim', 'like', 'twice', 'yr', 'parti', 'not', 'alway'], ['dio', 'acaban', 'de', 'tocar', 'pain', 'pure', 'heart', 'en', 'el', 'primavera', 'sound', 'life', 'not', 'fair'], ['wish', 'wish', 'not', 'eat'], ['aww', 'omg', 'garbo', 'fake', 'play', 'one', 'song', 'haha'], ['someon', 'not', 'feel', 'good'], ['hey', 'brian', 'littrel', 'not', 'realli', 'like', 'kind', 'page', 'rigth', 'kiss', 'loev', 'guy'], ['may', 'come', 'someth', 'almost', 'tissu', 'not', 'good', 'season'], ['aaron', 'play', 'gig', 'life', 'aquat', 'parti', 'outsid', 'austin', 'think', 'mis', 'tt', 'birthday', 'parti', 'sad'], ['ok', 'not', 'realli', 'far', 'yet', 'part', 'wish', 'earlier', 'though', 'like', 'mid', 'day', 'could', 'involv'], ['pass', 'last', 'week', 'sad'], ['ah', 'know', 'microsoft', 'could', 'probbi', 'would', 'want', 'charg', 'way', 'much', 'extra'], ['absolutley', 'gut', 'ill', 'sunni', 'outsid', 'b', 'shit', 'load', 'revis', 'c', 'exam', 'tuesday'], ['hate', 'exam', 'time', 'want', 'life', 'back', 'also', 'want', 'abil', 'revis', 'back', 'ever', 'abil'], ['go', 'minut', 'sunday', 'amp', 'not', 'come', 'hear', 'ya'], ['not', 'know', 'time', 'go', 'fast'], ['serious', 'pain'], ['want', 'go', 'tierd'], ['not', 'alon', 'gut', 'miss', 'convent'], ['lay', 'alon', 'sinc', 'mook', 'soo', 'comfi', 'play', 'pen', 'thought', 'ill', 'first', 'not', 'one', 'cuddl'], ['not', 'look', 'good', 'go', 'burn', 'lampion'], ['stupid', 'freshmen', 'ruin', 'theatr', 'class', 'not', 'get', 'play', 'game', 'rest', 'school', 'year'], ['ok', 'sweet', 'whenev', 'want', 'stuck', 'bed', 'weekend'], ['man', 'weird', 'mom', 'cook', 'give', 'much', 'nutrit', 'also', 'much', 'unladylik', 'gas'], ['yeah', 'realis', 'organis', 'dun', 'let', 'perform', 'drink', 'stage', 'tight', 'malaysian', 'law', 'n', 'rule'], ['know', 'final', 'got', 'compon', 'cabl', 'day', 'instead', 'play', 'fes', 'play', 'oot'], ['oh', 'not', 'sound', 'good', 'better', 'get', 'check'], ['happi', 'friday', 'know', 'get', 'copi', 'bt', 'art', 'mel', 'fake', 'twitter', 'n', 'not', 'find', 'thank'], ['bad', 'day'], ['total', 'forgot', 'dgree', 'show', 'et', 'al', 'ensconc', 'home', 'wine', 'readi', 'bed'], ['french', 'troi', 'nobodi', 'sit', 'next', 'feel', 'littl', 'lone'], ['got', 'text', 'guy', 'not', 'like', 'name', 'guy', 'disapoint'], ['tri', 'use', 'spinelli', 'turn', 'gh', 'not', 'realli', 'work'], ['crap', 'not', 'work', 'saturday', 'amp', 'suppos', 'hang', 'friend', 'amp', 'watch', 'still', 'hang', 'jona'], ['chang', 'car', 'tire', 'cost', 'bomb'], ['wish', 'go', 'st', 'girl', 'tomorrow'], ['hot', 'weather', 'lose', 'clean', 'clean', 'heat', 'suck', 'ball'], ['believ', 'man', 'die', 'car', 'wreck', 'today', 'right', 'road', 'happen', 'still', 'car'], ['want', 'see', 'mama', 'not', 'call', 'back', 'yet'], ['quot', 'quot', 'miley', 'want', 'write', 'not'], ['hang', 'around', 'hous', 'thank', 'god', 'friday', 'nina', 'amp', 'later', 'work', 'global', 'project'], ['migran', 'kid', 'sudden', 'hyper'], ['work', 'agh', 'realli', 'need', 'go', 'day', 'go', 'add', 'schedul'], ['broke', 'ipod'], ['want', 'go', 'music', 'tonight', 'lost', 'voic'], ['wish', 'not', 'abl', 'make', 'work', 'gig', 'today'], ['broke', 'christian', 'bale', 'play', 'batman'], ['stupid', 'ipod', 'take', 'forev', 'load'], ['final', 'school', 'today', 'sit', 'librari', 'long', 'time'], ['realli', 'sorri', 'know', 'wallah', 'feel', 'life', 'shitt'], ['aww', 'hope', 'uve', 'hada', 'good', 'day', 'xx'], ['love', 'fresh', 'garden', 'tomato', 'tini', 'apart', 'patio'], ['fieldnot', 'order', 'still', 'not', 'arriv', 'week', 'still', 'book'], ['grr', 'youtub', 'not', 'let', 'watch', 'chat'], ['went', 'bought', 'bigest', 'redbul', 'could', 'find', 'go', 'long', 'day', 'offic'], ['egh', 'blah', 'boo', 'not', 'know', 'want', 'go', 'work', 'hangov', 'suckk', 'drunk', 'mess'], ['hehe', 'hate', 'cold', 'totali', 'annoy'], ['work', 'realli', 'suck', 'past', 'day', 'amp', 'meet', 'mon', 'got', 'reschedul', 'plain', 'need', 'new', 'job'], ['case', 'ipod', 'touch', 'liter', 'fall', 'apart', 'junk'], ['sad', 'face', 'moment', 'day'], ['lookin', 'spreadsheet', 'long', 'eye', 'cross'], ['bit', 'tire', 'blame', 'rain'], ['wish', 'could', 'gone', 'today', 'know', 'zach', 'look', 'forward'], ['feel', 'eye', 'hour', 'attach', 'screen', 'upload', 'new', 'summer', 'cloth', 'store'], ['havin', 'bad', 'weed', 'first', 'wisdom', 'teeth', 'ran', 'weed', 'might', 'get', 'sick', 'weed'], ['sorri', 'friend', 'swamp', 'deadlin', 'right', 'famili', 'visit', 'boot', 'charad'], ['miss', 'mine', 'not', 'fun'], ['got', 'dailybooth', 'not', 'sure', 'confus'], ['want', 'love'], ['trist'], ['birthday', 'weekend', 'not', 'find', 'ex', 'hid', 'dane', 'cook', 'ticket', 'tomorrow', 'wtf', 'want', 'birthday'], ['graduat', 'high', 'school', 'tonight', 'kind', 'sad'], ['kind', 'may', 'chicken'], ['anoth', 'friend', 'knock', 'pretti', 'soon', 'everyon', 'kid', 'goodby', 'carefre', 'youth'], ['fine', 'bit', 'tire', 'glad', 'weekend'], ['hit', 'christian', 'head', 'metal', 'bat', 'haha', 'sock', 'eye', 'haha', 'miss', 'reckless', 'littl', 'kid'], ['hungri', 'food', 'steal'], ['nice', 'lifelock', 'suit', 'brought', 'experian', 'basic', 'reduc', 'process', 'cost', 'caus', 'peopl', 'not', 'want', 'id', 'theft'], ['know', 'especi', 'sinc', 'summer', 'bore', 'tv', 'time', 'begin'], ['sick', 'wife', 'doubl'], ['noo', 'summer', 'not', 'see', 'charm', 'littl', 'face', 'summer'], ['ughh', 'not', 'feel', 'good'], ['home', 'yay', 'unpack', 'everyth', 'got', 'wash'], ['funni', 'mention', 'full', 'unopen', 'jar', 'cupboard', 'milk'], ['miss', 'need', 'tae', 'catch', 'n'], ['happi', 'googl', 'wave', 'trend', 'not', 'watch', 'video', 'certain', 'flash', 'video', 'block', 'compani', 'network'], ['sorri', 'park', 'space', 'realiz', 'not', 'delet', 'one', 'sentenc', 'copi', 'amp', 'past', 'email'], ['ugh', 'want', 'play', 'dnd', 'know', 'go', 'fail', 'final', 'need', 'studi'], ['oh', 'good', 'get', 'gooseberri', 'night', 'kati', 'not', 'come'], ['omg', 'woke', 'sleep', 'arm', 'ach', 'hurt', 'bad'], ['practic', 'whole', 'bodi', 'burn', 'not', 'bend', 'make', 'sudden', 'movement', 'arm'], ['heart', 'hurt'], ['oh', 'well', 'great', 'see', 'canadian', 'math', 'trade', 'get', 'bigger', 'though'], ['worst', 'kind', 'news'], ['easi', 'tonight', 'still', 'sick'], ['make', 'want', 'cri', 'grown', 'men', 'discuss', 'charact', 'children'], ['wonder', 'thumbnail', 'pictur', 'not', 'show', 'tweetdeck'], ['knew', 'use', 'love', 'show', 'happi', 'weekend'], ['look', 'like', 'rain', 'weekend', 'climb'], ['not', 'breath', 'well', 'turn', 'not', 'crazi', 'inflam', 'lung'], ['found', 'husband', 'grandma', 'fell', 'stair', 'amp', 'hospit', 'sever', 'broken', 'hard'], ['wonder', 'messag', 'not', 'go', 'anywher', 'tri', 'learn', 'tweet', 'amp', 'not', 'turn', 'hot'], ['stuck', 'traffic', 'way', 'costa', 'mesa'], ['not', 'vote', 'frustrad'], ['interest', 'never', 'get', 'etown', 'howev'], ['unfortun', 'stuck', 'work', 'not', 'get', 'said', 'prize'], ['watch', 'ellen', 'love', 'dish', 'tan', 'gorgeous'], ['not', 'want', 'go', 'work'], ['alway', 'get', 'left'], ['use', 'ozzi', 'osbourn', 'pillow', 'mom', 'threw', 'miss', 'thing'], ['problem', 'earphon', 'get', 'not', 'last', 'month', 'matter', 'brand', 'price'], ['got', 'back', 'er', 'cut', 'tri', 'cook', 'nice', 'lunch', 'stich', 'right', 'index', 'finger', 'talk', 'ouchi'], ['oh', 'hope', 'get', 'better', 'show', 'argentina', 'good', 'luck'], ['damnit', 'accident', 'put', 'instead', 'followfriday'], ['feel', 'verey', 'tire', 'madri', 'chasawi'], ['someon', 'bought', 'domain', 'plan', 'buy', 'yesterday', 'damn'], ['tell', 'everyon', 'food', 'worst', 'one', 'understand', 'horror'], ['doctor', 'offic', 'wait', 'sufka', 'see', 'tire', 'sick', 'hope', 'everyon', 'els', 'better', 'friday'], ['close', 'vote', 'best', 'movi', 'hope', 'win', 'daughter', 'lovess', 'sing', 'quot', 'climb', 'quot'], ['not', 'kid', 'sleep'], ['realli', 'go', 'miss'], ['got', 'say'], ['follow', 'realli', 'shop', 'even', 'though', 'not', 'showin', 'love'], ['comp', 'slo', 'w'], ['hate', 'hair', 'hiss', 'tee', 'feel', 'like', 'shuld', 'hang', 'ghetto', 'wid', 'dis', 'style'], ['not', 'seem', 'photo', 'grandma', 'togeth', 'tomorrow', 'heart', 'break'], ['c', 'tech', 'room', 'major', 'downsid', 'lot', 'heat', 'not', 'help', 'hot', 'outsid'], ['fail', 'inspect', 'know', 'pass', 'not', 'bracket', 'sold', 'wors', 'tax'], ['quot', 'never', 'thought', 'would', 'die', 'alon', 'anoth', 'six', 'month', 'unknown', 'quot'], ['sad', 'dead'], ['said', 'good', 'day', 'dream', 'sorri', 'say', 'countri', 'state'], ['look', 'endometriosi', 'oy'], ['want', 'better', 'alreadi'], ['dee', 'mack', 'talk', 'babi', 'almost', 'grown'], ['well', 'rite', 'gt', 'headach'], ['scari', 'hook', 'wire', 'n', 'print', 'sum', 'graph', 'ohh'], ['look', 'like', 'gm', 'bankruptci', 'go', 'happen', 'loss', 'help', 'offset', 'gain', 'earlier', 'year', 'tax', 'wise', 'oh', 'well'], ['one', 'day', 'pray', 'get', 'better'], ['casey', 'gone', 'piddl', 'littl', 'carpet', 'probabl', 'freak', 'new', 'get', 'back'], ['pathet', 'mom', 'best', 'friend', 'hell', 'know', 'talk', 'mom', 'bout', 'everyth', 'everythingg'], ['disappoint', 'not', 'win', 'teh', 'glassez'], ['babysit', 'sun', 'heat', 'get', 'lot', 'freckl'], ['want', 'let', 'know', 'vfc', 'matter', 'happen', 'yes', 'need', 'hug', 'bad', 'live', 'delawar'], ['sorri', 'disappoint'], ['seem', 'disappear', 'life'], ['sar', 'realli', 'got'], ['alon', 'weekend'], ['tire'], ['make', 'babi', 'jeebus', 'cri'], ['ughh', 'sad', 'day'], ['yeah', 'tri', 'go'], ['come', 'atl', 'show', 'jljf', 'swear', 'fun', 'much', 'fun'], ['jump', 'bridg', 'not', 'realli', 'want', 'vote', 'tell', 'fix', 'day', 'need', 'win'], ['hello', 'dark', 'hair', 'well', 'plan', 'today', 'got', 'cancel', 'make', 'better', 'one'], ['wish', 'outsid', 'instead', 'trap', 'offic'], ['shrunk', 'favourit', 'cardigan', 'hubbi', 'said', 'would', 'buy', 'new', 'one', 'practic', 'live', 'gone', 'shall', 'say', 'word'], ['sad', 'thing', 'want', 'work', 'year', 'dream', 'job', 'crush', 'saw', 'crappi', 'still', 'bitter'], ['sore', 'throat'], ['yep', 'anoth', 'hour', 'amp'], ['aahh', 'busi', 'sorri', 'everyon'], ['watch', 'krystl', 'alexi', 'catfight', 'youtub', 'miss', 'dynasti'], ['would', 'like', 'far', 'brazil', 'kiss', 'nice', 'day'], ['florida', 'last', 'weekend', 'rain', 'came', 'back', 'home', 'ri', 'rain', 'terribl'], ['buy', 'yay', 'goe', 'well'], ['not', 'got', 'moment', 'sorri'], ['wonder', 'weekend', 'home', 'good', 'day', 'today', 'friday', 'otalia', 'today', 'tear', 'lot', 'love'], ['need', 'head', 'hurt'], ['phone', 'not', 'work', 'don'], ['offici', 'miss', 'quark', 'huhuhu', 'heart', 'hand', 'partner', 'one', 'danc', 'tonight', 'come', 'home'], ['doctor', 'work', 'hope', 'bitch', 'fun', 'condit', 'show', 'without'], ['miss', 'qualifi', 'think', 'david', 'reutimann', 'lead'], ['day', 'pass', 'slowli', 'day', 'rawr'], ['suck', 'p', 'eleg', 'c', 'jay', 'leno', 'nu', 'va', 'mai', 'avea', 'alt', 'emisiun', 'sau', 'ceva'], ['lt', 'gt', 'wait', 'nati', 'come', 'onlin', 'miss'], ['ahh', 'dave', 'canada', 'not', 'includ', 'okay', 'still', 'love', 'ya', 'let', 'us', 'get'], ['not', 'age', 'sorri', 'twitter', 'tweetdeck', 'broken'], ['cont', 'small', 'children', 'not', 'puppi', 'clech', 'sarcasm', 'annoy', 'bcreativ', 'harrd'], ['wait', 'nati', 'come', 'onlin', 'miss'], ['hey', 'everyth', 'go', 'pleas', 'repli', 'back', 'sometim', 'think', 'hate', 'never', 'repli', 'back'], ['delay', 'flight', 'san', 'diego', 'las', 'vega', 'delay', 'flight', 'feel', 'soo', 'damn', 'depress'], ['wear', 'pair', 'trouser', 'loos', 'last', 'year', 'tight', 'year'], ['littl', 'good', 'luck', 'tam', 'robert', 'not', 'text', 'tabl'], ['poor', 'babi', 'think', 'allergi', 'amyth', 'way', 'senc', 'monday'], ['gourmet', 'pizza', 'bleh', 'pizza', 'suppos', 'greasi', 'filthi', 'not', 'eat', 'pizza', 'prepar', 'chef'], ['kid', 'look', 'incred', 'lay', 'swim', 'lot', 'stuck', 'cold', 'nyc'], ['plan', 'peopl'], ['watch', 'phil', 'special', 'marriag', 'sad', 'ignor', 'peopl'], ['suck', 'school', 'noth'], ['absurd', 'feel', 'like', 'dip', 'pool', 'real', 'quick', 'bad', 'not', 'pool'], ['lol', 'nttn', 'much', 'juss', 'mad', 'rain', 'day', 'add', 'dnt', 'think', 'follow'], ['bah', 'sun', 'new', 'hammock', 'drink', 'beer', 'play', 'guitar', 'sing', 'mosquito', 'chase', 'insid'], ['knee', 'kill'], ['noth', 'except', 'right', 'eassi', 'due', 'monday'], ['chair', 'not', 'comfort'], ['becom', 'mother', 'slave'], ['gleneagl', 'champagn', 'not', 'beat', 'alon', 'tea', 'rubbish', 'housework'], ['ugh', 'not', 'feel', 'like', 'go', 'work', 'today'], ['even', 'tri', 'deep', 'insid', 'kno', 'pain', 'side'], ['mind'], ['got', 'ear', 'sh', 'hurt'], ['appar', 'not', 'good', 'brazillian', 'though'], ['time', 'tick', 'soo', 'sloowlyy'], ['home', 'feet', 'sore'], ['dog', 'offici', 'depress', 'brother', 'dog', 'gone', 'not', 'want', 'go', 'outsid', 'play'], ['soo', 'not', 'happi', 'wattch', 'disney', 'rubbish', 'rubbishh', 'not', 'get', 'jona', 'poster', 'dude', 'not'], ['wate', 'get', 'hair', 'cut', 'prom', 'suck', 'peopl', 'scream', 'instead', 'talk', 'probabl', 'go', 'wate', 'anoth', 'hour'], ['ugh', 'want', 'thing', 'go', 'back', 'normal', 'miss', 'best', 'friend'], ['say', 'goodby', 'parent', 'airport', 'great', 'around'], ['lt', 'train', 'today', 'ehh', 'hard', 'tall', 'hard', 'feel', 'good', 'sunday', 'race', 'day', 'rain', 'lost', 'mud'], ['rain', 'suck', 'much', 'second', 'day', 'row'], ['flickr', 'longer', 'recogn', 'address', 'not', 'log'], ['oh', 'zombiepix', 'not', 'follow', 'anymor', 'need', 'someon', 'cheer'], ['day', 'comput', 'end', 'dang', 'hate', 'not', 'allow', 'comput'], ['sayid', 'could', 'dead'], ['not', 'comfort', 'announc'], ['not', 'good', 'bad', 'thing', 'anoth'], ['sad', 'noth'], ['love', 'dreambear', 'want', 'gay', 'best', 'friend'], ['scrub', 'final', 'beauti', 'perfect', 'not', 'believ', 'go', 'anoth', 'season'], ['mad', 'traffic'], ['okay', 'somepleas', 'save', 'watch', 'ninja', 'warrier', 'eat', 'egg', 'roll', 'last', 'night'], ['bad', 'blogger', 'not', 'blog', 'oop'], ['want', 'crawl', 'desk', 'take', 'nap', 'nvrmind', 'dirti'], ['went', 'sleep', 'power', 'cut', 'noida', 'power', 'back', 'not', 'work'], ['not', 'sexi', 'tube', 'stick', 'stomach', 'thank'], ['bore', 'box'], ['thank', 'awar', 'day', 'festiv', 'band', 'ga', 'not', 'must', 'wait', 'sit', 'concert'], ['new', 'resign', 'cricinfo', 'hate', 'chang'], ['guess', 'old', 'tom', 'anoth', 'mission', 'imposs', 'like', 'tri', 'prove', 'innoc', 'not', 'get', 'hug'], ['pop', 'not', 'know', 'repli', 'tweet', 'phone', 'lol', 'yeah', 'birthday', 'day', 'soo', 'excit'], ['yeah', 'live', 'rez', 'would', 'alreadi', 'dead'], ['love', 'humid', 'right', 'love', 'not', 'last'], ['go', 'tonight', 'never', 'wrote', 'back', 'info', 'sososo', 'sad'], ['tryin', 'upload', 'new', 'pic', 'shit', 'say', 'big'], ['would', 'love', 'way', 'india'], ['freak', 'hors', 'crush', 'dream', 'tear'], ['betta', 'nest', 'think', 'despit', 'heater', 'get', 'chilli', 'night'], ['love', 'sun', 'today', 'not', 'love', 'black', 'suit', 'black', 'top', 'plus', 'get', 'meet', 'back', 'need', 'shop', 'summer'], ['aww', 'sowi', 'shorti'], ['dane', 'cook', 'sport', 'arena', 'tonight', 'wish', 'ticket'], ['entir', 'bodi', 'hurt', 'shower', 'hot', 'tea', 'tv', 'pleas'], ['fuck', 'oh', 'god', 'intern', 'clock', 'realli', 'fuck', 'noo'], ['oh', 'jess', 'hope', 'person', 'ok'], ['sometim', 'twitter', 'make', 'feel', 'like', 'outsid'], ['work', 'still', 'sick', 'realli', 'piss', 'sunday'], ['go', 'cri', 'went', 'bad', 'histori', 'test', 'realli', 'hate', 'histori'], ['not', 'smoke', 'suck', 'suck', 'fuck', 'suck', 'want', 'cig'], ['love', 'daddi', 'not', 'want', 'go', 'hous', 'today'], ['beta', 'expir', 'today', 'back', 'public', 'releas', 'miss', 'alreadi'], ['wow', 'realli', 'missin', 'fam', 'ili', 'today', 'badd'], ['bummer', 'hope', 'not', 'continu', 'long'], ['got', 'go', 'cousin', 'grad', 'parti'], ['miss', 'nipiss', 'pita', 'good', 'thing', 'got', 'euphoria', 'barri', 'would', 'never', 'surviv', 'summer', 'without', 'pita', 'smoothi'], ['new', 'redesign', 'cricinfo', 'hate', 'chang'], ['everyon', 'vote', 'miley', 'cyrus', 'mtv', 'movi', 'award', 'not', 'work', 'frustrad'], ['look', 'like', 'diamond', 'ball'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['oh', 'keep', 'stumbl', 'deathfic', 'without', 'warn', 'not', 'want'], ['pick', 'luna', 'vet', 'look', 'like', 'cri', 'not', 'kid', 'lash', 'wet', 'tear', 'trail', 'poor', 'bebe'], ['beer', 'buzz', 'almost', 'gone', 'world', 'becom', 'complic'], ['want', 'jet', 'mirag', 'could', 'not', 'get', 'hawaii', 'either', 'someday', 'much', 'love'], ['dude', 'hour', 'done', 'work'], ['omg', 'taylor', 'selena', 'broke', 'soo', 'sad', 'aw', 'think', 'actual', 'like', 'selena', 'poor', 'gal'], ['surround', 'student', 'hous', 'barbecu', 'play', 'shit', 'music', 'hard', 'conduc', 'good', 'frame', 'mind'], ['ala', 'move', 'like', 'move', 'actual', 'move', 'ugh', 'wish', 'could', 'go'], ['took', 'time', 'get', 'wall', 'kill', 'lb', 'dummi', 'not', 'drag', 'second'], ['give', 'belov', 'red', 'sox', 'ticket', 'argh', 'meet', 'schedul', 'ca'], ['stop', 'rain', 'fuckingtast'], ['feel', 'headach', 'grow'], ['wishh'], ['not', 'work', 'unfortun'], ['home', 'sick'], ['hous', 'hunt', 'pain', 'hous', 'shift', 'super', 'pain', 'pack', 'never', 'seem', 'end', 'not', 'even', 'imagin', 'unpack'], ['back', 'home', 'hmm', 'realli', 'go', 'miss', 'boo', 'day', 'like', 'wtf'], ['anoth', 'friday', 'night', 'man', 'skint', 'rubbish'], ['hmm', 'see', 'decemberist', 'go', 'raleigh', 'work', 'night', 'cheap', 'seat', 'bolshoi', 'probabl', 'neither'], ['feel', 'realli', 'emot', 'great', 'see', 'pic', 'keep', 'go'], ['good', 'sorri'], ['yes', 'final', 'friday', 'stuck', 'project'], ['quot', 'aarrgghh', 'quot', 'thing', 'decrib', 'feel', 'rite'], ['aww', 'mari', 'wish', 'could', 'come', 'go', 'away'], ['omg', 'maddi', 'holbi', 'dead', 'gut', 'love', 'nadin', 'lewington', 'realli', 'want', 'maddi', 'clifford', 'get', 'togeth'], ['want', 'someon', 'come', 'take', 'pictur', 'one'], ['umm', 'not', 'work', 'guess', 'stuck', 'uglyone'], ['aww', 'daddi', 'got', 'car', 'accid', 'pray', 'lil'], ['gave', 'tumblr', 'api', 'not', 'point', 'privat', 'account'], ['found', 'one', 'cowork', 'actual', 'like', 'leav'], ['leav', 'twitter', 'alon', 'night', 'barcelona', 'back', 'philli', 'tomorrow', 'hope', 'great', 'friday', 'muahh'], ['wish', 'outsid', 'thing', 'go', 'kill', 'work', 'day', 'everyday', 'summer'], ['actual', 'hot', 'today', 'sun', 'got', 'hat', 'everi', 'one', 'got', 'tan', 'except'], ['ugh', 'appar', 'doc', 'author', 'refil', 'tuesday', 'readi', 'pick', 'order', 'status', 'onlin', 'still', 'say', 'wait', 'review'], ['hey', 'forgot'], ['sorri'], ['sorryy', 'milerz', 'not', 'vote', 'would', 'love', 'vote', 'not', 'work', 'sad', 'frustrad'], ['not', 'know', 'sent', 'email', 'use', 'account', 'random', 'stuff', 'not', 'even', 'understand', 'chang', 'password'], ['sad', 'peopl', 'phone', 'dead'], ['leav', 'meet', 'look', 'forward', 'see', 'not', 'done', 'want', 'wish', 'work'], ['way', 'la', 'run', 'littl', 'bit', 'late'], ['best', 'buy', 'amp', 'target', 'still', 'electrik', 'red', 'album', 'loos', 'never', 'even', 'heard', 'girl'], ['husband', 'loos', 'gover', 'job', 'due', 'look', 'new', 'job', 'not', 'find', 'one', 'small', 'town'], ['screw'], ['love', 'day', 'video', 'question', 'not', 'say', 'like'], ['school', 'final', 'test', 'work', 'yes', 'gunna', 'miss', 'alot', 'peopl'], ['wish', 'beach', 'alreadi'], ['lol', 'bother', 'mess', 'metabol', 'drink', 'lot', 'water', 'pretend', 'differ', 'food', 'mm', 'grape'], ['go', 'miss', 'gurl', 'honeymoon'], ['friday', 'tri', 'find', 'someth'], ['not', 'feel', 'good', 'eat', 'food', 'ugh'], ['hype', 'wish', 'could', 'go'], ['ouuchh', 'still', 'hurt', 'barca', 'spank'], ['warn', 'tweet', 'rid', 'bike', 'dangero', 'waa', 'crash'], ['ruddi', 'manageress', 'bad', 'job', 'never', 'find', 'good', 'place', 'beyond', 'cut'], ['sorri', 'saw', 'shock', 'core'], ['god', 'sleepi', 'today', 'bare', 'focus'], ['interest', 'howev', 'low', 'carb', 'next', 'month', 'mean', 'beer'], ['fun', 'time', 'broke', 'usb', 'stick', 'like', 'liter', 'broke'], ['nice', 'visit', 'last', 'night', 'boy', 'voraci', 'stubbl', 'anyon', 'know', 'raw', 'chin', 'haha'], ['wait', 'momma', 'go', 'chase', 'see', 'hell', 'doin', 'money', 'miss', 'wamu'], ['lol', 'aww', 'lol', 'not', 'lol', 'cauz', 'work', 'make', 'one', 'tell', 'love', 'oxoxoteambreezi'], ['damn', 'mani', 'good', 'guy', 'conspiraci', 'steal', 'money'], ['omg', 'broke', 'pizza', 'stress', 'mad'], ['god', 'suffer', 'great', 'hair', 'sit', 'blaze', 'sunshin', 'v', 'v', 'bad', 'sunburn'], ['haha', 'aww', 'ok', 'back', 'bionomi', 'expans', 'ugh', 'joy'], ['would', 'like', 'sit', 'grumpi'], ['know', 'right', 'weak', 'seem', 'like', 'sk', 'think', 'latonya', 'lamesauc', 'call'], ['troubl', 'updat'], ['make', 'cupcak', 'say', 'not', 'kelli', 'bad', 'sister'], ['wish', 'could', 'get', 'nail', 'done', 'stupid', 'job'], ['selfupd', 'clean', 'rubi', 'fix', 'part', 'fail'], ['hate', 'parent'], ['yes', 'still', 'almost', 'gmail', 'storag', 'ceil', 'argh', 'forc', 'delet', 'stuff', 'buy', 'space'], ['threw'], ['twitter', 'spoil', 'fun', 'frustrat', 'slow', 'could', 'not', 'even', 'bid', 'proper'], ['mom', 'woke', 'p', 'mad', 'dream', 'shoe', 'whant', 'go', 'river', 'stupid'], ['work', 'not', 'wait', 'till', 'funer', 'monday'], ['told', 'peopl', 'matter', 'leav', 'alon', 'fuck'], ['great', 'time', 'hampton', 'hope', 'relax', 'not', 'work'], ['ugh', 'not', 'sure', 'patienc', 'remain', 'intellig', 'point', 'day', 'week', 'refactor', 'rewrit', 'packag', 'code'], ['serious', 'need', 'find', 'laptop', 'sometim', 'get', 'hot', 'bbl', 'errand', 'amp', 'price', 'quot', 'comp', 'fix', 'quot', 'not', 'mani', 'place', 'left'], ['someon', 'edit', 'design', 'call', 'plagiar', 'right', 'tire', 'exhaust', 'dissapoint'], ['blind'], ['weekend', 'great', 'saw', 'rest', 'twilight', 'tonight', 'also', 'read', 'fininsh', 'break', 'know', 'could'], ['except', 'fact', 'rain', 'sinc', 'wednesday', 'not', 'suppos', 'stop', 'till', 'monday', 'ew'], ['damn', 'real', 'wtf'], ['never', 'relax', 'weekend', 'allahpundit'], ['oh', 'fun', 'weekend', 'friend', 'gone', 'mother', 'made', 'famili', 'weekend', 'damn'], ['disapoint', 'good', 'evan', 'sound', 'realli', 'bad', 'tune', 'britainsgottal'], ['tri', 'help'], ['good', 'thing', 'comput', 'bad', 'thing', 'block', 'vidjagam', 'site', 'yes', 'even', 'block'], ['kid', 'terribl', 'good', 'evan', 'would', 'call', 'childlin'], ['bubbletweet', 'hate'], ['soo', 'sick', 'hate', 'life'], ['mm', 'speak', 'languag', 'unfortun', 'milit', 'diet', 'serious', 'think', 'tb', 'guess'], ['hate', 'fight'], ['aww', 'must', 'amaz', 'brother'], ['gay', 'marriag', 'not', 'legal', 'everywher'], ['congrat', 'invisalign', 'need', 'get', 'refit', 'mine', 'got', 'lazi', 'stop', 'wear'], ['tri', 'join', 'chat', 'site', 'would', 'not', 'let', 'sign'], ['bgt', 'pier', 'not', 'buzz', 'littl', 'girl', 'sing'], ['lost', 'internet', 'raid', 'os'], ['whew', 'liter', 'shop', 'till', 'sprain', 'ankl', 'see', 'sacrific', 'make'], ['dentist', 'peopl'], ['none', 'hous', 'not', 'sure', 'drive', 'coffe', 'stand', 'wors', 'thought', 'would'], ['sorri', 'hear', 'terribl', 'news', 'think', 'x'], ['comp', 'mental', 'health', 'would', 'not', 'take', 'samuel', 'roger', 'center', 'citi', 'gave', 'appt', 'june', 'day', 'worth', 'pill', 'left', 'lt'], ['bad', 'mood', 'annoy', 'sunni'], ['mshs', 'got', 'go', 'tire'], ['vma', 'guess', 'also', 'want', 'go', 'london', 'june', 'demi', 'lovato', 'concert', 'one', 'go'], ['sorri', 'like', 'peopl', 'like', 'not', 'feel', 'well', 'tummi'], ['take', 'care', 'yucki', 'stuff'], ['still', 'freakin', 'miss', 'game', 'jonasnewsong'], ['burnt', 'arm', 'thought', 'know'], ['suck'], ['not', 'go', 'groceri', 'store', 'empti', 'stomach', 'troubl', 'want', 'see', 'show', 'not', 'sure', 'ill', 'get', 'let', 'kno'], ['internet', 'week', 'longer'], ['quot', 'updat', 'maven', 'depend', 'quot', 'know', 'good', 'thing', 'would', 'better', 'happen', 'asleep'], ['dreambear', 'crap', 'compar', 'wick', 'audit'], ['ok', 'eaten', 'food', 'bore', 'death', 'room', 'serious', 'noth', 'guitar', 'taken', 'venu'], ['feel', 'bad', 'john', 'kate'], ['new', 'suitcas', 'bloodi', 'indecic', 'everytim', 'want', 'buy', 'someth', 'take', 'hour'], ['everyon', 'vote', 'mtv', 'movi', 'award', 'coz', 'comp', 'mash', 'not', 'let', 'vote', 'somehow'], ['got', 'work', 'lone', 'weekend', 'ahead'], ['loll', 'boyfriend', 'suppos', 'mean', 'cold'], ['mean', 'make', 'sad'], ['gut', 'not', 'lmao', 'think', 'obsess', 'bahaha'], ['plead', 'temporari', 'insan', 'agre', 'metric', 'centuri', 'cycl', 'event', 'tomorrow'], ['realli', 'look', 'like', 'go', 'rain', 'gray', 'la', 'bummer', 'sumtim'], ['cut', 'thumb', 'saw', 'small', 'metal'], ['migrain', 'fight', 'way', 'back', 'last', 'night'], ['mad', 'msgs', 'homi', 'final', 'call', 'back', 'think', 'care', 'far', 'anyth', 'happen'], ['rain', 'pour', 'life', 'suck'], ['hey', 'sorri', 'got', 'tweet', 'puppi', 'someon', 'alreadi', 'got'], ['graduat', 'tonight', 'go', 'miss', 'dustin', 'mile', 'charli', 'travi', 'nicki', 'john', 'jake', 'love', 'guy'], ['box', 'trainer', 'although', 'think', 'bruis', 'came', 'hit', 'someth', 'ow'], ['ahh', 'love', 'chines', 'music', 'haha', 'not', 'go', 'see', 'luff', 'til', 'thursday'], ['wonder', 'happen', 'froggi', 'potato', 'farm'], ['man', 'icant', 'send', 'love', 'bebo', 'cuz', 'skoo', 'comp', 'ugh', 'suck'], ['steve', 'aoki', 'sorri', 'may', 'b', 'nxt', 'time'], ['cus', 'got', 'much', 'attent', 'end', 'embarras', 'think', 'got', 'outta', 'hand', 'bit', 'poor', 'girl', 'xx'], ['dread', 'hear', 'even', 'wors', 'news', 'tonight'], ['took', 'short', 'nap', 'readi', 'work', 'sun', 'burn', 'hurt'], ['not', 'went', 'page', 'made', 'hungri'], ['grrh', 'wii', 'remot', 'dead', 'multiplay', 'tonight'], ['seattl', 'soo', 'hungri', 'amp', 'miss', 'alaska'], ['sorri', 'hear'], ['sorri', 'fail'], ['not', 'feel', 'guilti', 'like', 'revis', 'stuff', 'today', 'haha'], ['not', 'forget', 'follow', 'emma', 'london', 'like', 'said', 'would', 'wish', 'aswer', 'call', 'cost'], ['jami', 'free', 'view', 'dead'], ['gosh', 'today', 'suck', 'not', 'get', 'tax', 'return', 'upset', 'cuz', 'miss', 'best', 'friend', 'wed'], ['fight', 'cri', 'stress', 'start', 'hrs', 'sinc', 'got'], ['fire', 'rain', 'jame', 'taylor', 'fit', 'style', 'need', 'sa', 'audit', 'perfect', 'not', 'find', 'karaok', 'track', 'high', 'enough', 'key'], ['yup', 'loss'], ['angri', 'inform', 'marco'], ['miss', 'ceddi'], ['good', 'want', 'get', 'offic'], ['one', 'not', 'suppos', 'headach', 'friday', 'not', 'right'], ['rane', 'realli', 'bad'], ['yum', 'chocol', 'sorbet', 'bare', 'even', 'share'], ['wish', 'could', 'get', 'pregnant'], ['ate', 'way', 'mani', 'chocol', 'anim', 'cracker'], ['drs', 'offic', 'mine', 'drive', 'nut', 'especi', 'appt', 'kid'], ['not', 'believ', 'anyth', 'wors', 'lose', 'best', 'friend'], ['show', 'tonight', 'plan', 'ughh'], ['aah', 'swear', 'took', 'mistak', 'somehow', 'attach', 'charger', 'appar', 'need', 'break', 'huh'], ['want', 'session', 'ronni', 'da', 'bomb', 'know'], ['watch', 'bore', 'polic', 'prog', 'make', 'fab', 'pasta', 'dinner', 'tri', 'cut', 'alcohol', 'water'], ['ahh', 'think', 'leg', 'burnt', 'hurt'], ['ugh', 'hate', 'wait', 'airport', 'could', 'not', 'find', 'seat', 'near', 'outlet', 'either'], ['nice', 'hair', 'nowher', 'go'], ['think', 'mess', 'back', 'like', 'day'], ['feel', 'depress', 'could', 'not', 'save', 'thank', 'noth'], ['phew', 'long', 'day', 'not', 'gotten', 'work', 'yet'], ['want', 'see', 'bud', 'mel', 'miss', 'hur', 'load'], ['genevaa', 'pictur', 'not', 'show', 'not', 'think', 'right'], ['say', 'hi', 'depress', 'not', 'see'], ['travel', 'today', 'see', 'grandpa', 'anoth', 'road', 'block', 'cross', 'fro', 'famili'], ['swelter', 'afternoon', 'wonder', 'creepi', 'slither', 'snake', 'head', 'creek', 'nasti', 'thing', 'swim', 'frighten', 'detail'], ['bad', 'week', 'panera', 'wifi', 'suck', 'mayb', 'head', 'legal', 'seafood', 'airport', 'metavers', 'stream'], ['sure', 'everi', 'offic', 'men', 'women', 'capac', 'realiz', 'shut', 'unholi', 'fuck', 'christ'], ['degre', 'gross', 'sky', 'match', 'mood', 'lol'], ['also', 'end', 'nigh', 'x'], ['not', 'happi'], ['nice', 'night', 'golf'], ['feel', 'realli', 'sick', 'teeth', 'still', 'hurt', 'fml'], ['mow', 'love', 'mow'], ['oh', 'noo', 'suck', 'reschedul', 'anoth', 'show'], ['leav', 'florida', 'want', 'live', 'forev', 'texan', 'girl'], ['wish', 'go', 'see', 'today', 'sad', 'not'], ['bgt', 'gut', 'finish', 'tomorrow', 'stavro', 'flatley', 'way'], ['go', 'retak', 'softbal', 'photo', 'patrick', 'studio', 'piec', 'shit', 'back', 'chore', 'friday', 'huh'], ['oh', 'not', 'believ', 'kill', 'hate', 'stringer'], ['homeless', 'afterjun'], ['snap', 'realiti', 'show', 'watch', 'first', 'hook', 'sad'], ['sad', 'school', 'go', 'miss', 'friend', 'teacher'], ['vile', 'peopl', 'remov', 'thing', 'valu'], ['alway', 'rain', 'right', 'get', 'car', 'wash'], ['good', 'luck', 'want', 'new', 'shoe', 'ly', 'x'], ['funni', 'wrote'], ['buy', 'team', 'zotz', 'decid', 'roast'], ['noo', 'hate', 'traffic'], ['damn', 'take', 'long', 'instal'], ['dead'], ['watch', 'thoma', 'train', 'engin', 'make', 'miss', 'georg', 'carlin'], ['ahh', 'miss', 'must', 'fill', 'tonight'], ['quot', 'ship', 'amp', 'handl', 'quot', 'soo', 'expens', 'entir', 'order', 'not', 'order', 'yet'], ['yes', 'oh', 'gone', 'bed', 'minor', 'soap', 'marathon', 'photo', 'edit', 'night', 'ohh', 'inn', 'lake', 'nice', 'food'], ['hope', 'ok'], ['not', 'fan', 'day', 'train', 'novi', 'one', 'sleepi', 'girl'], ['healthi', 'food', 'not', 'help', 'hangov'], ['need', 'sudden', 'urg', 'miss', 'diplomat', 'titl'], ['wish', 'could', 'go', 'soco', 'go', 'climb', 'instead', 'stuck', 'work', 'weekend'], ['aww', 'wish', 'thing'], ['good', 'rachel', 'nowt'], ['yeah', 'goin', 'vmail', 'call', 'store', 'luck'], ['aww', 'sorri'], ['massiv', 'headach', 'go', 'see', 'termin', 'tonight'], ['bit', 'worri'], ['one', 'less', 'follow', 'make', 'sad', 'feel', 'like', 'life', 'dull', 'uninterest'], ['bore', 'day', 'one', 'talk', 'miss', 'bf', 'kiss', 'hol', 'almost', 'not', 'want', 'go', 'back', 'skool'], ['wtf', 'come', 'need', 'day', 'go'], ['ooh', 'hayfev', 'go', 'avoid', 'year', 'noo', 'remedi', 'anyon'], ['let', 'mri', 'today', 'neurosurgeon', 'not', 'order', 'mean', 'come', 'back', 'okc', 'soon', 'amp', 'noth', 'new'], ['still', 'pretti', 'depress', 'lose', 'hello', 'kitti', 'necklac'], ['watch', 'armi', 'wive', 'alway', 'make', 'cri'], ['get', 'amp', 'famili', 'readi', 'kayle', 'graduat', 'go', 'make', 'sad'], ['buckfast', 'brain', 'went', 'blank'], ['tell', 'accident', 'screw', 'layout', 'communiti'], ['cvs', 'like', 'genet', 'brand', 'poor', 'hubbi', 'get', 'bad', 'fun'], ['shiraz', 'event', 'mosqu', 'elect', 'children', 'wr', 'involv', 'zahedan'], ['cold', 'cold', 'fuck'], ['haa', 'awesom', 'rememb', 'brother', 'got', 'given', 'woodi', 'got', 'upset', 'got', 'buzz', 'got', 'lmfao'], ['aww', 'suck'], ['guy', 'come', 'fuck', 'freez'], ['omfg', 'one', 'worst', 'day', 'ever'], ['not', 'happi'], ['week', 'mine', 'not', 'easi', 'final'], ['listen', 'butterfli', 'fli', 'away', 'daddi', 'lov', 'mamma', 'lov', 'ya'], ['ok', 'eye', 'doctor', 'guy', 'take', 'forev', 'sit', 'cold', 'room', 'jerk'], ['need', 'horror', 'lovecraftian', 'actual', 'not', 'enough', 'weird', 'horror', 'movi'], ['got', 'adjust', 'mate', 'onlin', 'shop', 'zz', 'bore'], ['friday', 'freakin', 'happi', 'today', 'annoy', 'day', 'buut', 'weekend', 'tgif', 'lt'], ['look', 'like', 'go', 'upset', 'venus'], ['send', 'healthi', 'heal', 'thought', 'mumborg', 'direct'], ['new', 'york', 'look', 'rather', 'good', 'last', 'night', 'big', 'appl'], ['happi', 'hour', 'ccp', 'eithah', 'bad'], ['aww', 'one', 'yesterday', 'suck'], ['not', 'camera', 'total', 'regret'], ['addict', 'okay', 'admit', 'need', 'help', 'write', 'hit', 'big', 'bro', 'realli', 'realli', 'smile'], ['final', 'friday', 'still', 'ground', 'till', 'next', 'thursday', 'stereo', 'life', 'lt'], ['need', 'get', 'fever', 'grr'], ['case', 'got', 'new', 'one', 'last', 'week', 'not', 'thrill', 'mine'], ['freddi', 'cotch', 'ladyhawk', 'miss', 'bajan', 'beauti'], ['still', 'eat', 'still', 'offic', 'get', 'sick', 'throat', 'day', 'leav', 'air', 'condit', 'throat', 'kill', 'tour', 'bus'], ['argh', 'twitter', 'not', 'post', 'repli', 'tweet', 'age', 'not', 'much', 'enjoy', 'sun'], ['work', 'crack', 'ta'], ['everi', 'pair', 'jean', 'nowaday', 'tight', 'think', 'mah', 'butt', 'gettin', 'big', 'oh'], ['boo', 'hope', 'fake', 'alien', 'stori', 'tinfoil', 'cover', 'beachbal', 'photo'], ['radio', 'royal', 'transmitt', 'pack', 'today', 'not', 'good', 'anyon', 'got', 'spare', 'would', 'lol'], ['week', 'post', 'quot', 'horribl', 'traumat', 'jump', 'cholla', 'quot', 'next', 'dirti', 'trick', 'piec', 'start', 'emerg', 'hand', 'ouch'], ['fell', 'holdin', 'kale', 'hand', 'hurt', 'foot', 'amp', 'bruis', 'forehead', 'klutz'], ['wow', 'christa', 'incred', 'sweet', 'want', 'one', 'get', 'sec', 'check', 'app', 'merch', 'asst', 'rule', 'lol'], ['hour'], ['nah', 'suck', 'wear', 'suit', 'temp', 'goe', 'degre', 'someon', 'sit', 'next'], ['home', 'work', 'sick'], ['home', 'jack', 'not', 'say', 'happi', 'either'], ['oo', 'noo', 'not', 'good'], ['feel', 'bad', 'daisi', 'cri', 'everi', 'episod', 'watch', 'waay', 'much', 'tv'], ['lost', 'follow', 'oh', 'well', 'probabl', 'one', 'mute', 'one', 'anyway'], ['last', 'day', 'work', 'everyon', 'make', 'great'], ['dead', 'past', 'flu', 'suck'], ['urban', 'think', 'fail', 'chai', 'latt', 'not', 'good'], ['told', 'joke', 'onstag', 'butlin', 'one', 'person', 'laugh', 'scar', 'life'], ['want', 'see', 'enjoy'], ['day', 'summer', 'holiday', 'left', 'go', 'way', 'slow', 'school', 'get'], ['lost', 'tooth', 'whilst', 'eat'], ['found', 'crack', 'bake', 'spill', 'everywher'], ['yeah', 'littl', 'rough', 'morn', 'tonight', 'tomorrow', 'night', 'goe', 'plan', 'calor', 'intak', 'chart'], ['not', 'look', 'good'], ['lost', 'artist', 'abil'], ['love', 'dad', 'said', 'would', 'readi', 'go', 'like', 'still', 'work'], ['jean', 'two', 'inch', 'long', 'five', 'inch', 'long', 'holi', 'cow', 'get', 'shorter'], ['miss'], ['wonder', 'local', 'border', 'go', 'make', 'lot', 'bare', 'shelv', 'make', 'sad'], ['miss', 'walk', 'home', 'togeth'], ['guess', 'would', 'better', 'look', 'new', 'best', 'friend', 'vip', 'ticket', 'use', 'not', 'want', 'anymor'], ['much', 'want', 'see', 'screen', 'adapt', 'kick', 'ass', 'found', 'nick', 'cage', 'heart', 'sank'], ['follow', 'us', 'recent', 'pleas', 'not', 'offend', 'not', 'follow', 'back', 'hit', 'limit', 'hope', 'free', 'soon'], ['omgg', 'hawaii', 'amaz', 'want', 'live'], ['hope', 'day', 'get', 'better'], ['never', 'trust', 'someon', 'els', 'batteri', 'oper', 'power', 'tool', 'hurri'], ['oh', 'realli', 'tire', 'migrain', 'endometriosi', 'amp', 'fibromyalgia', 'amp', 'migrain', 'amp', 'sleep', 'prob', 'compoundin', 'ea', 'sinc', 'surgeri'], ['babysit', 'kid', 'not', 'let', 'play', 'wii'], ['not', 'go', 'sad', 'mayb', 'next', 'year', 'eh'], ['sunburn', 'hurt'], ['nobodi', 'home', 'tonight', 'except', 'alon', 'sigh', 'oh', 'wish'], ['def', 'rubbish', 'tonight'], ['look', 'websit', 'work'], ['sister', 'cri', 'eye', 'hubbi', 'call', 'iraq', 'spoke', 'minut', 'heard', 'pop', 'sound', 'background', 'call', 'drop'], ['wish', 'one', 'area'], ['found', 'sushi', 'fake', 'crab', 'meat', 'not', 'good'], ['shit', 'troubl', 'not', 'tri', 'one', 'compani', 'buy', 'hous'], ['hey', 'aww', 'cnt', 'view', 'uk', 'block', 'x'], ['musem', 'equal', 'fail', 'hall', 'fuck', 'life', 'close', 'construct'], ['man', 'bore', 'today', 'not', 'tweet', 'guy'], ['alreadi', 'index', 'finger', 'left', 'hand', 'still', 'bleed', 'hurt', 'pretti', 'bad', 'hate', 'clumsi'], ['omg', 'nasti'], ['hahaha', 'probabl', 'not', 'sorri', 'got', 'thing', 'around', 'go', 'jare', 'parent', 'hous'], ['sorri', 'hear'], ['cds', 'hmv', 'overpr', 'hate', 'money'], ['sing', 'girl', 'talent', 'yeah', 'good', 'complain'], ['clock', 'possibl', 'last', 'time', 'northview', 'middl', 'school'], ['experienc', 'apathi', 'empathi', 'custom', 'servic', 'situat', 'mani', 'time', 'recent'], ['ugh', 'need', 'job', 'one', 'hire'], ['not', 'come', 'see', 'host', 'hilton', 'thoma', 'spent', 'lot', 'money', 'noth', 'bore'], ['not', 'look', 'good', 'outsid', 'continu', 'feel', 'movi', 'night', 'come'], ['not', 'know', 'mom', 'gave', 'clean', 'macbook', 'white', 'tint', 'grayish', 'blue', 'black', 'desk'], ['want', 'invit', 'sick', 'see', 'link', 'peopl', 'play', 'left'], ['walk', 'back', 'wk', 'beauti', 'day', 'njoy', 'rain'], ['bff', 'glad', 'got', 'dog', 'lol', 'stomatch', 'hurt'], ['think', 'might', 'get', 'today', 'throat', 'kill', 'feel', 'like', 'lung'], ['depress', 'best', 'friend', 'piss'], ['not', 'believ', 'idiot', 'buzz', 'juggler'], ['tweet', 'fgs', 'tweekdeckk', 'hate'], ['wow', 'one', 'nicest', 'patient', 'ever', 'deplyod'], ['thank', 'check', 'stay', 'thursday', 'night', 'though'], ['feel', 'not', 'get', 'thing', 'work'], ['littl', 'girl', 'bgt', 'sad', 'cri', 'lol', 'xx'], ['end', 'not', 'go', 'left', 'knee', 'kill', 'think', 'push', 'much', 'yesterday'], ['smh', 'sick', 'bug', 'go', 'everyon', 'know', 'sick', 'includ'], ['not', 'relay', 'oh', 'well'], ['pleas', 'not', 'vote', 'sympathi', 'bgt'], ['aww', 'bless', 'need', 'anoth', 'chanc'], ['aw', 'wee', 'lassi', 'made', 'cri', 'tear', 'streamin', 'doon', 'face', 'lol', 'wee', 'shame', 'x'], ['offici', 'drug', 'take', 'nap', 'allergi', 'not', 'joke', 'never', 'bad', 'sinc', 'two', 'day', 'ago'], ['lookd', 'soo', 'freak', 'poor', 'wee', 'thing'], ['sit', 'watch', 'britain', 'got', 'f', 'talent', 'watch', 'small', 'girl', 'cri', 'sad'], ['want', 'summer', 'sprinkl', 'still'], ['stupid', 'sun', 'actual', 'work'], ['argg', 'car', 'crash', 'tv', 'soo', 'horribl', 'see', 'like', 'bgt'], ['follow', 'complianc', 'great', 'watch', 'say'], ['cri', 'poor', 'thing'], ['ouch', 'burn', 'make', 'soup', 'nico'], ['haha', 'awesom', 'alway', 'use', 'eat'], ['aww', 'holli', 'cute', 'hope', 'let', 'sing'], ['made', 'sister', 'cri', 'hahah', 'bless', 'hope'], ['dad', 'want', 'comput', 'would', 'best', 'take', 'mac', 'specialist', 'tomorrow', 'hope', 'make', 'teh', 'owwi', 'go', 'awayz'], ['aww', 'not', 'believ', 'wee', 'girl', 'bgt', 'cri', 'sad'], ['sick', 'total', 'get', 'bad', 'guy', 'not', 'get', 'play', 'boston'], ['aww', 'holli', 'steel', 'not', 'cri'], ['aww', 'bless', 'made', 'cri'], ['not', 'block', 'not', 'even', 'request'], ['bgt', 'aw', 'bless', 'stomach', 'sank', 'first', 'whimper', 'good', 'tri', 'carri', 'nice', 'simon', 'take', 'charg'], ['sad', 'school', 'close'], ['hate', 'place'], ['nope', 'fifth', 'generat', 'ipod', 'classic', 'like', 'dumb'], ['tough', 'want', 'hug', 'like'], ['omg', 'holli', 'well', 'sad', 'watch', 'see', 'simon', 'well', 'nice', 'want', 'lol'], ['jame', 'cameron', 'touch', 'someth', 'revolution', 'someon', 'els', 'come', 'along', 'fuck'], ['good', 'get', 'earli', 'tomorrow'], ['met', 'lol', 'middl', 'name', 'creepi', 'fgs'], ['tri', 'figur', 'person', 'download', 'wordpress', 'blog', 'not', 'easi', 'hope', 'suggest'], ['got', 'fight', 'ryan', 'hes', 'like', 'cri', 'dead', 'insid', 'siggh'], ['nice', 'wish', 'twitter', 'would', 'tile', 'mine'], ['yike', 'poor', 'girl', 'bgt', 'quit', 'hard', 'watch'], ['cramp'], ['first', 'natali', 'littl', 'holli', 'mean'], ['aww', 'feel', 'bad', 'holli'], ['omd', 'holli', 'steel', 'bless', 'x'], ['everyon', 'tweet', 'britain', 'got', 'talent', 'feel', 'left'], ['bless', 'lil', 'sock', 'think', 'need', 'rethink', 'age', 'thing'], ['want', 'vote', 'miley', 'cyrus', 'mtv', 'movi', 'not', 'know', 'could', 'somebodi', 'could', 'send', 'link', 'thaank', 'lt'], ['somehow', 'yet', 'accomplish', 'fuck', 'thing'], ['wait', 'electrik', 'red', 'richgirl', 'sucker', 'later'], ['aww', 'bless', 'hope', 'phone', 'okayi', 'x', 'x'], ['tri', 'carri', 'aswel', 'bless', 'suppos', 'mayb', 'kid', 'not'], ['mad', 'quiz', 'answer', 'bet', 'ford', 'fusion', 'sweepstak', 'wrong'], ['ohh', 'babi', 'pdgg', 'ahh', 'miss', 'ahh', 'hehaheahaa'], ['coki', 'arnt', 'real', 'imaginari', 'hav', 'mm', 'cooki'], ['unfortunatley', 'aerlingus', 'longer', 'fli', 'copenhagen', 'fli', 'ryanair', 'billund', 'drive', 'copenhagen', 'one', 'day'], ['aww', 'poor', 'littl', 'girl', 'bgt'], ['know', 'right', 'poorpoor', 'girl', 'show', 'not', 'put', 'young', 'peopl', 'competit', 'like', 'though'], ['omg', 'not', 'onlin', 'shock', 'horror'], ['know', 'feel', 'work', 'much', 'suck', 'hardcor', 'need', 'hang', 'soon'], ['aww', 'think', 'young', 'not', 'readi', 'pain', 'watch', 'upset'], ['ugh', 'not', 'know', 'not', 'best', 'mood', 'know', 'allergi', 'meh'], ['fuck', 'day', 'fli', 'got', 'thing', 'hour'], ['ok', 'bye', 'alex', 'fun', 'today'], ['not', 'know', 'saw', 'happi', 'birthday', 'girl'], ['omg', 'bgt', 'make', 'cri', 'wee', 'girl', 'soo', 'sad'], ['aww', 'sad'], ['haha', 'cri', 'xx'], ['traffic', 'jam', 'outsid', 'chicago', 'feel', 'quot', 'offic', 'space', 'quot', 'right'], ['last', 'full', 'day', 'even', 'day', 'class', 'littl', 'sad'], ['srri', 'not', 'interest', 'right', 'stay', 'til', 'tummi', 'hurt', 'poop', 'work'], ['not', 'want', 'go', 'work'], ['hope', 'day', 'mom', 'get', 'messag'], ['go', 'happen', 'one', 'day', 'feel', 'girl', 'mum'], ['not', 'even', 'situat', 'sad', 'sorri', 'realli', 'sucki'], ['brian', 'cat', 'still', 'not', 'shown', 'feel', 'sad', 'sick', 'afraid', 'eaten', 'someth', 'not', 'look', 'good'], ['aww', 'not', 'fair', 'lil', 'sad'], ['get', 'readi', 'work', 'boohoohoo', 'not', 'want', 'go', 'work'], ['use', 'imovi', 'still', 'not', 'bad', 'afraid', 'hear', 'wrong'], ['excit', 'new', 'follow', 'overnight', 'sad', 'ad', 'bot'], ['oh', 'noo', 'sorri', 'suck', 'hard'], ['feel', 'sorri', 'hope', 'dnt', 'cri', 'time'], ['ncaa', 'basebal', 'road', 'omaha', 'south', 'carolina', 'hit', 'homerun', 'dagger', 'heart', 'mason', 'south', 'carolina'], ['oh', 'come', 'back', 'gig', 'scotland', 'ticket', 'see', 'last', 'year', 'hosp', 'wit', 'gallston'], ['hollowbabesher', 'come', 'utter', 'shite', 'bgt', 'lt', 'complet', 'agre'], ['omg', 'go', 'robinson', 'tyler', 'wfm', 'freakin', 'miss', 'anthoni', 'ugh', 'today', 'kind', 'suck', 'lex', 'lt'], ['phil', 'miss', 'gracin', 'ya', 'presenc', 'not', 'much', 'new'], ['day', 'aight', 'clean', 'most', 'went', 'mcds', 'check', 'hader', 'luck', 'ate', 'chickfila'], ['work', 'heat', 'horribl'], ['holli', 'steel', 'bless', 'go', 'dreambear', 'lt', 'hahahahaha'], ['unabl', 'booz', 'friday', 'inde', 'entir', 'weekend', 'actual', 'hurt'], ['stress', 'beyond', 'belief', 'need', 'nap'], ['aww', 'poor', 'littl', 'girl', 'britain', 'got', 'talent'], ['aww', 'littl', 'girl', 'britain', 'got', 'talent', 'actual', 'love', 'ant', 'n', 'dec', 'oh', 'simon', 'cowel'], ['aww', 'bless', 'one', 'fave'], ['sn', 'yeah', 'sad', 'day'], ['see', 'finish', 'line', 'disappear', 'plethora', 'email', 'wah'], ['oh', 'sorri', 'old', 'grandpa'], ['man', 'tha', 'mojito', 'earlier', 'got', 'feelin', 'type', 'funni', 'hope', 'not', 'get', 'sick'], ['yaay', 'clean', 'room', 'said', 'hi', 'day', 'amp', 'not', 'write', 'back'], ['made', 'cri', 'poor', 'holli', 'xx'], ['bgt', 'poor', 'kid'], ['know', 'buffi', 'sit', 'offic', 'instead', 'go', 'see', 'kane', 'major', 'bummer'], ['quot', 'think', 'know', 'go', 'break', 'tell', 'sorri', 'know', 'love', 'quot'], ['need', 'new', 'iphon', 'case', 'broke'], ['sure', 'hope', 'becom', 'afternoon'], ['spoilt', 'like', 'hard', 'put', 'front', 'peopl', 'realli', 'young'], ['realli', 'like', 'ladi', 'gaga', 'quot', 'paparazzi', 'quot', 'whatshappen'], ['ouch', 'not', 'even', 'look', 'one', 'know', 'exist', 'enough'], ['oh', 'girl', 'aidan'], ['sound', 'good', 'still', 'like', 'friday', 'although', 'mean', 'go', 'work', 'tomarrow'], ['not', 'make', 'good', 'time', 'fuck', 'chicago', 'traffic', 'photo'], ['imnot', 'aloud', 'call', 'think', 'awesomeili', 'xx'], ['not', 'make', 'good', 'time', 'fuck', 'chicago', 'traffic', 'photo'], ['twitter', 'hate', 'not', 'put', 'photo', 'page'], ['guess', 'realli', 'supris'], ['enjoy', 'beauti', 'day', 'hang', 'around', 'hous', 'pam', 'make', 'cake', 'not', 'give'], ['wish', 'home', 'bed', 'nake'], ['aww', 'bless', 'give', 'chanc'], ['work', 'not', 'know', 'exhaust'], ['fuck', 'miss', 'band', 'much'], ['wish', 'go', 'prom', 'oh', 'go', 'wish', 'girl', 'good', 'luck', 'go', 'good', 'oll', 'applebe', 'yumm'], ['miss', 'hubbi', 'alreadi'], ['hubbi', 'play', 'quot', 'blame', 'alcohol', 'quot', 'cours', 'could', 'not', 'get', 'back', 'sleep', 'think', 'joe', 'cruis'], ['nofair', 'bk', 'uhura', 'nero', 'left'], ['check', 'twitter', 'tri', 'find', 'peopl', 'one', 'know', 'use', 'websit'], ['brilliant', 'idea', 'one', 'buzz', 'though'], ['panera', 'lunch', 'byy', 'aww'], ['sorri', 'make', 'sure', 'bomb', 'talk', 'ssug', 'next', 'month', 'penanc'], ['need', 'water', 'paper', 'towel', 'coke', 'store', 'feel', 'sick', 'go', 'get'], ['hell', 'go', 'school', 'hour', 'next', 'monday', 'snow', 'day', 'thier', 'lame', 'mom', 'make', 'go'], ['balanc', 'chair', 'chin', 'sixth', 'form', 'common', 'room', 'got', 'noth', 'sneer', 'hung', 'ball', 'good'], ['think', 'realli', 'good', 'probabl', 'damn', 'obscur'], ['four', 'shot', 'novacain', 'mouth', 'right', 'cheek', 'total', 'numb', 'boo'], ['would', 'mean', 'babe', 'fcuk', 'name', 'super', 'freakin', 'cool', 'give', 'pass', 'ha'], ['sorri', 'respons', 'assist', 'job', 'alreadi', 'fill', 'pleas', 'check', 'back', 'soon', 'sure', 'not', 'last', 'long'], ['home', 'sore', 'knee'], ['forgot', 'tonight', 'plan', 'head', 'cask', 'might', 'not', 'good', 'idea'], ['listen', 'music', 'phone', 'die', 'not', 'find', 'charger', 'brother', 'need', 'stop', 'take', 'mine', 'without', 'ask'], ['littl', 'girl', 'bgt', 'omgg', 'peopl', 'not', 'feel', 'sorri'], ['grr', 'hate', 'make', 'careless', 'mistak', 'doc', 'give', 'partner'], ['omg', 'watch', 'holli', 'steel', 'cri', 'pain', 'bgt'], ['arghh', 'not', 'keep', 'twitterbon', 'peep'], ['hey', 'pleas', 'repli', 'not', 'call', 'mexico', 'not', 'know', 'code', 'love'], ['hey', 'pleas', 'repli', 'not', 'call', 'mexico', 'not', 'know', 'code', 'love'], ['aww', 'got', 'see', 'grade', 'teacher', 'last', 'day', 'retir'], ['miss'], ['haha', 'sorri', 'whole', 'like', 'two', 'peopl', 'follow'], ['close', 'get'], ['suck', 'hang'], ['might', 'put', 'age', 'limit', 'next', 'year', 'back', 'bgt'], ['aww', 'bad', 'lost', 'though'], ['much', 'hair', 'fall', 'everytim', 'shower', 'sad', 'disgust'], ['poor', 'girl', 'britain', 'got', 'talent', 'god', 'love', 'forgot', 'word', 'cri', 'get', 'second', 'chanc', 'perform'], ['realli', 'suck', 'think', 'might', 'cri', 'skip', 'anyth', 'import', 'not', 'comp', 'get', 'dispos'], ['hav', 'fun', 'heav', 'metal', 'happi', 'hour', 'guy', 'futur', 'accadent', 'set', 'fire', 'smoke'], ['enjoy', 'day', 'prob', 'see', 'top', 'glyder', 'pint', 'got', 'drive', 'straight', 'back', 'got', 'dog', 'stuff', 'sunday'], ['get', 'spam', 'colleg', 'email', 'account', 'way', 'rub', 'graduat'], ['help', 'jen', 'monster', 'energi', 'drink', 'crash'], ['peopl', 'r', 'weird'], ['sure', 'miss', 'chick', 'rip'], ['yes', 'pleas', 'not', 'go', 'die', 'cri', 'normal', 'lead', 'small', 'anim', 'get', 'harm'], ['realli', 'hope'], ['broke', 'dresser', 'sinc', 'three'], ['lmao', 'think', 'fuck', 'hate', 'least', 'peopl', 'not', 'unfollow', 'yet', 'loon'], ['justcaus', 'summer', 'hour', 'say', 'day', 'end', 'not', 'mean', 'realli', 'get', 'leav'], ['angri', 'right', 'today', 'not', 'doind', 'noth', 'classmat', 'yes', 'think', 'stay', 'friend', 'hope', 'not'], ['get', 'use', 'get', 'cold', 'asthma', 'pay'], ['not', 'go', 'anywher', 'amp', 'book', 'final', 'get', 'hre', 'cool', 'know', 'wht', 'butch', 'look', 'go', 'mail', 'tdi'], ['back', 'laandan', 'miss', 'alreadi', 'check', 'new', 'giant', 'purpl', 'bow', 'gold', 'wing', 'necklac', 'lt', 'td'], ['miss', 'dog', 'yeah', 'batman', 'realli', 'hope', 'dog', 'go', 'heaven', 'true'], ['work', 'suck'], ['ow', 'sunburn', 'hurt'], ['absolut', 'noth', 'eat', 'hous', 'epic', 'fail'], ['favorit', 'curl', 'iron', 'broke'], ['stupid', 'headach', 'day'], ['damn', 'said', 'could', 'not', 'share', 'info', 'kill', 'evil', 'eddi', 'want', 'info', 'gave'], ['ugh', 'sound', 'like', 'bust', 'cabl', 'box', 'time', 'zone'], ['sorri', 'chili', 'chees', 'dog', 'without'], ['want', 'someth', 'tonight', 'not', 'look', 'promis'], ['not', 'worri', 'not', 'not', 'get', 'tv'], ['car', 'possess', 'not', 'stop', 'honk'], ['wee', 'girl', 'start', 'cri', 'mum', 'came', 'shame'], ['assum', 'mean', 'item', 'nest', 'line', 'invert', 'call', 'tree', 'button', 'found'], ['realli', 'bore', 'anthoni', 'senior', 'board', 'shit', 'hungri', 'cold'], ['sad', 'love', 'kelli', 'lt'], ['quot', 'thing', 'say', 'purpl', 'prose', 'give', 'away', 'quot', 'hell', 'even', 'suppos', 'mean', 'casino', 'music', 'goe', 'die'], ['sit', 'car', 'cat', 'keep', 'meow', 'feel', 'bad'], ['watch', 'maxium', 'not', 'look', 'beauti', 'like', 'girl'], ['scratch', 'ipod'], ['not', 'get', 'job'], ['man', 'still', 'not', 'seen', 'bad', 'work'], ['sorri', 'uncl'], ['cloudi', 'damp', 'hope', 'not', 'rain', 'tonit', 'track', 'meet', 'would', 'hate', 'interview', 'rain'], ['ugh', 'headach', 'want', 'go', 'home'], ['hate', 'watchn', 'thing', 'make', 'sad', 'n', 'wana', 'cri'], ['not', 'respond'], ['not', 'feel', 'good', 'throat', 'hurt'], ['truetru', 'not', 'xd'], ['meant', 'said', 'skin', 'terribl', 'plus', 'sunburnt', 'chest'], ['work', 'readi', 'go'], ['tire', 'work', 'fb'], ['sound', 'input', 'comput', 'stop', 'work', 'not', 'mic', 'jack', 'usb', 'webcam', 'mic', 'not', 'work', 'either', 'check', 'input', 'control'], ['tire', 'stay', 'must', 'finish', 'work', 'sunday'], ['dangit', 'lsu', 'lead', 'southern', 'intent', 'not', 'mention', 'anyth', 'got', 'jinx', 'anyhow'], ['mcdonald', 'eat', 'chicken', 'nugget', 'kid', 'embarras', 'drope', 'soda', 'haha', 'fell', 'tray', 'lol'], ['found', 'want', 'abl', 'go', 'see', 'daddi', 'tomorrow', 'leav', 'ty', 'activ', 'tomorrow', 'morn', 'suck'], ['rice', 'readi', 'watch', 'comet', 'import', 'music', 'price', 'n', 'lisa', 'arriv', 'around', 'still', 'hour'], ['ugh', 'hour'], ['feel', 'think', 'dehydr'], ['yoo', 'myy', 'bust', 'sick', 'shoot', 'long', 'night', 'tonight'], ['gut', 'kitchen', 'empti', 'liter', 'empti', 'even', 'kid', 'hungri'], ['dude', 'fail', 'know', 'exact', 'place'], ['took', 'antibiot', 'still', 'feel', 'like', 'crap'], ['home', 'chocol', 'peanut', 'butter', 'stupid', 'kid', 'bus', 'ruin', 'yearbook'], ['exam', 'stress'], ['big', 'laptop', 'big', 'time', 'switch', 'ee', 'bye', 'big', 'guy'], ['get', 'sadder'], ['ugh', 'realiz', 'complet', 'redo', 'tweetdeck', 'group', 'pain', 'comput', 'wipe', 'clean'], ['comput', 'stupid', 'not', 'let', 'vote', 'could', 'would', 'vote'], ['britain', 'got', 'tortur', 'edelcri'], ['would', 'like', 'game', 'system'], ['look', 'cute'], ['awwh', 'stuck', 'traffic', 'boo'], ['hope', 'rain', 'stop', 'time', 'get', 'metro', 'courthous', 'not', 'bring', 'umbrella', 'today'], ['bore', 'cleanin', 'hous'], ['damm', 'feel', 'like', 'song', 'dead', 'gone', 'travi', 'garland'], ['kind', 'hard', 'see', 'pic', 'doggi', 'pic', 'not', 'exist'], ['miss', 'lot', 'class'], ['go', 'work', 'soon', 'excit', 'ugh', 'id', 'rather', 'pluck', 'fingernail'], ['happen', 'wierd', 'sudden'], ['headach', 'want', 'see', 'juli'], ['dang', 'drop', 'subway', 'da', 'floor', 'ahh', 'rule', 'pass', 'alreadi'], ['say', 'goodby', 'papa'], ['caus', 'miss', 'lot', 'class'], ['annoy'], ['would', 'slip', 'fall', 'dirti', 'school', 'bathroom', 'floor', 'fml'], ['aww', 'shame', 'still', 'followfriday', 'though', 'gt', 'gt'], ['oh', 'yea', 'not', 'think', 'open', 'yet', 'took', 'ben', 'amp', 'jerri', 'love', 'place'], ['citi', 'offici', 'smell', 'like', 'dead', 'fish'], ['not', 'good'], ['dog', 'go', 'die', 'somebodi', 'not', 'save'], ['sorri', 'anna', 'wintour', 'repeat', 'tweet', 'soo', 'sorri', 'someth', 'wonder', 'quad', 'tweet'], ['rain', 'make', 'sad', 'like', 'want', 'kill', 'lt'], ['think', 'kill', 'old', 'bromeliad', 'need', 'new', 'pet', 'plant', 'not'], ['even', 'noo', 'not', 'secret', 'namerebecca', 'pleas'], ['anoth', 'two', 'hour', 'work', 'ugh', 'goe', 'slow', 'sore'], ['want', 'get', 'blackberri', 'not', 'afford', 'watch', 'telli', 'relax', 'hard', 'sesion', 'tomorrow'], ['omg', 'mine', 'omg', 'gross', 'sorri', 'total', 'forgot'], ['today', 'day', 'leakycon', 'awesom', 'number', 'wish', 'not', 'far', 'away'], ['eew', 'chees', 'hate', 'chees'], ['got', 'realli', 'sick', 'today', 'text', 'later', 'nap', 'time'], ['label', 'sorri', 'know', 'realli', 'needi'], ['silli', 'boyfriend', 'forget', 'phone', 'charger', 'day', 'long', 'trip', 'kilkenni', 'not', 'talk', 'see', 'gig', 'went', 'poo'], ['ya', 'know', 'today', 'suck', 'rain', 'amp', 'possibl', 'magic', 'friday', 'goin', 'tonight'], ['not', 'like', 'make', 'gum', 'hurt'], ['not', 'proper', 'dog', 'bark', 'much', 'amp', 'jump', 'amp', 'fault', 'not', 'strict', 'enough'], ['follow', 'friday', 'make', 'feel', 'realli', 'unpopular'], ['not', 'one', 'favourit', 'pastim', 'weekend', 'long', 'weekend', 'monday', 'ice', 'show'], ['not', 'ben', 'n', 'sorri', 'bac', 'hit', 'hup'], ['ladi', 'think', 'watch', 'scrub', 'delusion', 'bail', 'plan'], ['bye', 'twitter', 'amp', 'fb', 'world', 'san', 'francisco', 'airport', 'readi', 'board', 'air', 'china', 'not', 'sure', 'internet', 'access'], ['promis', 'would', 'spread', 'card', 'around', 'gave', 'someon', 'deck', 'amp', 'never', 'gave'], ['damn', 'spent', 'week', 'whole', 'pay', 'shop', 'oh', 'well', 'happi'], ['stomach', 'ach', 'ahh'], ['dire', 'need', 'second', 'job', 'hear', 'anyth', 'nightlif', 'food', 'servic', 'pleas', 'pleas', 'pleas', 'think'], ['shoot', 'aunt', 'home', 'soon', 'cri', 'eye'], ['sorri'], ['tri', 'move', 'get', 'hurt', 'much'], ['hi', 'heather', 'not', 'know', 'saw', 'messag', 'april', 'not', 'twitter', 'friend'], ['hate', 'costco', 'alway', 'cost', 'us', 'much', 'money'], ['reyt', 'fanci', 'valentino', 'worst', 'time', 'consid', 'not'], ['well', 'get'], ['omgg', 'not', 'beliv', 'happen', 'friend', 'know', 'miss', 'not', 'nice'], ['also', 'conced', 'first', 'twitter', 'grammar', 'fail'], ['feel', 'slight', 'sick', 'bgt'], ['appli', 'osap', 'yet', 'god', 'go', 'owe', 'major', 'end', 'academ', 'career', 'not', 'right'], ['nvr', 'want', 'may', 'come', 'end'], ['write', 'first', 'quot', 'showstopp', 'quot', 'entri', 'lost', 'hour', 'work', 'due', 'server', 'issu'], ['sound', 'forebod'], ['way', 'short', 'notic', 'know', 'rsvping', 'thank', 'much', 'invit', 'though'], ['head', 'hurt'], ['odd', 'tri', 'call', 'mitchel', 'musso', 'dosent', 'work'], ['sad', 'commentari', 'not'], ['weirdest', 'hive', 'leg', 'arm', 'heck', 'allerg', 'itch', 'bad', 'dang'], ['never', 'repli', 'mee', 'must', 'realli', 'hate', 'l'], ['wish', 'could', 'work', 'oppos', 'wit', 'kid', 'cuz', 'hardest', 'job', 'eva'], ['deep', 'fri', 'drumstick', 'not', 'good', 'thought', 'would'], ['get', 'back', 'sore', 'surgeri', 'time'], ['lula', 'not', 'feel', 'well'], ['miss', 'howev', 'humpthestump', 'rest', 'life'], ['headach', 'ugh'], ['even', 'arnold', 'could', 'not', 'save', 'park', 'provid', 'job'], ['work', 'suppos', 'day', 'much', 'work', 'get', 'done', 'plm', 'world', 'sigh'], ['take', 'underpriveledg', 'kid', 'circus', 'big', 'day', 'plan', 'amp', 'still', 'not', 'feel', 'nervous', 'right'], ['plus', 'guy', 'icetv', 'realli', 'miss', 'live'], ['talk', 'today', 'oh', 'god', 'problem', 'problem', 'problem', 'love', 'money', 'math', 'enough', 'not'], ['neil', 'pick', 'show', 'tailight', 'heartless', 'hit', 'run'], ['see', 'jona', 'brother', 'movi', 'funni', 'one', 'els', 'hahah', 'not'], ['not', 'realli', 'want', 'go', 'school', 'monday', 'honest'], ['work', 'half', 'hour', 'get', 'mri', 'yay'], ['anyon', 'know', 'scale', 'pic', 'tri', 'chang', 'pic', 'pic', 'r', 'big', 'n', 'keep', 'crop'], ['hav', 'bet', 'get', 'pack', 'day', 'suck'], ['oh', 'need', 'new', 'work', 'broke', 'one'], ['mayb', 'someth', 'wrong', 'still', 'not', 'work'], ['not', 'direct', 'messag', 'free', 'lunch'], ['soo', 'good', 'wood', 'ranch', 'bbq', 'time', 'dian', 'deng', 'pao'], ['lot', 'req', 'today', 'fun'], ['finish', 'mine', 'part', 'remark', 'difficult', 'cram', 'kanji'], ['ashley', 'tisdal', 'mean', 'cuz', 'berlin', 'june', 'not', 'go', 'want', 'start', 'cryin', 'right', 'ashley', 'pick'], ['race', 'total', 'lost', 'rip'], ['go', 'stuck', 'seem', 'misplac', 'remot', 'extra', 'bad', 'tonight', 'well'], ['momentum', 'work', 'jeff', 'hard', 'time'], ['want', 'go', 'tire', 'anyway', 'go', 'work', 'tomorrow'], ['mad', 'love', 'money'], ['feel', 'like', 'crap'], ['not', 'soo', 'notic', 'depend', 'look', 'know', 'ipod', 'not', 'perfect'], ['hard', 'go', 'guy', 'peic', 'person', 'shoud', 'chang', 'mine', 'hard', 'chang'], ['anyon', 'want', 'stop', 'carl', 'jr', 'bring', 'chicken', 'club', 'bare', 'walk'], ['text', 'friend', 'bore', 'gosh', 'hate', 'rain'], ['dam', 'wish', 'celeb', 'could', 'frikken', 'follow', 'baackk'], ['nm', 'dang', 'got', 'bounc', 'like', 'minut', 'chill', 'usual'], ['read', 'phone', 'book', 'hugh', 'clanci', 'hugh', 'hugh', 'clap', 'poor', 'holli', 'though', 'grab', 'piti', 'vote', 'like', 'shark'], ['pool', 'not', 'fun', 'without', 'tim'], ['thank', 'timmi', 'turn', 'strep', 'high', 'fever'], ['ugh', 'suck'], ['refus', 'get', 'excit', 'not', 'want', 'let', 'happen', 'long', 'not', 'june', 'would', 'die'], ['wish', 'still', 'love'], ['sad', 'gone', 'show', 'mcfli', 'fan'], ['hit', 'street', 'hour', 'live', 'lexington', 'homeless', 'problem', 'facebook', 'twitter', 'pray', 'us'], ['ohh', 'tooth', 'hurt', 'ohh', 'sad', 'hurt'], ['wish', 'could', 'not', 'wrap', 'head', 'around', 'hope', 'wake', 'peopl', 'quot', 'racism', 'not', 'exist', 'anymor', 'quot'], ['class', 'student', 'go', 'miss'], ['fun', 'like', 'beach', 'tend', 'get', 'realli', 'dark', 'fast'], ['alexx', 'gona', 'miss', 'today', 'sad', 'noo'], ['dlukasrossi', 'amaz', 'wife', 'updat', 'lock', 'hard', 'convinc', 'peopl', 'follow', 'protect', 'profil'], ['wish', 'lay', 'sand', 'listen', 'wave', 'crash', 'shore'], ['felt', 'sorri', 'peopl', 'realli', 'harsh', 'cos', 'given', 'chanc'], ['today', 'lunch', 'cuz', 'wel', 'embarrass', 'self', 'quot', 'school', 'quot', 'ok', 'final', 'test', 'final', 'year', 'aa', 'thanx', 'god', 'friend'], ['oop', 'late'], ['yay', 'good', 'umm', 'reggi', 'perrin', 'next', 'oh', 'care', 'watch', 'lol'], ['tri', 'straighten', 'hair', 'ef', 'hot', 'also', 'need', 'food'], ['shelf', 'ikea', 'fell', 'wall', 'damag', 'worth', 'least', 'estim'], ['aww', 'suck', 'eek', 'airlin', 'charg'], ['know', 'see', 'peopl', 'love', 'countri', 'could', 'not', 'get', 'closer'], ['stomach', 'bleh'], ['get', 'well', 'soon'], ['go', 'miss', 'see', 'everyon', 'time'], ['not', 'want', 'work', 'tonight'], ['laura', 'ell', 'fou', 'ell', 'not', 'like', 'french', 'fan'], ['everi', 'time', 'rain', 'see', 'least', 'ambul'], ['asthma', 'issu', 'today', 'bah'], ['screen', 'green', 'start', 'yesterday', 'ahh', 'miss'], ['hard', 'let', 'go', 'see', 'cri'], ['not', 'happi', 'tweet'], ['rofl', 'even', 'kept', 'insur', 'payment', 'still', 'like', 'meh', 'good', 'thing', 'appli', 'day', 'job', 'pasi'], ['wish', 'could', 'paulo', 'show', 'fortun', 'went', 'brasilia', 'one', 'haha'], ['man', 'not', 'beliv', 'everyth', 'not', 'look', 'good'], ['watch', 'jon', 'amp', 'kate', 'plus', 'not', 'believ', 'divorc'], ['someon', 'take', 'care', 'sick'], ['sorri'], ['hey', 'funni', 'stop', 'get', 'coffe', 'way', 'spilt', 'half', 'car'], ['produc', 'anchor', 'sad', 'goodby', 'miss', 'lynn', 'ashminov', 'miss'], ['sulk', 'home', 'rain', 'poor', 'strategi', 'watch', 'sun', 'shine', 'desk', 'robart', 'refer', 'room'], ['believ', 'architect', 'plan', 'promenad', 'small', 'town', 'intern', 'prize', 'everyon', 'walk', 'amp', 'jog'], ['sick', 'daddi', 'send', 'prayer', 'way'], ['laura', 'gone', 'weekend', 'miss', 'alreadi'], ['leav', 'utah', 'today', 'super', 'sad', 'face'], ['good', 'god', 'fit', 'swear', 'word', 'charact'], ['noo', 'poor', 'se'], ['wish', 'gm', 'stock', 'would', 'turn', 'around', 'cent', 'share', 'would', 'will', 'buy', 'knew', 'would', 'someth'], ['lil', 'sis', 'cousin', 'babyfath', 'jimmi', 'aka', 'gemstar'], ['argh', 'color', 'jealous', 'rain', 'ask', 'day', 'still', 'not', 'gone', 'away'], ['peopl', 'work', 'stress'], ['year', 'amp', 'left', 'dell', 'okc', 'last', 'time', 'geeki', 'girl', 'wait', 'cri', 'got', 'car', 'love'], ['sittin', 'bore', 'ass', 'confer', 'call', 'get', 'go', 'home', 'n', 'nap', 'missin', 'alot'], ['omg', 'seen', 'sun', 'moon', 'place', 'disprov', 'theori', 'person'], ['today', 'suck', 'katey', 'broke', 'yah', 'kate', 'broke', 'aw', 'nd', 'vodka'], ['week', 'lone', 'without', 'gossip', 'girl', 'xoxo'], ['found', 'littl', 'late', 'could', 'not', 'afford'], ['heyi', 'sis', 'year', 'month', 'still', 'want', 'walk'], ['cool', 'could', 'call', 'phone', 'not', 'let', 'call', 'number'], ['sad', 'not', 'day', 'hello'], ['hate', 'cottag', 'chees', 'even', 'got', 'fanci', 'stuff', 'last', 'weekend', 'lemon', 'could', 'eat', 'half'], ['hahaha', 'not', 'owe', 'anyth', 'owe', 'red', 'lol', 'te', 'amo', 'idiot', 'hahaha', 'te', 'veo', 'ahasta', 'el', 'lune'], ['tire', 'today', 'think', 'go', 'take', 'nap', 'friend', 'come', 'miss', 'wish', 'restrict', 'alreadi'], ['could', 'say', 'left', 'vt', 'blackberryless', 'sinc', 'tuesday', 'night', 'lost'], ['lmao', 'camp', 'water', 'shower', 'well', 'water', 'smelt', 'nasti'], ['aww', 'lost', 'follow', 'fail'], ['scienc', 'class', 'right', 'urgh', 'stupid', 'project', 'not', 'want', 'go', 'track', 'school', 'tire', 'lol'], ['hate', 'feel', 'like'], ['aww', 'not', 'sad', 'download', 'copi'], ['good', 'visibl', 'shot', 'td', 'one', 'show', 'total', 'decoupl', 'low', 'mid', 'level', 'system', 'dead', 'wait', 'next', 'one'], ['ohh', 'barcalona', 'pleas', 'not', 'ruin', 'bgt'], ['daddi', 'left', 'go', 'back', 'home', 'texa', 'c', 'hope', 'n', 'next', 'two', 'month'], ['gain', 'wish', 'could', 'afford', 'someth', 'top', 'ramen', 'job'], ['monitor', 'not', 'turn', 'work', 'mother'], ['dint', 'dump', 'anyon', 'alway', 'get', 'dump', 'blame', 'not', 'believ', 'relationship', 'twpp'], ['got', 'buy', 'second', 'season', 'ghost', 'whisper', 'noo', 'moneyi'], ['bgt', 'ooh', 'weird'], ['aww', 'bless', 'haha', 'cute', 'tom'], ['tea', 'pitcher', 'thing', 'hard', 'find', 'not', 'seen', 'found', 'onlin', 'ugli'], ['tri', 'soo', 'hard', 'toget', 'want', 'amp', 'alway', 'end', 'goos', 'egg'], ['get', 'one', 'lil', 'gem', 'ear', 'repierc', 'work', 'definit', 'dread'], ['friday', 'not', 'wait', 'done', 'work', 'stuck', 'till'], ['car', 'crash', 'tv', 'worst'], ['mayb', 'wrong', 'week', 'could', 'stay', 'good', 'not'], ['bad', 'affect', 'languag', 'run', 'jvm', 'bad'], ['make', 'sad'], ['ohh', 'rather', 'bore', 'friday', 'night', 'soo', 'bore'], ['bum', 'contest', 'state', 'hawaii'], ['happi', 'birthday', 'man', 'ride', 'wed', 'see', 'guy', 'soon', 'though', 'play', 'juli'], ['bgt', 'not', 'watch', 'anymor'], ['lol', 'serious', 'fail'], ['not', 'miss', 'girlfriend', 'season'], ['ohh', 'twpp', 'fall', 'silent', 'wait', 'track', 'us', 'version', 'next', 'time', 'mayb', 'way', 'sunni', 'california', 'sound', 'good'], ['go', 'go', 'round', 'dvds', 'sell', 'miss', 'need', 'money'], ['traffic', 'crawl', 'right'], ['errg', 'not', 'believ', 'not', 'work', 'next', 'week', 'think', 'time', 'move', 'chick', 'fil'], ['resort', 'wear', 'today', 'not', 'finish', 'laundri', 'lol'], ['meh', 'feel', 'fine', 'crazi', 'minut', 'sick', 'session', 'hungri'], ['not', 'mention', 'hw', 'fat', 'get', 'frm', 'wrk', 'n'], ['yep', 'got', 'go', 'man', 'ttyl', 'eventu', 'sometim', 'futur', 'hope', 'soon'], ['start', 'anoth', 'hour', 'behind', 'wheel', 'driver', 'ed'], ['not', 'know', 'lender', 'yea', 'peopl', 'definit', 'suck', 'butt', 'toe', 'not', 'friend', 'help'], ['day', 'thing', 'suck', 'today'], ['cool', 'like', 'germani', 'award', 'saw', 'tv', 'could', 'not', 'come', 'comet', 'see', 'live', 'xoxo'], ['gaww', 'facebook', 'slow'], ['nope', 'look', 'super', 'sweet'], ['terrifi', 'surgeri', 'next', 'week'], ['not', 'stand', 'summer', 'fever', 'weather', 'get', 'realli', 'humid', 'lol'], ['not', 'feel', 'comfort', 'use', 'not', 'aw', 'pretti', 'icki', 'scurri', 'find', 'deal'], ['not', 'think', 'feel', 'well', 'sudden', 'tire', 'scare', 'fall', 'asleep', 'cuz', 'know', 'wake', 'sick'], ['think', 'quot', 'much', 'want', 'quot', 'factor', 'realli', 'want', 'fit', 'not', 'go', 'happen'], ['want', 'go', 'pub', 'boo'], ['appar', 'degre', 'kilkenni', 'comedi', 'would', 'great', 'remedi', 'boredom', 'hell', 'leav', 'kilkenni'], ['everyon', 'say', 'suppos', 'nude', 'pic', 'matt', 'striker', 'hope', 'get', 'troubl'], ['watch', 'jeremi', 'assembl', 'jr', 'new', 'radio', 'flyer', 'bike', 'jr', 'sick', 'degre', 'fever', 'take', 'nap', 'cheer', 'though'], ['made', 'huge', 'revel', 'dish', 'everyon', 'left', 'total', 'forgot', 'hate', 'happen'], ['graduat', 'next', 'sunday', 'go', 'miss', 'class'], ['miss'], ['youtub', 'watch', 'taylor', 'today', 'show', 'wish'], ['deep', 'disgust', 'would', 'even', 'take', 'littl', 'help', 'ala', 'sens', 'never', 'happen'], ['aw', 'thank', 'slowli', 'get', 'yep', 'tweak', 'knee', 'late', 'third', 'basic', 'stood', 'still', 'last', 'game'], ['kill', 'pigeon', 'today', 'thought', 'go', 'move', 'way', 'car', 'next', 'thing', 'know', 'bang', 'feather', 'rear', 'view', 'mirror', 'rip'], ['lame', 'not', 'deland', 'favorit', 'peopl'], ['poor', 'littl', 'mba', 'fire'], ['sorri', 'demi', 'read', 'post', 'attend', 'bgt', 'sure', 'support', 'sb', 'help', 'though', 'world', 'without', 'pap', 'plzz'], ['great', 'alway', 'not', 'east', 'germani', 'noko', 'least', 'provok', 'amp', 'go', 'kill'], ['oh', 'rain', 'sea', 'world', 'parad'], ['angrri', 'fb', 'account', 'got', 'wtf', 'poem', 'ever', 'written'], ['dammit', 'need', 'new', 'cupcak', 'tin'], ['lol', 'exam', 'not', 'go', 'mcast', 'school', 'finish', 'form', 'soo', 'disappoint'], ['lunch', 'fun', 'noth', 'eat'], ['oh', 'noe', 'macbook', 'hard', 'disk', 'die'], ['wow', 'love', 'headach', 'medicin', 'hous'], ['think', 'someon', 'may', 'key', 'car', 'big', 'scratch', 'hood'], ['feel', 'like', 'quarantin', 'everywher', 'go', 'pinkey', 'go', 'away', 'alreadi'], ['lol', 'none'], ['wish', 'photo', 'site', 'bigger'], ['boo', 'anim', 'collect', 'alreadi', 'sold', 'guess', 'miss', 'show'], ['lol', 'exam', 'not', 'go', 'mcast', 'school', 'finish', 'form', 'soo', 'disappoint'], ['sun', 'suck', 'especi', 'pale', 'whiteman', 'skin', 'not', 'stop', 'sneez', 'blame'], ['got', 'done', 'work', 'work'], ['want', 'iphon', 'lt'], ['sad', 'time', 'come', 'put', 'mom', 'home'], ['follow', 'week', 'would', 'better', 'gone', 'next', 'week'], ['arrg', 'tri', 'upload', 'thing', 'not', 'let'], ['class', 'next', 'two', 'work', 'everyday', 'today', 'til', 'next', 'wednesday', 'sad'], ['got', 'done', 'even', 'lab', 'left', 'not', 'figur', 'fml'], ['realli', 'sad'], ['one', 'saddest', 'song', 'ever', 'heard'], ['would', 'not', 'let', 'vote', 'yesterday', 'made', 'today', 'realli', 'hope', 'win', 'everyon', 'know', 'deserv'], ['wish', 'not', 'rain'], ['ugh', 'wait', 'visitor', 'pass', 'get', 'post', 'take', 'forev'], ['reaalli', 'bore'], ['final', 'get', 'lay', 'bit', 'major', 'headach'], ['aww', 'man', 'babi', 'dri'], ['heartburn', 'may', 'death'], ['aww', 'suck'], ['sad', 'not', 'go', 'make', 'sad'], ['not', 'swine', 'flu', 'atleast', 'hope', 'not'], ['got', 'hard', 'parent', 'apart', 'marriag', 'month', 'year', 'amp', 'mi', 'apart'], ['oh', 'dear', 'select', 'worst', 'bit', 'highlight', 'soprano', 'guy'], ['whaat', 'strong', 'rain', 'came', 'us', 'santa', 'clara', 'wish', 'could', 'sleep', 'got', 'attend', 'import', 'meet'], ['soo', 'children', 'museum', 'close', 'fund', 'raiser', 'got', 'annoy'], ['fair', 'ask', 'mktg', 'cd', 'etc', 'suggest', 'never', 'even', 'email', 'back'], ['bore', 'skull', 'got', 'get', 'job', 'suck', 'need', 'entertain'], ['sunburnt', 'gut', 'hope', 'fade', 'tmw'], ['sorri', 'post', 'vid', 'not', 'load'], ['oh'], ['poor', 'go', 'nap'], ['arnold', 'california', 'aka', 'best', 'place', 'could', 'come'], ['amp', 'head', 'feel', 'like', 'surfac', 'sun', 'underneath', 'beaver', 'pelt'], ['anywho', 'got', 'pool', 'within', 'like', 'minut', 'start', 'storm'], ['bad', 'mood', 'not', 'feel', 'good', 'bad', 'one', 'care'], ['ouuchh', 'hurt', 'index', 'finger', 'ahh'], ['ftsk', 'l', 'not', 'listen', 'fuck', 'piss', 'call', 'not', 'wait', 'leav', 'shitti', 'school'], ['stress', 'want', 'prom', 'perfect', 'amp', 'babe', 'shit', 'not', 'look', 'good', 'right'], ['want', 'watch', 'movi', 'quot', 'quot', 'one', 'want', 'watch'], ['stick', 'stone', 'may', 'break', 'word', 'hurt', 'forev'], ['realli', 'full', 'feel', 'sick'], ['keep', 'pull', 'knit', 'desk', 'put', 'back', 'not', 'good', 'not', 'good', 'minut', 'till', 'releas'], ['soo', 'crazi', 'fever'], ['blast', 'sale', 'today', 'one', 'pair', 'cord', 'mis', 'size', 'though', 'still', 'worth', 'might', 'come', 'back', 'tomorrow', 'thankss'], ['sad', 'stanley', 'steemer', 'number'], ['tri', 'decid', 'movi', 'friend', 'not', 'go', 'well', 'lol', 'p', 'bibl', 'studi', 'mean', 'cake', 'buy'], ['saddest', 'celeb', 'stori', 'week'], ['holiday', 'not', 'fair'], ['go', 'miss', 'eddi', 'half', 'countri', 'apart'], ['not', 'go', 'danc', 'recit', 'feel', 'like', 'piec', 'shit', 'cuz', 'cost', 'much', 'money'], ['fuck', 'cut', 'finger'], ['think', 'tour', 'england', 'not', 'got', 'see', 'aweoms', 'peopl'], ['stupid', 'twitter', 'faceless'], ['hate', 'wait', 'one', 'week', 'see', 'cuz', 'puerto', 'rico', 'still', 'come', 'soon'], ['right', 'armi', 'wife', 'germani', 'not', 'stand', 'not', 'summer'], ['wish', 'could', 'would', 'cost', 'much', 'call', 'way', 'uk'], ['need', 'tweep', 'not', 'dislik', 'not', 'keep', 'tweet', 'liter', 'everi', 'minut', 'sorri'], ['not', 'believ', 'tweet', 'special', 'moment'], ['wow', 'constant', 'rant', 'love', 'genghi', 'grill', 'never', 'not', 'colorado'], ['not', 'not', 'not', 'sad', 'venezuela'], ['swear', 'hot', 'not', 'want', 'leav', 'hous', 'hot'], ['rich', 'man', 'amaz', 'realli', 'not', 'bother', 'school', 'monday'], ['went', 'dmv', 'thing', 'never', 'chang'], ['hmm', 'sorri', 'went', 'mia'], ['got', 'back', 'school', 'ugh', 'not', 'want', 'go', 'danc', 'tonight'], ['oh', 'nooww', 'busi', 'see', 'long', 'known'], ['ouch', 'back', 'sick', 'pamela', 'anderson', 'esqu', 'chest'], ['everyon', 'set', 'quot', 'away', 'quot', 'msn', 'nobodi', 'talk'], ['entir', 'week', 'not', 'get', 'design', 'graphic', 'design', 'job', 'home', 'freelanc', 'sad'], ['tri', 'call', 'work', 'time', 'not', 'answer'], ['never', 'answer', 'wath', 'say'], ['hi', 'agre', 'small', 'children', 'run', 'happi', 'not', 'break', 'tear'], ['want', 'one', 'bad', 'get', 'one'], ['wow', 'broke', 'toe', 'today', 'stupid', 'piec', 'concret', 'lame', 'job', 'search', 'sight', 'see', 'brittani'], ['not', 'marri', 'silli', 'man', 'done', 'long', 'ago', 'read', 'tweet', 'bare', 'escap', 'pay', 'alimoni'], ['aww', 'sweeti', 'could', 'alway', 'take', 'break', 'read', 'write', 'someth', 'happier', 'make', 'feel', 'better'], ['stand', 'tailbon', 'kill'], ['kid', 'got', 'second', 'chanc', 'shudnt', 'mowg', 'not', 'gut'], ['ughh', 'feel', 'rubbish'], ['damn', 'never', 'knew', 'could', 'miss', 'phone', 'much', 'hour', 'till', 'told', 'not', 'back', 'till'], ['finish', 'take', 'world', 'geograhi', 'final', 'think', 'bad'], ['bum', 'miss', 'hope', 'enjoy', 'write', 'conf', 'though'], ['one', 'thing', 'hate', 'friend', 'dat', 'move', 'skl', 'forget', 'yuu'], ['scare', 'bruis'], ['offici', 'worst', 'day', 'call', 'mile', 'away'], ['weekend', 'look', 'sloppi', 'look', 'forward', 'great', 'week', 'great', 'custom'], ['sickk', 'tomorrow', 'disast', 'not', 'get', 'better'], ['depress', 'pretti', 'day', 'everyon', 'either', 'someth', 'not'], ['ya', 'pretti', 'bad', 'not', 'sure', 'get', 'go', 'visit', 'super', 'busi', 'late'], ['head', 'hurt', 'feel', 'sick', 'go', 'work', 'tomorrow'], ['break', 'heart'], ['umm', 'idea', 'friend', 'piss', 'not', 'know', 'hate', 'much', 'need', 'help', 'britney', 'plz'], ['would', 'like', 'nutella', 'none'], ['welcom', 'sweeti', 'anytim', 'need', 'find', 'way', 'get', 'follow', 'not', 'mani'], ['gaasp', 'not', 'know', 'final', 'one', 'sad', 'read', 'book', 'year'], ['work', 'till', 'dread', 'tv', 'shop', 'mine', 'broke'], ['alreadi', 'miss', 'mohawk'], ['denial', 'fuck', 'truth'], ['noo', 'font', 'connoisseur', 'total', 'relat', 'dude', 'heart', 'goe'], ['well', 'sad', 'live', 'bore', 'citi', 'usa', 'noth'], ['not', 'believ', 'venus', 'lost', 'real', 'shame', 'smh', 'think', 'get', 'sick', 'crap', 'week', 'not', 'look', 'like', 'wknd', 'gona', 'better'], ['man', 'peopl', 'hard', 'reach', 'stalk'], ['hahahahahahahahahahahaha', 'love', 'actual', 'mad', 'crave', 'late', 'though'], ['got', 'home', 'rosi', 'surpris', 'smile', 'hug', 'amp', 'kiss', 'wait'], ['speak', 'fish', 'compani', 'fish', 'die', 'rip', 'julio'], ['littl', 'bird', 'flew', 'window', 'snap', 'neck'], ['phone', 'whatchu', 'tonight', 'sucka', 'dane', 'cook', 'sold', 'ticket', 'lame'], ['wlda', 'seen', 'wit', 'dummyhead'], ['got', 'stung', 'bee'], ['water', 'park', 'today', 'made', 'jealous', 'look', 'pic'], ['long', 'stress', 'day', 'come', 'tomorrow', 'write', 'respons', 'eoi', 'colleagu', 'job'], ['much', 'homework', 'think', 'go', 'hide', 'corner', 'cri'], ['aarrgghh', 'huge', 'spider', 'towel', 'pile', 'cri', 'glad', 'kerbear', 'not', 'sorri', 'mum', 'not', 'bring', 'rest'], ['readin', 'last', 'twitt', 'hope', 'ok'], ['awe', 'man', 'hope', 'someon', 'turn'], ['worst', 'dream', 'ever', 'weird', 'think', 'thought', 'subconsci'], ['exact', 'day', 'man', 'buri', 'followfriday'], ['not', 'ipod', 'not'], ['fine', 'tri', 'figur', 'mean', 'behind', 'song', 'not', 'think', 'anyth'], ['least', 'made'], ['bgt', 'shame', 'dreambear', 'not', 'get'], ['know', 'mom', 'go', 'monday', 'get', 'chang', 'upset'], ['took', 'best', 'friend', 'year', 'well', 'know', 'kati', 'outzen', 'quiz', 'fail', 'happen', 'sad'], ['alway', 'want', 'perfect', 'hard', 'even', 'know', 'imposs'], ['happi', 'friday', 'danc', 'rain', 'outta', 'sat', 'saturday', 'morn', 'shift', 'still', 'good'], ['noo', 'worst', 'news', 'ever', 'today', 'tattoo', 'artist', 'move', 'omg', 'go'], ['fed', 'pain'], ['not', 'leav', 'alon', 'accept', 'appolog'], ['damn', 'total', 'gut', 'decid', 'not', 'go', 'tonight', 'roni', 'size', 'djing'], ['bet', 'receiv', 'lot', 'hit', 'tweet', 'work', 'not', 'wish', 'could'], ['say', 'smudg', 'start', 'call', 'peopl', 'given', 'malici', 'action', 'pull', 'night'], ['get', 'trumpet', 'book', 'get', 'caught', 'rain', 'trumpet', 'book', 'oh', 'dear', 'ny'], ['yeah', 'unfortuantley', 'sam', 'hank', 'crap', 'bowl', 'like', 'roll', 'along', 'floor', 'got', 'grr'], ['not', 'think', 'would', 'happi'], ['went', 'limit', 'action', 'per', 'hour', 'twitter', 'client', 'hate', 'limit'], ['wish', 'could', 'sat', 'super', 'busi', 'day', 'sunday', 'perhap', 'play', 'footbal', 'dolor', 'park', 'welcom', 'come', 'hang'], ['believ', 'tri', 'ginger', 'freckl', 'join', 'face', 'get', 'bottl', 'cancer'], ['hernia', 'hurt', 'way', 'usual', 'tonight', 'way', 'abl', 'go'], ['swoob', 'swass', 'hell', 'air', 'not', 'today', 'pack', 'blech'], ['oh', 'work', 'poor', 'boy'], ['glad', 'weekend', 'one', 'week', 'left', 'school', 'kid'], ['yeah', 'rememb', 'hug'], ['saw', 'made', 'sad'], ['favorit', 'song', 'stand', 'not', 'see', 'would', 'give', 'chang', 'not', 'know', 'call'], ['dam', 'want', 'android', 'stupid', 'roger'], ['not', 'even', 'want', 'go', 'store', 'get', 'ice', 'cream', 'wast', 'cute', 'outfit', 'sit', 'ass', 'twitter'], ['guess', 'hour', 'mainten', 'sad', 'miss', 'friend'], ['dead', 'gerbil'], ['stomach', 'cramp', 'sat', 'bed', 'hot', 'water', 'bottl', 'hot', 'milk', 'amp', 'toast', 'feel', 'like', 'wi', 'girl', 'minus', 'stomach', 'cramp'], ['kno', 'kknow', 'sigh', 'suck'], ['tire'], ['quot', 'mom', 'friend', 'drink', 'quot'], ['not', 'start', 'cat', 'fire'], ['sunburn'], ['ipod', 'headphon', 'gone', 'kaput', 'want', 'buy', 'new', 'one', 'buy', 'bose', 'instead', 'work', 'appl'], ['frame', 'damag', 'car', 'could', 'total'], ['know', 'short', 'week', 'certain', 'drag'], ['traffic', 'horrif', 'jus', 'want', 'gt', 'dog'], ['ok', 'mate', 'stay', 'well', 'loser', 'not'], ['go', 'winchest', 'sister', 'not', 'go', 'bad', 'time', 'x'], ['oh', 'ok', 'well', 'sendin', 'lot', 'love', 'xx'], ['bwahahahahahahaha', 'nice', 'want', 'doggi'], ['bummer', 'bro', 'sorri', 'hear'], ['stand', 'gay', 'marriag', 'fuck', 'natali', 'stop', 'ask', 'gay', 'ass', 'question', 'go', 'get', 'job', 'dad'], ['witch', 'upstat', 'fuck', 'hick', 'dri', 'counti', 'alcohol', 'ethnic', 'food', 'cri'], ['pku', 'meet', 'london', 'day', 'today', 'one', 'favorit', 'pkuer', 'jessi', 'not', 'pku', 'leukemia', 'hospit'], ['san', 'jose', 'good', 'time', 'also', 'help', 'dad', 'edit', 'next', 'holi', 'land', 'brochur', 'wish', 'could', 'go'], ['tri', 'go', 'got', 'messag', 'quot', 'page', 'not', 'exist', 'quot'], ['almost', 'time', 'say', 'good', 'bye', 'twimul', 'miss', 'tweep'], ['movi', 'amaz', 'littl', 'short', 'want'], ['hate', 'go', 'work'], ['attack', 'cola', 'sticki'], ['sorri', 'everybodi', 'appar', 'twitter', 'not', 'send', 'updat'], ['sit', 'work', 'watch', 'clock', 'not', 'move', 'fast', 'enough'], ['aww', 'bbq', 'not', 'fair', 'chocol'], ['sad', 'trauma', 'futur', 'serial', 'killer'], ['thank', 'invit', 'though'], ['sorri', 'tweet', 'bgt', 'poor', 'wonder', 'crazi', 'weird', 'greg', 'not', 'fair', 'silli', 'littl', 'girl', 'never', 'go', 'cope', 'urgh', 'not', 'fair'], ['poor', 'flower', 'fornic', 'nose'], ['ugh', 'hedach', 'may', 'cheap', 'fuck', 'shit', 'still', 'class', 'roll'], ['nah', 'next', 'week', 'honey', 'fault', 'confusin'], ['eye', 'hurt'], ['not', 'hug'], ['miss', 'come', 'say', 'bye', 'leav'], ['wed', 'next', 'thursday', 'ill'], ['day', 'beast'], ['lt', 'bore', 'death'], ['oh', 'read', 'go', 'remak', 'girl', 'want', 'fun', 'stop', 'stop'], ['guy', 'not', 'say', 'hi', 'answer', 'question', 'yesterday', 'nice', 'song'], ['crave', 'munchkin', 'bad'], ['psi', 'take', 'start', 'monday', 'not', 'look', 'forward', 'go', 'back', 'school'], ['hope', 'happen', 'tomorrow', 'ill', 'provid', 'dad', 'get', 'better', 'take'], ['oh', 'dear', 'terribl', 'howev', 'moleskin', 'notebook', 'rule', 'lot'], ['know', 'run', 'though', 'soph', 'get', 'massiv', 'one'], ['wonder', 'anyon', 'seen', 'cell', 'phone', 'not', 'find', 'anywher'], ['stub', 'littl', 'toe', 'morn', 'file', 'cabinet', 'turn', 'black'], ['soo', 'much'], ['arg', 'exil', 'still', 'problem'], ['heard', 'lot', 'program', 'like', 'go', 'larg', 'chain', 'learn', 'center', 'sorri'], ['love', 'haair'], ['pleas'], ['yeah', 'fell', 'asleep', 'sorri', 'way', 'world', 'wake', 'lol', 'work'], ['cold', 'wish', 'go', 'back', 'bed'], ['boss', 'come', 'today'], ['good', 'luck', 'tonight', 'big', 'final', 'show'], ['school', 'guy', 'like', 'talk', 'girl', 'not', 'stand', 'peopl'], ['miss', 'tampa'], ['way', 'work', 'not', 'bother'], ['understand', 'fear', 'feel', 'way', 'mani', 'thing', 'realli', 'need', 'motiv', 'overcom', 'mine', 'guilt'], ['sick', 'home', 'bore', 'want', 'get', 'better', 'alreadi', 'enjoy', 'colleg', 'grad'], ['awesom', 'deserv', 'sure', 'miss', 'crab', 'game'], ['greg', 'noo', 'leav', 'shud', 'gone', 'throo', 'go', 'find', 'restaur', 'not', 'worri', 'lol', 'cri', 'cri', 'cri'], ['got', 'go', 'twitter', 'stupid', 'sister', 'want', 'go', 'facebook', 'oge', 'montreal', 'not', 'bye', 'xoxox', 'lt'], ['wat', 'got', 'luck', 'guy', 'beat', 'la', 'lol', 'would', 'like', 'see', 'best', 'wish', 'denver', 'nugget', 'cav', 'done'], ['pictur', 'last', 'year', 'freshman', 'year', 'miss', 'thos', 'day'], ['horribl', 'experi', 'dentist', 'crown', 'made', 'not', 'fit', 'right', 'not', 'fix', 'give', 'back', 'money'], ['not', 'good', 'day', 'not', 'good', 'week', 'forreal'], ['ok', 'thunder', 'scare'], ['aww', 'miss'], ['place', 'bet', 'sure', 'thing', 'lost', 'bet'], ['quot', 'go', 'miss', 'go', 'want', 'back', 'go', 'wish', 'day', 'not', 'gone', 'fast', 'quot', 'true', 'alreadi', 'miss', 'year'], ['get', 'anoth', 'puppi', 'not', 'cool', 'realli'], ['get', 'anoth', 'puppi', 'not', 'cool', 'realli'], ['woo', 'hoo', 'friday', 'work', 'cleaner', 'tomorrow'], ['submit', 'resum', 'day', 'saw', 'answer', 'back', 'oh', 'well'], ['thank', 'definit', 'throwbi', 'editor', 'review', 'entri', 'decid', 'not', 'publish'], ['rub', 'see', 'morrissey', 'il', 'go', 'cri', 'corner', 'x'], ['need', 'reloc', 'west', 'coast', 'weather', 'killin'], ['high', 'school'], ['nnoo', 'learn', 'got', 'frost', 'warn', 'tonight'], ['never', 'answer'], ['day', 'hour', 'work', 'would', 'realli', 'like', 'job', 'fabul', 'b'], ['soo', 'much', 'stress', 'late'], ['gee', 'week', 'get', 'anymor', 'not', 'go', 'spain'], ['hear', 'sweet', 'dog'], ['man', 'miss', 'waitn', 'day', 'giv', 'tix', 'away', 'amp', 'whn', 'rappn', 'wrk', 'gav', 'tix', 'away', 'sad'], ['love', 'half', 'day', 'not', 'rain', 'soccer', 'practic', 'tonightt'], ['pretti', 'sure', 'miss', 'watch', 'quot', 'yo', 'gabba', 'gabba', 'quot', 'niec'], ['date', 'hockey', 'game', 'confus', 'next', 'week'], ['sharpi', 'run', 'danger', 'low', 'ink'], ['facebook', 'decid', 'annoy', 'abus', 'add', 'lot', 'friend', 'least', 'distract', 'coursework'], ['light', 'depress', 'pay', 'extra', 'bill', 'last', 'year', 'tax', 'must', 'find', 'countri', 'tax', 'lower'], ['guess', 'get', 'load', 'email', 'amp', 'peopl', 'ask', 'stuff', 'al', 'time', 'serious', 'wonder', 'ever', 'read', 'comment', 'x'], ['home', 'bore', 'plzz', 'someon', 'txt', 'someth', 'weekend'], ['hve', 'fat', 'kink', 'neck', 'mayb', 'someon', 'handsom', 'massag', 'later', 'see'], ['play', 'club', 'impact', 'tomorrow', 'final', 'got', 'shirt', 'woopiti', 'doo', 'want', 'slurpe', 'soo', 'bad', 'right'], ['not', 'go', 'work', 'tomorrow', 'good', 'time', 'revis', 'though'], ['never', 'anyth', 'good', 'school', 'rabbit', 'life', 'cycl', 'not', 'know', 'tune', 'giutar', 'stuf'], ['bad', 'sort', 'want', 'miss', 'know', 'miss'], ['jealous', 'wish', 'could', 'join', 'cold', 'la', 'right'], ['finger', 'hurt'], ['miss', 'daddi', 'much'], ['wow', 'offici', 'lost', 'faith', 'britain', 'look', 'like', 'wish', 'not', 'met', 'sad'], ['cri', 'way', 'final', 'episod', 'er', 'er', 'documentari'], ['got', 'realli', 'bad', 'arthritus', 'left', 'hand', 'not', 'use', 'thumb'], ['hmm', 'essens', 'award', 'would', 'fun', 'also', 'prici'], ['tire', 'alarm', 'set', 'bed', 'soon', 'bloodi', 'iphon', 'backup', 'sync', 'finish'], ['sick', 'not', 'seem', 'like', 'get', 'better'], ['go', 'bed', 'dnt', 'feel', 'well', 'alway'], ['miss', 'min', 'haha', 'went', 'sleep', 'past', 'major', 'anxieti', 'attack', 'around', 'ugh', 'boo'], ['bicycl', 'suck', 'not', 'ride'], ['whew', 'vacuum', 'good', 'time', 'vacuum'], ['wow', 'teacher', 'call', 'skunk', 'cuz', 'hair'], ['plan', 'ruin'], ['hope', 'could', 'drop', 'vim', 'macvim', 'could', 'share'], ['got', 'work', 'today', 'three', 'day', 'left', 'heart', 'break'], ['fuck', 'kind', 'bug', 'hous', 'not', 'know'], ['great', 'not', 'eve', 'locat', 'phone', 'goe', 'drain'], ['gettin', 'cardio', 'right', 'walkin', 'train', 'station', 'aww', 'miss', 'gym'], ['hate', 'life', 'mo', 'suck'], ['came', 'packag', 'not'], ['mani', 'cool', 'thing', 'american', 'not', 'watch'], ['choir', 'assembl', 'bad', 'fuck', 'hot', 'yay'], ['lone'], ['husband', 'went', 'bed', 'miss', 'tuesday'], ['dude', 'wtf', 'text', 'morn', 'take', 'care', 'uncool', 'confirm', 'hate'], ['decler', 'yet', 'crazi', 'ass', 'korean', 'not', 'play', 'nice', 'anymor', 'think', 'next', 'think', 'war'], ['dad', 'ask', 'stick', 'tongu', 'iron', 'told', 'not', 'burn', 'finger', 'burnt', 'finger'], ['would', 'much', 'rather', 'not', 'punch', 'might', 'hurt'], ['oh', 'godd', 'cough', 'littl', 'bit', 'taco'], ['bgt', 'amaz', 'tonight', 'three', 'amaz', 'act', 'got', 'sent', 'home'], ['twitter', 'one', 'talk', 'know', 'celeb', 'nt', 'nice', 'spoken'], ['lol', 'dork', 'hmm', 'book', 'pretti', 'good', 'mayb', 'check', 'suck', 'not', 'much', 'better'], ['hahaha', 'agre', 'glad', 'aiden', 'tonight', 'show', 'greg', 'got', 'place'], ['noo', 'well', 'prob', 'june', 'not', 'help'], ['comput', 'pack', 'away', 'goe', 'life', 'right', 'cardboard', 'box'], ['got', 'headach'], ['home', 'feel', 'tire', 'want', 'take', 'nap', 'not'], ['oop', 'last', 'link', 'first', 'sri', 'mistak'], ['flip', 'flop', 'downtown', 'seattl'], ['ahaha', 'know', 'not', 'anyth', 'weekend'], ['lil', 'sad', 'not', 'abl', 'toeat', 'hot', 'dog', 'big', 'kahuna', 'cooki', 'sandwich', 'ranger', 'game', 'tonight'], ['greg', 'cri', 'l', 'could', 'got', 'still', 'love', 'greg', 'bgt'], ['not', 'count'], ['final', 'got', 'teach', 'load', 'confus', 'clear', 'teach', 'third', 'year', 'section', 'catch'], ['please', 'thing', 'want', 'birthdayi', 'pleas', 'say', 'happi', 'birthday'], ['not', 'west', 'sinc', 'think', 'pick', 'bad', 'wknd', 'overcast', 'though'], ['boredd', 'day', 'gone', 'quick', 'not', 'like'], ['even', 'though', 'saturday', 'morn', 'feel', 'like', 'weekend', 'alreadi', 'way', 'awak', 'bad', 'dream'], ['aww', 'ok', 'stuck', 'coach', 'come', 'back', 'nan', 'today', 'love', 'sunshin', 'xx'], ['headach'], ['ya', 'could', 'hit', 'aim', 'mad', 'bore', 'nuttin'], ['need', 'play', 'infam', 'free', 'blockbust', 'rental', 'coupon', 'need', 'one', 'miss', 'coke', 'reward'], ['justwatch', 'depress', 'episod', 'jon', 'kate', 'ever', 'actual', 'almost', 'cri'], ['wish', 'laptop', 'charger', 'could', 'tweet', 'faster'], ['choos', 'one', 'love', 'song', 'lv', 'amp', 'tt', 'bt', 'like', 'read'], ['veryy', 'upset', 'not', 'go', 'hacienda', 'tonight', 'stupid', 'nugget', 'game'], ['feel', 'like', 'ish', 'want', 'go', 'home', 'go', 'mimi'], ['got', 'super', 'cold'], ['go', 'go', 'home', 'tri', 'take', 'nap', 'emot', 'exhaust', 'lt'], ['stomach', 'ach', 'total', 'suck'], ['shame', 'realli'], ['got', 'cours', 'work', 'hate', 'hard', 'one'], ['stupid', 'not', 'get', 'not', 'find', 'think', 'ebay', 'scare'], ['not', 'babysit', 'tonight', 'miss', 'kid'], ['luci', 'hate', 'gweg'], ['new', 'pictur', 'not', 'upload'], ['dnt', 'wireless', 'ne', 'hater', 'ugh', 'save', 'copi', 'watch'], ['work', 'still', 'feel', 'pain', 'friend', 'wish', 'magic', 'wand', 'eras', 'mad'], ['omg', 'mom', 'call', 'late', 'hes', 'gone'], ['batman', 'arkham', 'asylum', 'not', 'system', 'play', 'sad'], ['home', 'ill', 'work', 'man', 'flu', 'hell'], ['know', 'r', 'lol', 'hope', 'said'], ['water', 'plant', 'head', 'farm', 'not', 'popcorn', 'goat', 'katnip', 'look', 'good', 'saddl'], ['slight', 'burnt', 'challah', 'proof', 'eatin', 'though'], ['lost', 'key', 'mall', 'took', 'min', 'find'], ['load', 'beard', 'papa', 'disappear', 'uk'], ['someon', 'came', 'sleep', 'nation', 'passtim', 'turn', 'human'], ['would', 'someon', 'even', 'someth', 'like', 'got', 'pretti', 'damn', 'desper', 'attent', 'lol', 'poor', 'keanu'], ['whuurr', 'gland', 'realli', 'swollen', 'guess', 'weekend', 'blow'], ['well', 'bell', 'hook', 'teach', 'transgress', 'sometim', 'miss', 'teach', 'amp', 'mess', 'bad', 'system'], ['boo', 'got', 'rain', 'beach'], ['phone', 'still', 'broken', 'come', 'whenev'], ['suck', 'matter', 'go', 'freakin', 'late', 'work'], ['hope', 'ok'], ['grr', 'internet', 'run', 'next', 'wed', 'least', 'def', 'answer'], ['mose', 'girlfriend', 'broke'], ['yea', 'today', 'love', 'shudv', 'told', 'anyth', 'excit', 'happen', 'yet', 'saw', 'last', 'night'], ['feel', 'aw', 'new', 'medic', 'make', 'nauseous'], ['great', 'first', 'impress', 'littl', 'downsid', 'access', 'hatch', 'upgrad', 'ram'], ['ummnn', 'ummnn', 'good', 'thank', 'let', 'know', 'earlier', 'ate', 'alreadi'], ['britain', 'got', 'good', 'weather', 'wish'], ['nurburgr', 'good'], ['saw', 'favorit', 'surpris', 'way', 'sad'], ['sad', 'gmail', 'chat', 'die', 'not', 'help'], ['undeni', 'truth', 'suck', 'talk', 'peopl', 'good', 'make', 'connect', 'come', 'either', 'strang', 'distant'], ['holli', 'spelt', 'not', 'made', 'cri', 'bgt', 'tonight', 'gxx'], ['iigghhtt', 'fur', 'geet', 'idc', 'not', 'know', 'eh', 'blah', 'ugh', 'blah', 'not', 'know', 'um', 'yah', 'immboredd', 'ugh', 'ill', 'fuckitt'], ['thundershow', 'plus', 'basebal', 'equal', 'aww'], ['give', 'birth', 'screamer', 'hate', 'scream', 'children', 'guess', 'hate', 'scream', 'children', 'besid'], ['sunburn', 'hurt'], ['yea', 'head', 'home', 'chang', 'head', 'pelham', 'sad', 'thought', 'supos', 'head', 'nkotb', 'concert'], ['love', 'summer', 'odd', 'not', 'want', 'school', 'year', 'end'], ['think', 'up', 'web', 'site', 'hate', 'still', 'brew', 'suppli', 'packag', 'held', 'hostag', 'work', 'slow', 'up', 'deliveri'], ['saddest', 'thing', 'seen'], ['oh', 'noo', 'not', 'get'], ['dude', 'hurt'], ['oh', 'good', 'top', 'haunt', 'one', 'bakeri', 'insid', 'ralphi', 'bodi', 'amp', 'forget'], ['not', 'good', 'box', 'worth', 'way'], ['realli', 'hate', 'mobil', 'hard', 'tweet', 'sidekick'], ['doh', 'rush', 'get', 'puma', 'open', 'got', 'pull', 'sad'], ['past', 'ok', 'sinc', 'got', 'appart', 'difficult', 'save', 'money'], ['yea', 'got', 'outta', 'one', 'want', 'back', 'though', 'feel', 'cool', 'dude', 'lil'], ['stuck', 'finger', 'throat', 'bunch', 'bump', 'tongu', 'amp', 'throat'], ['today', 'sad', 'day', 'tucson', 'shall', 'miss', 'sour', 'cream', 'appl', 'pie', 'fondu', 'separ', 'seat', 'group', 'dog'], ['frustrat', 'stupid', 'iphon', 'need', 'blackberri'], ['jealous', 'let', 'slip', 'babi', 'not', 'sure', 'could', 'even', 'half', 'right'], ['not', 'sleep', 'not', 'deserv', 'n', 'know'], ['realli', 'hurt'], ['realli', 'good', 'definit', 'not', 'mani', 'peopl', 'get', 'burn', 'aliv'], ['hate', 'watch', 'news', 'aw', 'thing', 'happen'], ['not', 'give'], ['wonder', 'let', 'know', 'think', 'not', 'light', 'read'], ['omg', 'nightmar'], ['feel', 'lost', 'keep', 'run', 'head', 'stare', 'face', 'haha', 'basic', 'headach', 'amp', 'eye', 'hurt'], ['wonder', 'cld', 'make', 'thing', 'wors', 'alreadi', 'answer'], ['good', 'luck', 'oh', 'play', 'inth', 'mix', 'knockout', 'week', 'play', 'pros', 'old', 'son', 'play', 'amp', 'top', 'woman'], ['facebook', 'bitch'], ['sad', 'not', 'go', 'friend', 'hous'], ['jealous', 'want', 'see', 'film'], ['yep', 'lost', 'bet', 'chris'], ['mess', 'makin', 'right', 'best', 'holi', 'day', 'wish'], ['found', 'friend', 'dad', 'pass', 'away', 'yesterday'], ['even', 'bother', 'anymor', 'everyon', 'makin', 'feel', 'like', 'wast', 'space'], ['curs', 'ab', 'wardrob', 'handl', 'one', 'drew', 'blood'], ['not', 'sure', 'tell', 'happen', 'watermelon', 'leav', 'car', 'tx', 'week', 'not', 'good'], ['got', 'call', 'realtor', 'say', 'anoth', 'show', 'sunday', 'offer', 'yet', 'least', 'lot', 'interest'], ['oh', 'hope', 'find', 'kitten'], ['like'], ['sad', 'realli', 'realli', 'sad'], ['geo', 'isu', 'go', 'swear', 'wors', 'day', 'ever'], ['realli', 'not', 'take'], ['damnit', 'day', 'northpark', 'use', 'live', 'near', 'someon', 'steal', 'mike', 'mee'], ['amp', 'not', 'go', 'lie', 'degre', 'thank', 'leavin', 'sweater', 'molli', 'brr'], ['hate', 'ms', 'make', 'feel', 'not', 'control', 'leg', 'amp', 'much', 'pain', 'drive', 'crazi', 'anyon', 'els', 'get', 'moment'], ['scari', 'cape', 'guy'], ['yesterday', 'not', 'much', 'lazi', 'today', 'not', 'feel', 'good'], ['still', 'direct', 'messag', 'hell', 'complain', 'c', 'ya', 'not', 'answer', 'ask'], ['present', 'avail', 'onlin', 'meet', 'poster', 'discuss', 'go', 'fast', 'not', 'write', 'fast', 'enough'], ['emo', 'moment', 'said', 'good', 'bye', 'best', 'friend', 'ever', 'meet', 'sure'], ['omgg', 'heard', 'someon', 'go', 'die', 'new', 'season', 'secret', 'life', 'american', 'teenag', 'noo'], ['think', 'haircut', 'not', 'bad', 'look', 'yesterday', 'still', 'bad', 'though'], ['lmao', 'back', 'queen'], ['surgeri', 'effin', 'hurt'], ['expect', 'sun', 'come', 'today', 'guess', 'not', 'happen'], ['sick', 'not', 'id', 'show', 'ya'], ['boyfriend', 'broke', 'wrist', 'might', 'need', 'surgeri', 'nervous'], ['probabl', 'suck'], ['done', 'cold', 'realli', 'want', 'go', 'tonight', 'realli', 'not', 'feel', 'like'], ['wow', 'scari', 'statist'], ['hate', 'program', 'freez', 'instal'], ['omg', 'littl', 'kid', 'cancer', 'saddest', 'thing', 'ever'], ['linda', 'mean', 'last', 'post', 'not', 'sound', 'good'], ['realli', 'miss', 'place', 'grandpar', 'live', 'calm', 'countri', 'come'], ['today', 'quot', 'sonni', 'chanc', 'quot', 'came', 'brazil', 'love', 'amaz', 'lt', 'pleas', 'repli'], ['miss', 'way', 'much', 'cnt', 'stop', 'think', 'nite', 'nite', 'folkkz'], ['oh', 'insomnia', 'hate', 'bore', 'stare', 'ceil', 'cano', 'go', 'sleepnow', 'pleas'], ['ochh', 'got', 'blister', 'foot', 'sun', 'today', 'soo', 'sore', 'supos', 'yas', 'dnt', 'care', 'hah', 'thaught', 'tweet', 'anyway'], ['littl', 'sad', 'school', 'end', 'today', 'move', 'go', 'miss', 'new', 'friend', 'year', 'got', 'hair', 'cut'], ['bug', 'attack', 'laptop'], ['holi', 'cow', 'archi', 'andrew', 'final', 'marri', 'veronica', 'not', 'thought', 'eventu', 'happen', 'grade', 'bad'], ['rec', 'not', 'pain', 'need', 'not', 'lose', 'lt', 'heart', 'breakingg'], ['sorri', 'hear'], ['ugli', 'girl', 'alway', 'insist', 'make', 'ugli', 'face', 'ugh'], ['omg', 'hurt', 'much'], ['hungri'], ['got', 'say', 'feel', 'bad', 'everyon', 'nkorea', 'starv', 'crazi', 'charg', 'endang', 'daili'], ['wish', 'could', 'go', 'movi', 'want', 'alon'], ['sigh', 'candi'], ['brain', 'hurt'], ['miss', 'britain', 'got', 'talent', 'gut'], ['ooh', 'spoil', 'teenag', 'fantasi'], ['thunder', 'scare', 'hell', 'hate', 'thunder', 'better', 'not', 'loos', 'electr', 'fb'], ['awe', 'feel', 'left'], ['sad', 'today'], ['expens'], ['sunni', 'bore', 'sad', 'call', 'text'], ['saw', 'boo', 'went', 'back', 'work', 'time', 'hair', 'go', 'rain', 'wtf'], ['kind', 'sad', 'alon', 'time', 'miss', 'brother', 'friend', 'suck', 'mean', 'one', 'even', 'call', 'week'], ['twitter', 'foke', 'today', 'arg', 'hour', 'work', 'till', 'weekend', 'woo'], ['awesom', 'man', 'damn', 'sent', 'affili', 'link', 'lol', 'oh', 'well'], ['ok', 'hurt', 'abit', 'thought', 'good', 'job', 'rude', 'peopl', 'could', 'understand', 'x'], ['jealous'], ['wish', 'sun', 'lolli', 'get', 'addict', 'flavour'], ['day', 'motorway', 'train', 'noott', 'fun'], ['one', 'becom', 'bigger', 'pain'], ['miss', 'come', 'say', 'bye', 'leav'], ['lunch', 'bittercreek', 'hopnoxi', 'sweetgrass', 'ipa', 'though', 'still', 'right', 'world'], ['aaww', 'worri', 'fresh', 'start', 'work', 'grow'], ['not', 'look', 'forward', 'upcom', 'better', 'half', 'gone', 'time', 'truli', 'go', 'suck', 'big', 'time'], ['christian', 'lacroix', 'one', 'client', 'gone', 'bust'], ['not', 'realiz', 'anim', 'kingdom', 'close', 'earli', 'today', 'stick', 'exit', 'traffic'], ['srsli', 'bgt', 'joke', 'maan', 'lame', 'ughh', 'work', 'tomorah', 'get', 'earli'], ['thank', 'found', 'link', 'howev', 'think', 'need', 'custom', 'download'], ['ugh', 'wait', 'intermin'], ['oh', 'god', 'cheesi', 'disco', 'music', 'start', 'everyon', 'get', 'tabl', 'need', 'wine'], ['jealous', 'not', 'asylum', 'right'], ['start', 'shift', 'go', 'miss', 'like', 'hour', 'laker', 'game'], ['want', 'chines', 'food', 'realli', 'baad'], ['today', 'lame', 'not', 'orlando', 'soo', 'look', 'forward', 'next', 'friday'], ['supposedd', 'hang', 'al', 'mommi', 'not', 'let', 'doo', 'blah', 'hahaha'], ['annoy', 'ppt', 'not', 'save', 'chang', 'explicit', 'save'], ['aw', 'poor', 'not', 'let', 'get', 'ignor', 'n', 'keep', 'head', 'held', 'high', 'iz', 'immatur', 'lil', 'girl', 'lol'], ['lucki', 'mom', 'paid', 'everyth', 'take', 'shop'], ['stupid', 'folkeston', 'cinema', 'show', 'star', 'trek', 'time', 'damn'], ['start', 'save', 'tumblr', 'draft', 'happen', 'week', 'sad'], ['sabido', 'nada', 'de', 'ti', 'make', 'bit', 'sad', 'must', 'say'], ['period', 'exam', 'day', 'studi', 'night', 'studi', 'sleep', 'funni', 'time'], ['welcom', 'glasgow', 'felix', 'sorri', 'not', 'tonight'], ['look', 'sketch', 'final', 'catwalk', 'outfit', 'realli', 'realli', 'want', 'long', 'pink', 'hair', 'back', 'also', 'want', 'dye', 'model', 'hair', 'pink', 'not', 'allow'], ['britain', 'got', 'talent', 'rather', 'disappoint', 'year'], ['miss', 'bham'], ['op', 'sorri', 'queen', 'mom'], ['realli', 'mad', 'world', 'today', 'today', 'sucki', 'day'], ['sister', 'stupid', 'parti', 'amp', 'amp', 'want', 'hang', 'friend', 'hilli', 'not', 'txt', 'back'], ['want', 'pineappl', 'miss', 'babi'], ['spoke', 'soon', 'amp', 'weekend', 'may', 'delay', 'like', 'min', 'aah', 'gottaa', 'get', 'outt', 'lose'], ['colleagu', 'quot', 'help', 'quot', 'creat', 'unit', 'site', 'iweb', 'not', 'help', 'trash', 'code', 'css', 'file', 'page', 'site', 'optim'], ['trailer', 'new', 'moon', 'second', 'still', 'watch', 'though', 'twice', 'lol', 'figur', 'miss', 'someth', 'still', 'sick'], ['complet', 'exhaust', 'thank', 'yesterday', 'go', 'home', 'yet'], ['ah', 'tummi', 'hurt', 'damn', 'starbuck'], ['sunburn', 'itch', 'ouch'], ['oh', 'storm', 'got', 'get', 'comput'], ['tire'], ['like', 'littl', 'adventur', 'kind', 'worri', 'not', 'take', 'bus', 'cos', 'oyster', 'broken'], ['tell', 'said', 'happi', 'birthday', 'tomorrow', 'talk', 'raymond'], ['gear', 'troubl', 'day', 'long'], ['tummi', 'monster', 'hate'], ['not', 'bannish', 'work', 'till'], ['wow', 'grandma', 'pass', 'sick', 'even', 'think', 'know', 'better', 'place'], ['nah', 'got', 'bare', 'work', 'week', 'left', 'bare', 'behind'], ['agre', 'though', 'eclips', 'app', 'hinder', 'collect', 'heap', 'dump', 'catch', 'oom', 'muck', 'jconsol'], ['mobil', 'phone', 'anoth', 'fail', 'american', 'servic', 'came', 'close', 'crash', 'gate'], ['mother', 'bad', 'day'], ['think', 'work', 'eye', 'droop', 'weird', 'drug', 'not', 'like', 'not', 'wait', 'tomorrow', 'though'], ['wish', 'sister', 'live', 'near'], ['need', 'new', 'job', 'either', 'closer', 'home', 'worth', 'drive'], ['wonder', 'life', 'alzheim', 'care', 'beyond', 'despair', 'poverti', 'suck', 'commerc', 'futil', 'descript', 'mommi'], ['bad', 'not', 'sort', 'lot', 'pain'], ['happi', 'hour', 'today'], ['hate', 'not', 'work', 'hot'], ['zach', 'get', 'extens', 'profil', 'weekend', 'ny', 'time', 'magazin', 'chanc', 'us', 'fall', 'love', 'get', 'fewer', 'fewer'], ['work', 'evil', 'whore', 'not', 'let', 'check', 'text', 'messag'], ['forgot', 'yardsal', 'event', 'ooh', 'piti'], ['fair', 'want', 'sticker', 'move', 'away', 'london'], ['wish', 'could', 'go', 'hear', 'mint', 'condit', 'tommorow', 'night'], ['watch', 'ripley', 'believ', 'not', 'choic'], ['got', 'noth', 'witti', 'tweet'], ['earth', 'happen', 'wentworth', 'page', 'devast', 'sure', 'fan'], ['greg', 'pritchard', 'rob', 'place', 'final', 'bgt', 'cri', 'babi', 'got', 'instead'], ['humid', 'not', 'friend', 'ask', 'hair'], ['ok', 'thanx', 'much', 'send', 'answer', 'privat', 'mail', 'like', 'would', 'soo', 'cool', 'wish', 'birmingham'], ['feel', 'like', 'poop', 'hate', 'sick'], ['not', 'feelinq', 'huqe', 'ass', 'pimpl', 'smack', 'middl', 'doom', 'not', 'riqht', 'man'], ['lost', 'internet', 'signal', 'life', 'go'], ['iusedtobescaredof', 'girl', 'year', 'school'], ['watch', 'marley', 'amp', 'cri', 'hard'], ['miss', 'answer', 'nth', 'time', 'make', 'sad', 'whenev', 'time', 'alway'], ['ugh', 'fuck', 'today', 'not', 'look', 'like', 'go', 'work', 'sorri'], ['crave', 'someth', 'salti', 'mouth', 'tire', 'pretzel', 'though'], ['aww', 'anyon', 'see', 'holli', 'steel', 'bgt', 'tonight', 'wharra', 'shame'], ['besti'], ['way', 'sleep', 'next', 'day', 'way', 'wake', 'return', 'amp', 'would', 'not', 'miss', 'much'], ['nah', 'understand', 'not', 'cancel', 'want', 'come'], ['ap', 'north', 'korea', 'could', 'opt', 'devast', 'land', 'assault', 'via', 'scari', 'talk', 'say', 'least', 'mm'], ['hey', 'kelli', 'feel', 'horribl'], ['sick', 'tire', 'rain'], ['eat', 'manderin', 'gone'], ['ahh', 'not', 'get', 'miley', 'notic'], ['friday', 'night', 'go', 'bed', 'pathet'], ['sucki', 'miss'], ['fri', 'arizona', 'thing', 'ate', 'today', 'feed', 'mee'], ['cap', 'thing', 'lower', 'part', 'back', 'realli', 'hurt'], ['come', 'sowwi'], ['one', 'worst', 'day', 'life'], ['know', 'dog', 'get', 'old', 'sit', 'hilli', 'pleas', 'not', 'grow'], ['lt'], ['brown', 'snake', 'bit', 'duck', 'name', 'elvi', 'anyway', 'ahaha', 'elvi', 'soo', 'cute', 'nicho'], ['nooth', 'tonight'], ['ohh', 'boy', 'babi', 'tooth', 'came'], ['much', 'pain', 'realli', 'not', 'feel', 'good', 'could', 'not', 'eat', 'dinner'], ['yeah', 'accept', 'ubc', 'offer', 'last', 'night', 'not', 'know', 'still', 'make', 'slack', 'lot', 'late'], ['broken', 'not', 'c'], ['cri', 'walk', 'rememb', 'usual'], ['way', 'work', 'hungri'], ['miss', 'festiv', 'even', 'head', 'hill', 'not', 'internet', 'bb', 'servic'], ['disappoint'], ['not', 'think', 'want', 'come', 'back', 'guy', 'read', 'dms'], ['not', 'nice'], ['went', 'see', 'dentist', 'not', 'eat', 'starv', 'realli', 'suck', 'ist', 'pain'], ['crossfit', 'run', 'right', 'leg'], ['biig', 'headach'], ['never', 'good', 'platform', 'game'], ['start', 'fear', 'weekend', 'sinc', 'join', 'german', 'class'], ['oh', 'hope', 'get', 'soon', 'make', 'feel', 'better', 'hug', 'coast'], ['went', 'dentist', 'mouth', 'hurt', 'not', 'eat'], ['work', 'hard', 'drag', 'not', 'time', 'tweet'], ['eye', 'hurt'], ['ahh', 'sore', 'throat', 'tire', 'want', 'go', 'back', 'bed', 'work'], ['birthday', 'tomorrow', 'jack', 'shit', 'weekend'], ['miss', 'joke', 'make', 'fun', 'peopl', 'throw', 'idea', 'song', 'movi', 'show', 'eachoth', 'never', 'go', 'away'], ['sorri', 'today', 'noth', 'fuck', 'heartbreak'], ['haha', 'thank', 'keep', 'rain', 'might', 'not', 'go'], ['darn', 'cold', 'keep', 'get', 'wors', 'bought', 'hayfev', 'pill', 'tri', 'mayb', 'along'], ['afraid', 'daughter', 'go', 'write', 'memoir', 'ungod', 'mix', 'mile', 'amp', 'betti', 'davi', 'eve'], ['one', 'call', 'anymor'], ['credit', 'unfortun'], ['wish', 'could', 'meet', 'think', 'happen', 'someday'], ['best', 'friend', 'leav', 'go', 'back', 'school', 'sad'], ['late', 'sick', 'kid', 'home', 'hope', 'feel', 'better', 'later', 'tonit'], ['cough', 'drop', 'tast'], ['not', 'like', 'random', 'gloomi', 'weather'], ['never', 'write', 'back', 'babe', 'feel', 'hurt'], ['oh', 'man', 'better', 'someth', 'fix', 'ugh', 'stupid', 'verizon'], ['boss', 'call', 'anerex'], ['go', 'cloth', 'shop', 'tomorrow', 'hate', 'serious', 'quot', 'cloth', 'fall', 'apart', 'quot', 'situat'], ['plus', 'hurt', 'see', 'love', 'fall', 'someon', 'els', 'not', 'even', 'kid', 'well', 'gut', 'xx', 'xx'], ['wish', 'peopl', 'would', 'not', 'stubborn', 'sometim'], ['feel', 'rather', 'lone', 'lone', 'broke'], ['look', 'like', 'rain', 'oh', 'well', 'give', 'chanc', 'work', 'new', 'crochet', 'pattern', 'work'], ['get', 'annoy', 'cos', 'weekend', 'go', 'hot', 'bloodi', 'work'], ['panason'], ['omg', 'sorri', 'sorri', 'never', 'know', 'say'], ['back', 'gym', 'expert', 'anyth', 'pretti', 'sure', 'not', 'go', 'abl', 'move', 'tomorrow', 'mayb', 'even', 'hour'], ['last', 'day', 'dma', 'million', 'sad', 'face'], ['drove', 'fisher', 'feel', 'sad'], ['go', 'buffalo', 'wild', 'wing', 'meet', 'best', 'friend', 'not', 'seen', 'forev', 'bad', 'not', 'eat', 'food'], ['blaze', 'head', 'hurt'], ['guy', 'serious', 'question', 'song', 'like', 'cds', 'honest', 'know', 'not', 'repli', 'lt', 'maria'], ['oh', 'not', 'im', 'also', 'friend', 'realli', 'suck', 'alway', 'not', 'around'], ['thght', 'vote', 'bt', 'dnt', 'think', 'workd', 'link', 'vote', 'nobodi', 'deserv', 'talent', 'lt'], ['r', 'lost', 'trooper', 'want', 'know'], ['not', 'feel', 'good'], ['agre', 'facehunt', 'embarrass', 'represent', 'compar', 'swede', 'look', 'like', 'born', 'stylish'], ['man', 'look', 'pack', 'book', 'look', 'past', 'live', 'feel', 'kind', 'sentiment'], ['miser', 'hot', 'hous', 'broken'], ['allerg'], ['breath', 'weezi', 'go', 'knott', 'sick', 'week'], ['feelin', 'sad', 'depress', 'lone', 'unhappi', 'rwhat', 'wrong'], ['earlier', 'not', 'home', 'ok', 'ipod'], ['feel', 'like', 'crap', 'today', 'got', 'speed', 'ticket', 'sinc'], ['could', 'empir', 'dirt', 'amp', 'e', 'dad', 'freez', 'fulli', 'shiver', 'els', 'warm', 'fone', 'allow', 'ffs'], ['back', 'bad'], ['hello', 'thank', 'followfriday', 'peopl', 'alway', 'forget', 'sorri'], ['realli', 'realli', 'not', 'bore', 'bad', 'not', 'news', 'brb', 'x'], ['oh', 'pleas', 'want', 'complet', 'unfinish', 'tweet', 'tweet', 'crop', 'tweet', 'look', 'dorki'], ['headach', 'also', 'deal', 'lice', 'outbreak', 'love', 'hair', 'affect'], ['not', 'sleep', 'accept', 'appolog'], ['hope', 'day', 'get', 'better', 'soon'], ['sorri', 'forgot'], ['not', 'love', 'anymor'], ['sorri', 'hear', 'dude'], ['cool', 'wish', 'could', 'av', 'gone', 'da', 'live', 'could', 'not'], ['miss', 'birthday'], ['never', 'usa', 'would', 'great', 'next', 'year', 'whatev', 'go', 'blast'], ['ad', 'collect', 'much', 'punk', 'bitch', 'ask', 'back'], ['stupid', 'peopl', 'not', 'phone', 'tummi', 'hert'], ['iight', 'go', 'miss', 'tonight'], ['offici', 'hit', 'wall', 'total', 'nonfunctionalproduct', 'work'], ['feel', 'like', 'go', 'fall', 'asleep', 'time', 'not'], ['problem', 'must', 'list', 'write', 'usual', 'forget', 'place', 'thing', 'list', 'find', 'list'], ['correct'], ['crap', 'tie', 'run', 'let', 'us', 'hold', 'raider'], ['ugh', 'cramp', 'hot'], ['ugh', 'trouser', 'never', 'found', 'way', 'combat', 'weird'], ['littl', 'boy', 'drown', 'yesterday', 'live', 'subdivis', 'went', 'nicol', 'school', 'sad'], ['yep', 'probabl', 'wish', 'let', 'know', 'interest', 'extra', 'corpor', 'chalet', 'tix', 'let', 'go'], ['awh', 'sorri', 'probabl', 'go', 'thing', 'haha'], ['not', 'work', 'one', 'pain', 'ass', 'spammer'], ['see', 'korean', 'buis', 'fail'], ['hey', 'sorri', 'headahc'], ['heard', 'singl', 'wait', 'month', 'disappoint'], ['aww', 'work', 'ok', 'appl', 'laptop', 'might', 'littl', 'differ'], ['mad', 'not', 'go', 'like', 'hour', 'away'], ['omg', 'dirti', 'letter', 'danni', 'everyon', 'absolut', 'none', 'busi', 'still', 'feel', 'left', 'lol'], ['felt', 'nice', 'stay', 'outsid', 'long', 'definit', 'get', 'burn', 'hurrican', 'season', 'though'], ['man', 'need', 'find', 'siitter', 'val', 'still', 'not', 'fuckin', 'wit', 'lol'], ['sorri', 'hear', 'not', 'alreadi', 'much', 'plan', 'weekend', 'would', 'consid', 'go'], ['noo', 'go', 'rain', 'birthday'], ['maan', 'way', 'nice', 'outsid', 'work'], ['sad', 'go', 'miss', 'dream', 'team', 'parti', 'not', 'rsvp', 'time'], ['tire', 'peopl', 'shit', 'talk'], ['ugh', 'peopl', 'fanci', 'trip', 'itali', 'slave', 'away', 'comput'], ['kno', 'sad', 'leavin', 'horribl', 'suppos', 'b', 'happi', 'summer', 'not', 'miss'], ['sorri', 'mr', 'grey', 'menlo'], ['stop', 'talk', 'go', 'mean'], ['yeah', 'bit', 'headach', 'ick'], ['ugh', 'hate', 'bad', 'grade', 'time', 'ever', 'fail', 'class', 'b', 'b', 'w', 'not', 'like'], ['still', 'not', 'work'], ['heck', 'go'], ['not', 'even', 'pay', 'though'], ['haha', 'wish', 'could', 'look', 'like', 'littl', 'boy'], ['hmm', 'whole', 'bodi', 'feel', 'sore'], ['lie'], ['sometim', 'fact', 'health', 'lack', 'better', 'word', 'suck', 'realli', 'scare'], ['day', 'start', 'woop', 'work', 'less', 'hour'], ['pain', 'big', 'toe', 'got', 'stomp', 'hokey', 'cokeu', 'throb', 'anyon', 'suggest', 'heal'], ['love', 'alway', 'respect', 'support', 'miss', 'go', 'amaz', 'thing', 'lt'], ['want', 'go', 'home', 'not', 'custom', 'not', 'leav', 'boss', 'not', 'let', 'leav', 'either'], ['sorri', 'ali'], ['not', 'good', 'tonight', 'know', 'dcd', 'though', 'not', 'say', 'happen'], ['appear', 'go', 'home', 'not', 'good', 'thing'], ['shipwreck', 'weekend', 'licens', 'not', 'suspend', 'got', 'cancel', 'not', 'take', 'risk', 'drive', 'one', 'live', 'near'], ['go', 'sound', 'realli', 'sad', 'amp', 'depress', 'realli', 'realli', 'miss', 'uncl', 'sam'], ['not', 'go', 'graduat', 'not', 'feel', 'well', 'instead', 'job', 'hunt', 'onlin'], ['sad', 'miss', 'friend'], ['farewel', 'dinner', 'kimmi', 'last', 'time', 'see'], ['ohh', 'french', 'tip', 'fave', 'nail', 'not', 'long', 'enough', 'yet', 'though', 'ill', 'ask', 'manicurist'], ['kewl', 'got', 'iphon', 'got', 'hope', 'last', 'weekend', 'got', 'shuffl', 'might', 'bring', 'anyway', 'see', 'ya'], ['await', 'repli', 'two', 'project', 'one', 'cancel'], ['oh', 'poor', 'thing', 'must', 'book', 'ticket', 'realis', 'pat', 'kenni', 'last', 'night', 'gut'], ['omgosh', 'degre', 'sweat', 'miser', 'go', 'visit', 'atx'], ['drove', 'past', 'hotel', 'wish', 'ere', 'think', 'decemb', 'trip', 'real', 'white', 'xmas'], ['bad', 'newss'], ['srsli', 'nobodi', 'evr', 'repli'], ['sad', 'piggi', 'die'], ['true', 'not', 'fantast', 'sequel', 'wish', 'introduc', 'franklin', 'richard', 'charact'], ['okay', 'twitter', 'laptop', 'complet', 'broke', 'comput', 'act', 'not', 'reckon'], ['feel', 'kind', 'not', 'well', 'right'], ['god', 'damn', 'twitter', 'stop', 'eat', 'undelet', 'dms'], ['not', 'one', 'week', 'realli', 'mean', 'joke', 'play'], ['hi', 'hope', 'ray', 'pleas', 'give', 'love', 'hope', 'return', 'soon', 'hope', 'not', 'bad'], ['ugh', 'unattract', 'might', 'well', 'drink', 'regular', 'glass', 'realli', 'not', 'like'], ['son', 'not', 'one', 'realli', 'nice', 'know', 'realli', 'good', 'three', 'dh', 'late', 'today'], ['guy', 'much', 'help', 'follow', 'thing', 'probabl', 'not', 'go', 'win', 'not', 'follow', 'yet'], ['nope', 'not', 'think', 'thnx', 'ask', 'lol', 'fine'], ['work', 'soon', 'lame', 'go', 'miss', 'go', 'laker', 'hope', 'win'], ['comput', 'piss', 'gig', 'ram', 'dual', 'core', 'vista', 'want', 'win'], ['pain', 'big', 'toe', 'got', 'stamp', 'hokey', 'cokey', 'hurt', 'much', 'anyon', 'suggest', 'help'], ['latest', 'saw', 'anim', 'collect', 'oakland', 'amaz', 'tri', 'clean', 'room'], ['girrll', 'go', 'miss', 'bad'], ['eat', 'tomato', 'squirt'], ['not', 'want', 'fatass', 'go', 'europ', 'need', 'eat', 'right', 'difficult'], ['tri', 'plot', 'altern', 'speak', 'sigh'], ['think', 'modem', 'pc', 'withdraw'], ['not', 'long', 'hun', 'head', 'hurt'], ['sit', 'price', 'garag', 'sale', 'help', 'bore'], ['build', 'hotel', 'without', 'bloodi', 'boil'], ['great', 'rain'], ['love', 'not', 'swing', 'would', 'like', 'even', 'tweetup', 'futur'], ['pmg', 'upset', 'relasi', 'hugh', 'lauri', 'not', 'xx', 'ohh'], ['lunch', 'suck', 'ran', 'time', 'not', 'get', 'anyth', 'done'], ['hate', 'traffic', 'dalla', 'noth', 'traffic'], ['sorri', 'stink'], ['har', 'vondt', 'ryggen', 'back', 'hurt'], ['voic', 'hurt', 'rock', 'music', 'sing', 'tonight'], ['charter', 'piss', 'rest', 'internet', 'access', 'blog', 'except', 'fix', 'soon', 'say', 'see'], ['yeah', 'point', 'gt', 'lt', 'pleas', 'not', 'make', 'feel', 'wors'], ['aww', 'wee', 'gril', 'britain', 'got', 'talent'], ['oh', 'day', 'stress', 'think', 'futur', 'make', 'sad'], ['think', 'got', 'invis', 'glass', 'shard', 'hand', 'finger', 'keep', 'pain', 'pokey', 'feel'], ['saw', 'new', 'citi', 'last', 'tuesday', 'amaz', 'show', 'ticket', 'tomorrow', 'show', 'might', 'not', 'abl', 'make'], ['work', 'yay'], ['miss', 'air', 'canada', 'centr', 'andi', 'frost'], ['lovin', 'clean', 'shaven', 'mr', 'flower', 'look', 'young', 'remind', 'get', 'old'], ['yumm', 'make', 'sure', 'leav', 'home', 'clean', 'work', 'mad', 'hard'], ['quinn', 'puppi', 'got', 'sick'], ['still', 'not', 'love', 'not', 'ask'], ['twitteerr', 'babiieshow', 'miss', 'hate', 'whole', 'not', 'phone', 'thng'], ['not', 'spell', 'melo', 'without', 'e', 'lt', 'favorit', 'blog', 'site'], ['hugh', 'not', 'lie', 'last', 'week'], ['donbt', 'like', 'peel', 'prawn', 'also', 'not', 'like', 'go', 'shop', 'run', 'money', 'crawl', 'round', 'car', 'look'], ['not', 'good', 'day'], ['harri', 'bake', 'love', 'cassi', 'not', 'onlin'], ['clean', 'pack', 'move', 'hous', 'shit', 'go', 'long', 'weekend'], ['lucki', 'jade', 'earring', 'not', 'lucki', 'lost', 'earring', 'chain', 'broke', 'pendant'], ['hiatus', 'like', 'realli', 'long', 'boo'], ['okay', 'tri', 'happi', 'deal', 'problem', 'friend', 'also', 'hard'], ['wish', 'roommat', 'come', 'home', 'soon', 'mayb', 'take', 'nap', 'wast', 'time'], ['ooc', 'thank', 'bad', 'bad', 'day', 'damn'], ['kept', 'read', 'see', 'ya', 'r', 'go', 'williamsburg', 'mind', 'busi', 'lol'], ['worst', 'headach', 'ever', 'histori', 'worst', 'headach', 'today', 'man', 'hate'], ['oh', 'kitti', 'right', 'lot', 'weight', 'last', 'wks', 'not', 'good'], ['hope', 'enjoy', 'look', 'real', 'good', 'right'], ['thought', 'list', 'meant', 'would', 'good', 'go', 'look', 'like', 'get', 'cf', 'adapt', 'dslr'], ['bum', 'not', 'see', 'ltj', 'june', 'hope', 'uk', 'yoke', 'soon'], ['bang', 'bloodi', 'foot', 'ow'], ['bummer'], ['wow', 'spam', 'realli', 'everyth', 'cover', 'mine', 'almost', 'peni', 'enlarg', 'stuff'], ['hahaha', 'miss', 'bradd', 'guy', 'keith'], ['thank', 'kashi', 'think', 'day', 'mad', 'disservic', 'not', 'take', 'class'], ['in', 'would', 'not', 'pay', 'therapi', 'dk'], ['nope', 'bore', 'hungri'], ['fuck', 'life'], ['oh', 'sorri', 'wuv', 'piec'], ['fill', 'good', 'two', 'appoint', 'go'], ['lucki', 'park', 'mayb', 'short', 'period', 'realli', 'stuff', 'done', 'until', 'wed'], ['n', 'still', 'job', 'dead', 'right'], ['made', 'leadership', 'butt', 'still', 'not', 'happi', 'enjoy', 'without', 'best', 'friend'], ['cri', 'cuz', 'peopl', 'not', 'follow'], ['realli', 'weird', 'night', 'last', 'night', 'miss', 'friend'], ['headach'], ['excel', 'suzaku', 'back', 'togeth', 'woop', 'last', 'episod', 'hope', 'happi', 'one', 'sucker', 'realli', 'lol', 'shh'], ['stick', 'work', 'till', 'freakin', 'madd', 'suck', 'work', 'day'], ['hate', 'weather', 'ugh'], ['omfg', 'favourit', 'jerk', 'chicken', 'place', 'close'], ['wish', 'sun', 'would', 'come', 'guess', 'not', 'matter', 'sinc', 'work', 'not', 'enjoy', 'anyway'], ['yo', 'not', 'love', 'twin', 'not', 'lol'], ['anyday', 'hate', 'live'], ['want', 'go', 'see', 'not', 'want', 'go', 'mom', 'brother'], ['not', 'figur', 'listen', 'internet'], ['watch', 'gh', 'feel', 'bad', 'car', 'omg', 'fuck'], ['mattress', 'armada', 'need', 'play', 'show', 'soon', 'go', 'serious', 'sad'], ['peopl', 'piss', 'ugh'], ['come', 'not', 'see', 'come', 'not', 'see', 'better', 'question', 'lol', 'need', 'chang', 'mister', 'sad'], ['rat', 'creativ', 'vado', 'stock', 'late'], ['offic', 'bldg', 'sell', 'move', 'anoth', 'smaller', 'one', 'lose', 'gym'], ['sad'], ['poor', 'sheep'], ['yet', 'could', 'not', 'get', 'pic', 'not', 'allow', 'pass', 'carpet', 'premier', 'pic', 'still', 'wit'], ['haha', 'yes', 'jealous', 'not', 'money'], ['not', 'think', 'go', 'abl', 'go', 'see', 'jb', 'time', 'close'], ['not', 'funni', 'not', 'jump'], ['got', 'done', 'first', 'day', 'work', 'exsaust', 'sweati', 'chalki'], ['herniat', 'disc', 'suck', 'stuck', 'most', 'back', 'could', 'ride'], ['greg', 'pritchard', 'rob', 'ii', 'gut', 'word'], ['ouchi', 'sorri', 'hear', 'go', 'get', 'check'], ['heart', 'not', 'cold', 'still', 'miss'], ['know', 'feel', 'darian', 'la', 'bam', 'miss', 'terribl', 'not', 'see', 'sunday'], ['listen', 'ryan', 'adam', 'sick'], ['quit', 'upset', 'realli', 'look', 'must', 'thought', 'someth', 'whatt', 'unfair'], ['jealous', 'want', 'go', 'ny'], ['realli', 'fanci', 'frappuccino', 'starbuck', 'right'], ['much', 'work'], ['feel', 'lone'], ['stu', 'actual', 'sever', 'hurt'], ['mean', 'spend', 'time', 'alon', 'friend', 'famili', 'sad'], ['matrix', 'onlin', 'shut', 'next', 'feel', 'kind', 'sad'], ['alreadi', 'miss', 'dunham'], ['idiot', 'famili', 'feel', 'not', 'mix', 'amongst', 'stuff'], ['bad', 'friend', 'sorri', 'hear'], ['miss'], ['tri', 'babi', 'not', 'want', 'soda', 'addict', 'problem', 'quit', 'still', 'sad', 'crave', 'though'], ['want', 'leav', 'work', 'alreadi', 'not', 'feelin'], ['sowwi', 'lover'], ['miss', 'best', 'friend', 'comm', 'back', 'kayla', 'go', 'littl'], ['ipod', 'die', 'today'], ['metsi', 'fan', 'also', 'boo', 'hoo'], ['woke', 'dream', 'new', 'email', 'sad', 'dream'], ['thank', 'warm', 'welcom', 'not', 'make', 'plan', 'arriv', 'time', 'air'], ['feel', 'like', 'watch', 'disney', 'bad', 'not', 'vcr', 'anymor'], ['not', 'sound', 'like', 'fun'], ['love', 'coupl', 'day', 'friend', 'wolverhampton', 'least', 'weather', 'improv', 'last', 'day', 'today', 'call', 'tomorrow'], ['back', 'soo', 'hurt'], ['recov', 'bad', 'fall', 'lunch', 'great', 'start', 'weekend'], ['lmao', 'saw', 'sound', 'hella', 'good', 'hair', 'appt'], ['poor', 'dear', 'fellow', 'busti', 'maven', 'gym', 'belong', 'peac'], ['lmoa', 'quit', 'one', 'mine', 'much', 'stress'], ['hope', 'go', 'quick', 'possibl'], ['found', 'giveaway', 'wish', 'would', 'known', 'sooner', 'happen', 'unclaim', 'citi'], ['oh', 'sorri', 'not', 'even', 'know', 'realiti', 'soon'], ['aww', 'mish', 'ladi', 'good'], ['afraid', 'comment', 'mp', 'expens', 'hopeless', 'touch', 'averag', 'person', 'averag', 'salari'], ['feet', 'realli', 'hurt'], ['awe', 'miss', 'much', 'quot', 'vacat', 'quot', 'last', 'like', 'six', 'month', 'miss'], ['drop', 'new', 'mobil', 'loo', 'finger', 'cross', 'work', 'still', 'left', 'contract'], ['sprite', 'tast', 'like', 'sore', 'throat'], ['home', 'sweet', 'home', 'carri', 'underwood', 'make', 'sadd'], ['first', 'thought', 'bar', 'life', 'meant', 'parti', 'nonstop', 'catch', 'last', 'shoulda', 'known', 'better'], ['nervous', 'go', 'tomorrow', 'cos', 'first', 'time', 'sinc', 'daughter', 'born', 'help'], ['would', 'fun', 'soo', 'tire', 'yesterday', 'long', 'day', 'offic', 'dinner', 'crash'], ['son', 'got', 'stung', 'bug', 'first', 'time', 'littl', 'finger', 'slight', 'swollen'], ['realli', 'tire', 'jake', 'alway', 'give', 'work'], ['head', 'hurt', 'bad'], ['whoa', 'alcohol', 'not', 'get', 'buzz', 'price'], ['realli', 'call', 'realiti', 'check', 'day', 'lol'], ['want', 'go', 'falkland', 'not', 'stupid', 'exam', 'mtbcut', 'go'], ['marisa', 'mauro', 'go', 'use', 'banana', 'dildo', 'srsli', 'peopl', 'arsehol'], ['big', 'moth', 'wasp', 'insect', 'general', 'haha', 'hate'], ['friday', 'night', 'home', 'parti', 'weekend'], ['lol', 'not'], ['sad', 'statu', 'liberti', 'complet', 'reopen', 'week', 'nyc', 'trip'], ['matter', 'jealous'], ['turn', 'fast', 'food', 'whore'], ['not', 'stop', 'cough'], ['soo', 'tire', 'busi', 'tweet', 'glad', 'weekend', 'yay'], ['oh', 'joy', 'gong', 'long', 'weekebd', 'yipe'], ['certain', 'know', 'feel', 'wesley', 'sleep', 'want', 'go', 'get', 'someth', 'eat', 'account'], ['marle', 'doc', 'appoint', 'poor', 'babygirl', 'get', 'shot'], ['shud', 'reali', 'go', 'bed', 'proper', 'tire', 'bt', 'cnt', 'b'], ['need', 'repres', 'blackberri'], ['ugh', 'not', 'infam', 'fuck', 'lame'], ['not', 'go', 'movi', 'today'], ['not', 'sure', 'walk', 'around', 'barn', 'nobl', 'comfort', 'much', 'well', 'work'], ['spellingi', 'aw', 'twiiter'], ['anyon', 'els', 'problem', 'access', 'account', 'info', 'istor', 'not', 'buy', 'music', 'not', 'look', 'account'], ['uncontrol', 'right', 'hurt'], ['hour', 'later', 'still', 'drunk', 'drive', 'shame', 'let', 'drink', 'much', 'not', 'peak', 'spirit', 'right'], ['okay', 'man', 'hook', 'hand', 'kind', 'freak', 'right'], ['sick', 'girl', 'tri', 'shake', 'thing', 'luck', 'miss', 'long', 'time'], ['mikey', 'bore'], ['bum', 'not', 'even', 'one', 'testimoni', 'flickr'], ['oh', 'god', 'feel', 'like', 'shit'], ['blond', 'slowli', 'sure', 'blond', 'wana', 'scratch', 'hair', 'not', 'allow'], ['everyth', 'soo', 'mess', 'life', 'suck'], ['still', 'unfortun'], ['got', 'headach'], ['yer', 'littl', 'cock', 'well', 'not', 'deserv', 'stick', 'everyon', 'cowel', 'go', 'produc'], ['aah', 'tire', 'not', 'chill', 'minut', 'today'], ['sad', 'miss', 'guy', 'last', 'night'], ['uh', 'oh', 'sunburn'], ['not', 'know', 'feel', 'empti', 'loll', 'cheesi', 'true'], ['kawawa', 'make', 'kawawa', 'cuz', 'hate', 'see', 'kawawa', 'ohh', 'lt'], ['follow', 'random', 'spammer'], ['downhil', 'labor', 'day'], ['holli', 'steel', 'bgt', 'absolut', 'excruci', 'girl'], ['told', 'peopl', 'indiana', 'batshit', 'live', 'feel', 'like', 'escap', 'orwel', 'book', 'everyday'], ['suck'], ['wish', 'go'], ['horribl', 'thought', 'go', 'back', 'work', 'monday', 'good', 'thought', 'work', 'minut', 'life', 'good'], ['wow', 'difficult'], ['good', 'stuff', 'smile', 'back', 'not', 'go', 'concert', 'wish', 'could', 'instead', 'work', 'music', 'fail', 'lol', 'x'], ['aw', 'well', 'sorri', 'not', 'like', 'juli', 'reason'], ['sad', 'greg', 'pritchard', 'not', 'make', 'final', 'britain', 'got', 'talent', 'coz', 'soo', 'deserv'], ['omgod', 'soo', 'tire', 'not', 'think', 'energi', 'film', 'today', 'lol'], ['sob', 'not', 'believ', 'end', 'work', 'week', 'chapter', 'augusten', 'burrough', 'father', 'erni', 'guinea', 'pig'], ['thought', 'cav', 'would', 'crush', 'magic', 'come', 'home', 'north', 'realiz', 'wrong'], ['lost', 'favorit', 'thing', 'love', 'alway', 'stori', 'year', 'key', 'chain'], ['bless', 'ya', 'know', 'feel', 'well'], ['sad', 'news', 'week', 'hospit', 'uncl', 'past', 'away', 'today', 'uncl', 'toni'], ['subhana', 'allah', 'got', 'scare', 'told', 'start', 'anxieti'], ['lol', 'knew', 'better', 'better', 'would', 'not', 'wear', 'ugg', 'shoe', 'weather', 'aww', 'rip', 'stack', 'b'], ['woof', 'wish', 'allow', 'go'], ['well', 'school', 'final', 'not', 'know', 'sad', 'miss', 'teacher', 'goodby', 'mrs', 'collist'], ['feel', 'tierd', 'much', 'colleg', 'work'], ['wish', 'could', 'go', 'love', 'music', 'hate', 'racism', 'gig', 'weekend', 'not', 'right', 'part', 'world', 'even'], ['readi', 'weekend', 'sad', 'offic', 'tomorrow', 'morn'], ['oh', 'dear', 'take', 'back', 'request', 'get', 'drunk', 'fizz', 'def', 'regret', 'next', 'day', 'sure', 'fire', 'hangov'], ['go', 'bff', 'haha', 'like', 'hourss', 'actual', 'darn', 'hw'], ['dad', 'joe', 'nugent', 'drank', 'near', 'ice', 'tea', 'bit', 'left', 'quit', 'mif', 'honest'], ['got', 'email', 'tell', 'could', 'got', 'monday', 'flight', 'sfo', 'cheaper', 'amp', 'biz', 'class', 'book', 'tomorrow'], ['sigh', 'exam', 'not', 'wer', 'neaarr', 'finish', 'next', 'week', 'bin', 'stressd', 'not', 'guna', 'b', 'bak', 'till', 'end', 'june'], ['see', 'peopl', 'today', 'made', 'realiz', 'realli', 'miss', 'someon', 'also', 'miss', 'grandpa', 'gone', 'year', 'oh', 'mom', 'mamagra'], ['get', 'closer', 'log', 'left', 'hand', 'swollen', 'not', 'wear', 'wed', 'ring', 'keep', 'forget', 'worri', 'lost'], ['tri', 'put', 'iron', 'book', 'bag', 'burnt', 'bag', 'iron', 'lol', 'buzz', 'keep', 'make', 'fun', 'bastard', 'lol'], ['watch', 'rain', 'reminisc', 'time', 'everytim', 'rain', 'love', 'life'], ['fell', 'ef', 'arm', 'today', 'back', 'drive'], ['tri', 'someth', 'funni', 'twitter', 'fail'], ['fml', 'ughh', 'not', 'go', 'anwher', 'today', 'sit', 'bedroom', 'share', 'mother', 'cri'], ['may', 'cri', 'damn', 'weather', 'got', 'ass', 'burnt', 'nt', 'liter', 'jus', 'shin', 'arm', 'n', 'chest', 'leg', 'hurt', 'lyk', 'biatch', 'slight', 'enjoy', 'though', 'ha'], ['realli', 'want', 'go', 'maker', 'fair', 'tomorrow', 'sick', 'makerfair'], ['traumat', 'moment', 'childhood', 'dog', 'massacr', 'babi', 'bunni', 'brother', 'got', 'bb', 'gun'], ['not', 'even', 'finish', 'clean', 'room', 'cuz', 'went', 'parti', 'ahh', 'still', 'messi'], ['wish', 'babe'], ['give', 'haiku', 'status', 'inspir', 'michell', 'yuen', 'sun', 'shine', 'perfect', 'day', 'glorious', 'day', 'outsid', 'offic'], ['nice', 'day', 'go', 'stuck', 'insid', 'night'], ['bgt', 'made', 'cri', 'tonight'], ['use', 'temporari', 'mous', 'sinc', 'trackbal', 'break', 'feel', 'rsi', 'crawl', 'wrist', 'alreadi'], ['not', 'fix', 'guess', 'write', 'get', 'bore', 'watch', 'tv', 'man', 'lame'], ['saw', 'slater', 'mtv', 'show', 'think', 'want', 'danc', 'slater', 'crap', 'like', 'kelli', 'kapowski'], ['stope', 'broadcast', 'blogtv', 'coz', 'left', 'one', 'one', 'came', 'way', 'xd'], ['way', 'internet', 'access', 'twit'], ['best', 'vanilla', 'memori', 'sharffenberg', 'factori', 'gift', 'shop', 'not', 'sure', 'get'], ['today', 'not', 'inspir', 'photographi', 'day', 'photographi'], ['not', 'ff', 'list', 'hurt'], ['honourari', 'fluffett', 'love', 'hair', 'left'], ['miss', 'everyon', 'need', 'face', 'not', 'witti', 'situat', 'updat'], ['peopl', 'idea', 'depress', 'steakhous', 'not', 'abl', 'eat'], ['left', 'cali', 'dalla', 'car', 'much'], ['graduat', 'ceremoni', 'start', 'realli', 'wish', 'could'], ['son', 'bitch', 'argghh'], ['someon', 'key', 'car'], ['day', 'fkn', 'ugli', 'amp', 'match', 'mood', 'unfortunat', 'time', 'blast', 'moon'], ['lil', 'old', 'mac', 'never', 'charg'], ['sad', 'broke', 'giant', 'paper', 'clip', 'use', 'itali', 'note'], ['vote', 'hope', 'vote', 'white', 'blank', 'name', 'mr', 'twitter', 'funniset'], ['sorri', 'weather', 'hope', 'not', 'hour', 'wx', 'delay', 'bwi'], ['got', 'back', 'work', 'feel', 'pretti', 'good', 'work'], ['miss', 'grandma', 'angi', 'alway', 'like', 'grandma'], ['fail', 'work'], ['got', 'realli', 'sad', 'wen', 'holli', 'start', 'cri', 'aww', 'bless'], ['last', 'day', 'holyday', 'got', 'get', 'back', 'work', 'anyway', 'great', 'week'], ['good', 'stuff', 'smile', 'back', 'not', 'go', 'concert', 'wish', 'could', 'instead', 'music', 'fail', 'lol', 'x'], ['weekend', 'go', 'pack', 'full', 'work', 'school', 'life', 'summer', 'afraid'], ['finish', 'clean', 'bathroom', 'smell', 'like', 'clorox'], ['not', 'believ', 'alreadi', 'friday', 'omg', 'done'], ['not', 'tweetin', 'day', 'cuz', 'switch', 'thing', 'da', 'new', 'place', 'exhaust', 'sick'], ['frown', 'us', 'googl', 'alcohol', 'work'], ['aww', 'nsti', 'peopl', 'make', 'fun', 'someon', 'amp', 'laugh', 'ass', 'see', 'not', 'laugh', 'shoud', 'hint', 'wrong'], ['biggest', 'headach', 'ever', 'photosensit', 'get', 'control', 'help'], ['miss', 'nanni'], ['miss', 'doggi', 'hammi', 'turtl', 'amp', 'amp', 'fish'], ['ouch', 'head', 'hurt'], ['sorri', 'not', 'make', 'good', 'luck', 'next', 'time', 'though'], ['nah', 'singl', 'person', 'post', 'tweet', 'day', 'hard', 'cope', 'android', 'phone', 'unabl', 'filter'], ['god', 'look', 'stumpi', 'not', 'share', 'toe', 'tonight'], ['tryin', 'figur', 'direct', 'messag', 'gettin', 'frustrat'], ['room', 'smh'], ['drop', 'mum', 'station', 'miss', 'mum'], ['aarrgh', 'soo', 'want', 'see', 'messag', 'august', 'dammit', 'decent', 'seat', 'expens', 'boo', 'recess'], ['alway', 'blunt', 'feel', 'never', 'seem', 'good'], ['wtf', 'facebook', 'spam', 'say', 'dad', 'secret', 'admir'], ['way', 'get', 'maggi', 'moo', 'peanut', 'butter', 'galaxi', 'home', 'thank', 'god', 'week', 'done', 'meet', 'day'], ['suck', 'put', 'britney'], ['lucki', 'lucki', 'friend', 'nickleback', 'concert', 'atm', 'wish'], ['mani', 'tribe', 'r', 'becom', 'extinct', 'blame', 'mc', 'donald'], ['get', 'realli', 'spotti', 'spot', 'alway', 'scar', 'not', 'pick', 'even', 'not', 'fact', 'skin', 'suck'], ['need', 'botox', 'work', 'lip', 'go', 'chang', 'name', 'angelina', 'joli', 'thought', 'sad', 'though', 'racism'], ['alway', 'make', 'bad', 'decis'], ['gettin', 'readi', 'put', 'show', 'ugh', 'realli', 'hope', 'peopl', 'not', 'come'], ['noo', 'leav', 'beach'], ['amhzz', 'get', 'invit', 'miss'], ['alway', 'get', 'hope', 'soo', 'close'], ['not', 'feel', 'well', 'today'], ['not', 'sad', 'good'], ['oh', 'man', 'bate', 'wish', 'blow', 'flip', 'burn'], ['hahaha', 'wow', 'thank', 'bud', 'p', 'plan', 'pretend', 'costum', 'wish', 'cold', 'could', 'wear', 'sweatshirt'], ['could', 'not', 'find', 'extend', 'one'], ['littl', 'boy', 'still', 'makin', 'work', 'storm'], ['wish', 'still', 'jam'], ['boy', 'go', 'movi', 'wish', 'not', 'feel', 'like', 'shit'], ['day', 'crappi', 'want', 'cri'], ['ahh', 'man', 'blew', 'amp', 'shred'], ['pleas', 'hear', 'still', 'shame', 'sometim', 'hear', 'men'], ['mayb', 'one', 'day', 'favorit', 'produc', 'list', 'lol'], ['skin', 'burn', 'much'], ['got', 'two', 'third', 'new', 'moon', 'three', 'day', 'work', 'assign', 'sad', 'dnt', 'write', 'selv'], ['bad'], ['actual', 'suppos', 'dad', 'cousin', 'cousin', 'troubl', 'though', 'never', 'get', 'togeth'], ['darn', 'go', 'whole', 'weekend', 'without'], ['jump', 'train', 'visit', 'rescu', 'mom', 'total', 'forgot', 'sweatshirt', 'forgot', 'bring', 'make', 'first', 'time', 'ever', 'forget'], ['omg', 'not', 'believ', 'jay', 'leno', 'go', 'air', 'hate', 'conan'], ['omg', 'today', 'felt', 'like', 'last', 'day', 'school', 'horribl'], ['would', 'like', 'hug', 'kiss', 'eric', 'long', 'distanc', 'realli', 'realli', 'stink'], ['watch', 'hmm'], ['damn', 'hate', 'weather', 'shit', 'suck', 'want', 'go', 'tonight', 'not', 'n', 'mess', 'like'], ['kind', 'hope', 'time', 'go', 'differnt', 'not', 'suck'], ['not', 'ditchin', 'barfin', 'sorri', 'guy', 'esotsm'], ['hot', 'room', 'want', 'go', 'swim'], ['ugh', 'kind', 'bore'], ['like', 'cheesecak', 'browni', 'miss', 'cheesecak', 'browni', 'walmart', 'closest', 'not'], ['head', 'home', 'foot', 'surgeri', 'wish', 'boyfriend', 'come', 'cuddl'], ['way', 'ian', 'watkin', 'stop', 'follow', 'wee', 'bit', 'piss'], ['ajax', 'php', 'think', 'concept', 'autorefresh', 'made', 'mistak'], ['greg', 'pritchard', 'got', 'threw', 'final', 'britain', 'got', 'talent'], ['yay', 'jack', 'downer', 'rememb', 'friday', 'mean', 'work', 'tomorrow'], ['ugh', 'feet', 'feel', 'like', 'go', 'fall'], ['omg', 'not', 'eat', 'everyth', 'eat', 'hurt', 'stomach', 'come', 'right'], ['suck', 'thunder', 'get', 'readi', 'shut'], ['tire', 'respons', 'wish', 'kid', 'seem', 'everyon', 'around', 'money', 'not', 'anymor'], ['tire', 'heck', 'want', 'go', 'home', 'sleep', 'not', 'wash', 'till', 'daddi', 'get', 'work'], ['anyway', 'not', 'take', 'shit', 'longer', 'mind', 'blow'], ['hell', 'hair', 'not', 'fall', 'constant'], ['need', 'friend', 'right', 'feel', 'like', 'mm', 'sosad'], ['set', 'chuck', 'bass', 'new', 'york', 'palac', 'hotel', 'bad', 'not', 'film', 'today'], ['ntah', 'realli', 'want'], ['head', 'home', 'long', 'week', 'wish', 'someon', 'onther', 'market', 'would', 'follow'], ['dinner', 'smell', 'hungri', 'sunni', 'outsid', 'wish', 'wonderland'], ['mee', 'bad', 'bore', 'eat', 'lol'], ['dude', 'feel', 'realli', 'bad', 'not', 'work', 'not', 'serial', 'not', 'use'], ['lmfaaoo', 'watch', 'pink', 'know', 'well', 'love', 'lol'], ['ha', 'thank', 'bryan', 'not', 'remind', 'state', 'budget', 'issu', 'actual', 'steve', 'staffer', 'offic'], ['watch', 'edit', 'old', 'grey', 'whistl', 'test', 'fanni', 'mama', 'papa', 'amp', 'isaac', 'hay', 'not', 'make', 'show', 'like', 'anymor'], ['aww', 'kany', 'west', 'shame', 'not', 'get', 'joke'], ['aww', 'hope', 'find', 'soon', 'miss', 'cnt', 'even', 'use', 'cam', 'memori', 'full', 'plus', 'want', 'take', 'sa', 'commin', 'weekend'], ['want', 'anoth', 'shake'], ['right', 'peep', 'hope', 'fix', 'twitter', 'mobil', 'tweet', 'race', 'day', 'fail'], ['total', 'forgot', 'friday', 'till', 'read', 'tweet', 'ha', 'feel', 'dumb', 'take', 'breath'], ['omg', 'mani', 'final', 'studi', 'freak', 'gona', 'fail'], ['sunburnt', 'arm', 'burnt', 'mouth', 'skin', 'come'], ['same', 'suck'], ['not', 'feel', 'good', 'happen', 'today', 'day', 'not', 'go', 'friend', 'tonight'], ['bhaha', 'teenag', 'nightclub', 'home', 'suppos', 'fuck', 'licens', 'touch'], ['sorri', 'pray'], ['sad', 'not', 'view', 'site', 'due', 'region', 'restrict'], ['sound', 'awesom', 'wish', 'could', 'go', 'way', 'could', 'afford', 'fun'], ['wendi', 'go', 'wish'], ['hate'], ['miss'], ['come', 'socket', 'feel', 'like', 'phone', 'hole', 'not', 'virgin', 'loos'], ['aww', 'poor', 'precious'], ['sad', 'friend', 'everyday', 'long', 'ass', 'time'], ['miss', 'friend', 'much'], ['sat', 'pub', 'pretti', 'quiet', 'far', 'prob', 'leav', 'bit', 'work'], ['sad', 'brother', 'bad', 'day'], ['oop', 'unfollow', 'everyon', 'anywayz', 'build', 'twitter', 'empir'], ['wow', 'realli', 'need', 'fun', 'tonight'], ['time', 'learn', 'tomorrow', 'earli', 'start', 'night', 'night', 'good', 'peopl', 'xx'], ['go', 'crazi', 'super', 'head', 'ach', 'hell', 'law', 'ben', 'sinc', 'morn', 'ahh'], ['job', 'especi', 'wmid', 'not', 'afford', 'move', 'away', 'yet', 'sorri', 'miss'], ['sit', 'take', 'littl', 'break', 'tri', 'recharg', 'continu', 'housework'], ['vp', 'get', 'headach', 'time', 'coffe', 'fight', 'migrain', 'ohnoyoudidnt'], ['car', 'broken'], ['get', 'write', 'halloween', 'interview', 'daniell', 'harri', 'darn', 'late', 'contest'], ['cheek', 'bakeri', 'close', 'crazi', 'williamsburg', 'support', 'infinit', 'boutiqu', 'cloth', 'not', 'one', 'decent', 'place', 'scone'], ['crisi', 'forgot', 'fring', 'comb', 'one', 'help'], ['ok', 'post', 'rni', 'girl', 'learn', 'rich', 'sugari', 'food', 'bad', 'idea', 'golden', 'graham', 'bar', 'vend', 'machin', 'bleck'], ['super', 'bum', 'whitecap', 'game', 'plan', 'friend', 'fell', 'need', 'home', 'let', 'sitter', 'go'], ['got', 'sing', 'fall', 'love', 'chang', 'week', 'day', 'saturday', 'not', 'quit', 'fit'], ['one', 'day', 'hug', 'come', 'finger', 'still', 'cross'], ['pot', 'geranium', 'talk', 'grandkid', 'well', 'maddi', 'jack', 'outsid', 'play', 'sure', 'miss'], ['hot', 'sleep', 'window', 'open', 'mean', 'nois', 'make', 'earli'], ['iphon', 'poor', 'credit', 'not', 'live', 'without', 'cell', 'phone', 'mass', 'transit', 'everi', 'day'], ['not', 'fuck', 'concentr', 'damn', 'heat', 'cooler', 'not', 'job'], ['depress', 'think'], ['super', 'bore', 'friday', 'night'], ['almost', 'made', 'read', 'comedi', 'outlet', 'headlin', 'weekend', 'took', 'extra', 'hour', 'traffic', 'basic', 'doubl', 'time'], ['get', 'dizzi', 'go', 'lower', 'origin', 'rais', 'pleas', 'not', 'think', 'less'], ['bill', 'likewis', 'next', 'time', 'spend', 'time', 'talk'], ['soo', 'stress', 'everyth'], ['tri', 'find', 'foreign', 'place', 'foreign', 'town', 'lost'], ['yes', 'nice', 'oh', 'kevin', 'shirtless', 'not', 'see', 'well'], ['knoww', 'da', 'best'], ['unlucki', 'day', 'not', 'without', 'hope', 'see', 'wednesday', 'though', 'right', 'x'], ['sorri'], ['sad', 'today', 'last', 'day', 'san', 'diego'], ['priest', 'realli', 'good', 'guess', 'would', 'not', 'welcom', 'late', 'late', 'moment'], ['head', 'hurt'], ['noo', 'roo', 'cri', 'omg', 'want', 'slap', 'sing', 'fine', 'boohoo'], ['not', 'look', 'forward', 'next', 'week', 'math', 'geographi', 'english', 'french', 'exam', 'total', 'hour'], ['iphon', 'fell'], ['weird', 'see', 'myspac', 'page', 'without', 'delet', 'page', 'though'], ['appl', 'also', 'rotten', 'center', 'luck'], ['oww', 'back', 'pain', 'hm', 'walmart', 'could', 'get'], ['hope', 'not', 'rain', 'tonight', 'tomorrow', 'fam', 'come', 'visit', 'swim', 'pool', 'carn', 'asada', 'rain', 'pool', 'go', 'dirti'], ['balmain', 'knockoff', 'bebe', 'make', 'want', 'real', 'shoe', 'look', 'cheapi', 'cheapi'], ['think', 'cold', 'get', 'wors', 'not', 'better', 'not', 'stop', 'cough', 'realli', 'suck'], ['damn', 'rain'], ['fun', 'amorsot', 'even', 'though', 'forgot', 'birthday'], ['would', 'not', 'revers', 'overdraft', 'fee'], ['boy', 'leav', 'summer', 'go', 'stay', 'grandpar', 'go', 'miss'], ['nope', 'not', 'think', 'crime'], ['bus', 'stop', 'alway', 'big', 'pile', 'loogi', 'gross'], ['work'], ['sittin', 'hospit', 'isaac', 'hit', 'head'], ['feel', 'lone', 'need', 'good', 'friend'], ['allerg', 'hot', 'wax'], ['omg', 'learn', 'littl', 'girl', 'play', 'ducki', 'first', 'land', 'time', 'movi', 'murder', 'age', 'wtf'], ['tire'], ['sit', 'babi', 'libbi', 'fever', 'fussi'], ['not', 'figur', 'empir', 'puzzl', 'stuck'], ['hate', 'sat', 'around', 'alon', 'friday', 'night', 'big', 'sad', 'old', 'loser'], ['final', 'got', 'money', 'bad', 'goe', 'bill'], ['well', 'tell', 'not', 'marri', 'like', 'mayb', 'stuck', 'situat', 'like'], ['never', 'ban', 'court', 'order'], ['two', 'hilaari', 'love', 'verna'], ['took', 'nap', 'tummi', 'hurt'], ['know', 'ef', 'embarrass', 'eff', 'live'], ['ugh', 'bore', 'day'], ['want', 'b', 'mari', 'antoinett', 'cos', 'perfect', 'hairdo', 'fab', 'cloth', 'n', 'ton', 'macaron', 'crappi', 'day'], ['not', 'find'], ['could', 'would', 'send', 'california', 'sunshin', 'way'], ['found', 'tink', 'cover', 'wii', 'remot', 'peopl', 'know', 'not', 'wii', 'fail'], ['abl', 'see', 'websit', 'america', 'languish', 'read', 'news', 'stori'], ['bore', 'xd', 'pic', 'photo', 'still', 'mum', 'steam', 'miss', 'nameless'], ['not', 'get', 'along'], [], ['work', 'hop', 'citi', 'got', 'miss', 'basebal'], ['tri', 'dm', 'not', 'follow'], ['planet', 'fit', 'van', 'wyck', 'keep', 'hear', 'homi', 'tell', 'bout', 'plus', 'close', 'hood', 'know', 'lazzi', 'ass'], ['oh', 'poor', 'thing', 'keep', 'us', 'post'], ['yay', 'move', 'sorri', 'dh', 'grr', 'xx'], ['thank', 'review', 'today', 'feel', 'like', 'not', 'know', 'anyth', 'anyway', 'r'], ['bore', 'without', 'camera'], ['senior', 'done', 'day', 'woohoo', 'go', 'night'], ['got', 'back', 'groceri', 'store', 'starv', 'not', 'find', 'anyth', 'eat'], ['sit', 'friday', 'night', 'bore'], ['show', 'amaz', 'cold', 'hope', 'give', 'victoria', 'card', 'get', 'dvds', 'back', 'ha'], ['shakalohana', 'week', 'two', 'flat', 'wavez', 'surfin'], ['ugh', 'gross'], ['nigel', 'realli', 'enjoy', 'got', 'big', 'scratch', 'side', 'inexplic', 'appear', 'afterward'], ['congrat', 'ugh', 'still', 'til', 'end', 'june'], ['work', 'yess', 'super', 'hungri'], ['comput', 'remain', 'dead'], ['damn', 'dublin'], ['world', 'make', 'sad'], ['everi', 'saturday', 'till', 'work', 'suck', 'friday', 'monday', 'juli', 'either'], ['sunburn', 'not', 'fun', 'rememb'], ['watch', 'missi', 'elliot', 'video', 'collect', 'sad', 'told', 'look', 'like', 'high', 'school'], ['club', 'weekend', 'due', 'bust', 'knee', 'lt', 'emo', 'gt', 'life', 'unfair', 'lt', 'gt'], ['unemploy', 'line', 'come'], ['suck'], ['date', 'script', 'realli', 'bad', 'midway', 'thru', 'pitch', 'catch', 'get', 'butthurt', 'storm', 'loss'], ['realli', 'want', 'ring', 'cost', 'much', 'dam', 'credit', 'crunch'], ['sorri', 'shannon'], ['think', 'pretti', 'awesom', 'could', 'quot', 'lotr', 'rotk', 'one', 'summer', 'not', 'anymor'], ['arm', 'hurt'], ['feel', 'quit', 'not', 'quit', 'sure', 'though', 'go', 'bed', 'night', 'everyon', 'x'], ['thank', 'hon', 'migrain', 'went', 'away', 'came', 'back'], ['sad', 'corpor', 'giant', 'employ', 'not', 'let', 'get', 'site'], ['lt', 'internet', 'weekend'], ['saw', 'dead', 'bird', 'way', 'work', 'kind', 'day', 'start', 'poor', 'littl', 'bird'], ['love', 'walk', 'dog', 'dark', 'nice', 'walk', 'though', 'hehe', 'x'], ['not', 'good', 'rememb', 'twitter', 'thing', 'sorri', 'everybodi', 'leav', 'tibet', 'head', 'cold'], ['ugh', 'hate', 'degre', 'weather'], ['ouch', 'sunburn', 'bad', 'hope', 'not', 'sore', 'bed', 'alway', 'problem'], ['ah', 'nfg', 'super', 'amaz', 'jordan', 'legit', 'not', 'stay', 'longer', 'meet', 'everyon', 'cuz', 'hv', 'hour', 'drive', 'home'], ['wow', 'hope', 'get', 'better', 'cancer', 'gtfo'], ['sorri', 'dunner', 'saw', 'tweet', 'total', 'let', 'sorri', 'babe', 'work', 'till', 'boo'], ['agre', 'miss', 'lot', 'away', 'busi', 'like', 'whole', 'new', 'place'], ['hope', 'rain', 'soo', 'warm'], ['rate', 'armi', 'wive', 'teari', 'crimin', 'mind', 'yike', 'crimin', 'intent', 'take', 'sort', 'real', 'life', 'news', 'horrifi', 'ok', 'bed', 'nite'], ['lost', 'one', 'best', 'friend', 'soo', 'sad'], ['anyon', 'bore', 'work'], ['not', 'get', 'chat', 'oh', 'well', 'time', 'eat', 'pralin'], ['thought', 'albani', 'could', 'not', 'wors', 'ao', 'leav'], ['poor', 'greg', 'stupid', 'uk', 'alway', 'sympathi', 'vote', 'xo'], ['neither', 'get', 'better'], ['oh', 'noe', 'not', 'averag', 'joe', 'lexington', 'close', 'sad'], ['hate', 'wait', 'line'], ['hope', 'fun', 'canada', 'not', 'worri', 'see', 'summer'], ['babi', 'first', 'bust', 'lip'], ['smash', 'pinki', 'julia', 'car', 'door', 'fuck', 'life'], ['anyhoo', 'thank', 'spank', 'x'], ['guess', 'miss', 'beer', 'good', 'time'], ['not', 'look', 'forward', 'next', 'wednesday'], ['watch', 'would', 'forgottenmost', 'enjoy', 'pay', 'today', 'face', 'not', 'bounc', 'back', 'anymor'], ['tire', 'go', 'take', 'nap', 'finger', 'hurt'], ['oki', 'go', 'tweet', 'loos', 'guy', 'girl'], ['hate', 'remind', 'weak', 'eye', 'overdid', 'read', 'today', 'sore', 'fuck', 'go', 'rest'], ['still', 'home', 'good'], ['daddi'], ['amaz', 'decor', 'store', 'ever', 'seen', 'amp', 'almost', 'year'], ['cool', 'boob', 'itch', 'got', 'sunburn', 'volcano'], ['bore', 'bore', 'bore', 'wish', 'someth', 'tomorrow', 'especi', 'weather', 'not', 'fair'], ['sorri', 'mike', 'assum', 'music', 'not', 'know', 'mysteri'], ['earli', 'wish', 'could', 'sleep', 'today'], ['alway', 'feel', 'guilti'], ['aww', 'chamber', 'callback', 'soo', 'emot'], ['facebook', 'not', 'load', 'damn', 'bore'], ['brows', 'web', 'expect', 'see', 'pms', 'forum', 'back', 'luck'], ['feel', 'bad', 'everyth', 'stupid', 'harsh', 'fault', 'know', 'sorri', 'savvi', 'love', 'guy', 'lt'], ['upset'], ['tummi', 'ach'], ['yeah', 'friday', 'thought', 'sis', 'come', 'town', 'turn', 'not', 'sad', 'miss', 'babi'], ['quot', 'icant', 'live', 'not', 'live', 'quot', 'lmao', 'oh', 'way', 'oowwch', 'foot', 'hurri', 'plaster', 'go', 'bleed', 'death'], ['suck', 'go', 'id', 'b', 'piss'], ['feel', 'better', 'sorri', 'feel'], ['oh', 'bore', 'buut', 'almost', 'day', 'til', 'leav', 'franc'], ['stuck', 'aw', 'traffic', 'way', 'wed', 'ceremoni', 'suppos', 'start', 'ughh'], ['miss', 'guy', 'much', 'xx'], ['oi', 'mock', 'fact', 'not', 'cri', 'tv', 'thing', 'feel', 'bad', 'xx'], ['soo', 'fuck', 'stress', 'think', 'could', 'possibl', 'lose'], ['av', 'ad', 'reali', 'gd', 'day', 'wiv', 'ciara', 'connolli', 'park', 'gate', 'west', 'kirbi', 'new', 'brighton', 'fukin', 'funni', 'bt', 'sunburnt', 'luk', 'like', 'driver', 'arm'], ['traffic', 'ridicul', 'may', 'not', 'make'], ['aw', 'yes', 'week', 'got', 'ask', 'return', 'end', 'wish', 'bought', 'never', 'mind'], ['oh', 'poor', 'thing', 'sorri', 'babe'], ['yeah', 'text', 'wnat', 'go', 'car', 'broken'], ['go', 'life', 'not', 'good', 'exit', 'hallway', 'stuck', 'world'], ['hey', 'sorri', 'late', 'leav', 'min'], ['damn', 'anytim', 'need', 'car', 'dammit'], ['one', 'random', 'phone', 'call', 'ever', 'god', 'kill'], ['bummer', 'phone', 'get', 'disconnect', 'weekend', 'birthday', 'darn', 'lt'], ['ugh', 'hate', 'life', 'one', 'hire', 'sigh', 'stupid', 'economi', 'stupid', 'bush'], ['pray', 'sorri', 'hear', 'bro', 'man'], ['great', 'pic', 'upload', 'pix', 'tomo', 'laptop', 'tonight'], ['brazil', 'love'], ['sunburn', 'face', 'amp', 'leg', 'fix', 'arm'], ['bang', 'elbow', 'bleed', 'owwie'], ['not', 'allow', 'call', 'live', 'uk', 'parent', 'say', 'cost', 'much', 'suck'], ['damn', 'could', 'call', 'told', 'person', 'not', 'humili', 'front', 'whole', 'twittervers'], ['aww', 'sound', 'sad'], ['miss', 'mojokin', 'go', 'not', 'long', 'enough', 'comment', 'weekend'], ['fieldwork', 'databook', 'slept', 'awkward', 'bone', 'sore'], ['throat', 'reallyy', 'sore', 'bare', 'talk'], ['decemb', 'not', 'good', 'next', 'big', 'birthday', 'flys', 'sure'], ['think', 'skippin', 'ny', 'morn', 'plan', 'tonight', 'well', 'anyway'], ['not', 'believ', 'come', 'near', 'place', 'not', 'get', 'love', 'jenni'], ['pleas', 'not', 'let', 'get', 'obsess', 'whatev', 'whoever', 'charg', 'action', 'bad', 'job', 'late'], ['nativ', 'not', 'french', 'hate', 'tri', 'find', 'anim', 'french', 'suck', 'someon', 'help', 'pleeas', 'allison', 'iraheta'], ['shit', 'night', 'want', 'john'], ['not', 'mtv', 'go', 'fmll'], ['ridicul', 'warm', 'bed'], ['got', 'caught', 'pour'], ['haha', 'amen', 'soo', 'damn', 'hungri', 'hate', 'know', 'weekend', 'go', 'shit', 'suppos', 'great'], ['tire', 'need', 'anoth', 'minut'], ['yeah', 'not', 'avail', 'public', 'market', 'yet', 'soon', 'look', 'forward', 'sunburnt', 'arm', 'itch', 'boo', 'hoo'], ['hang', 'rex', 'miss', 'alabama', 'nanna', 'alreadi'], ['noth', 'good', 'five', 'dollar', 'sale'], ['sad', 'got', 'money', 'phone', 'ahh', 'well', 'lli', 'mitchel', 'xx'], ['checkin', 'got', 'fever', 'cnt', 'sleep'], ['borin', 'not', 'play', 'comput', 'mom', 'say', 'makin', 'task'], ['also', 'final', 'home', 'friend', 'anyon', 'kind', 'nice', 'sit', 'quiet', 'room', 'wish', 'gf', 'though'], ['fuck', 'everyth'], ['haha', 'scare', 'shit'], ['thanxx', 'messag', 'want', 'leav', 'bye'], ['freakin', 'frustrat', 'not', 'coach', 'realiz', 'time', 'hard', 'not', 'nobodi', 'got', 'money', 'buy', 'cooki', 'dough', 'new', 'uniform'], ['children', 'hospit', 'er', 'hope', 'meredith', 'not', 'broken'], ['wish', 'could', 'famous', 'act', 'danc'], ['everyon', 'work', 'tonight', 'bore'], ['fight', 'horrid', 'headach', 'larg', 'vanilla', 'ice', 'coffe'], ['may', 'unintent', 'snub', 'someon', 'due', 'feel', 'bad'], ['sad', 'tanner', 'not', 'invit', 'panther', 'develop', 'camp', 'year', 'poor', 'glasser', 'calla', 'good'], ['probabl', 'not', 'good', 'idea', 'hard', 'tweet', 'web', 'miss', 'tweetdeck', 'cri'], ['miss', 'bri', 'come', 'back', 'queensland', 'bitch', 'one', 'sit', 'next', 'class', 'drama', 'fun', 'without', 'come', 'back', 'boob'], ['saw', 'red', 'audi', 'highway', 'sped', 'uo', 'hope', 'loss'], ['quit', 'hard', 'attempt', 'spread', 'cornbread', 'fall', 'apart'], ['not', 'work', 'uk'], ['hah', 'noo', 'obli', 'one', 'aumff', 'hate', 'nick', 'datin', 'miley'], ['watch', 'termin', 'cri', 'one', 'movi', 'make', 'cri', 'reason', 'arni', 'die', 'lame'], ['sad', 'mom', 'must', 'shaken', 'peac', 'strength', 'dear', 'famili', 'lost', 'littl', 'girl'], ['bit', 'disappoint', 'killer', 'jonathan', 'ross', 'sexi', 'hell', 'though'], ['epic', 'moment', 'hahahha', 'swear', 'realli', 'want', 'see'], ['hey', 'twit', 'watch', 'poor', 'holli', 'britain', 'got', 'talent', 'poor', 'thing', 'peopl', 'mean', 'year', 'old', 'littl', 'girl'], ['listen', 'kind'], ['wish', 'sluttin', 'w', 'waahh'], ['boredd', 'work', 'tomorrow', 'sunday', 'hate', 'clark'], ['realli', 'realli', 'hate', 'biolog'], ['hug'], ['aww', 'wait', 'hope', 'not', 'rain'], ['miss', 'use'], ['hope', 'feel', 'better', 'soon'], ['not', 'get', 'today', 'sad'], ['latharg', 'definit', 'need', 'today', 'rest', 'sad', 'bout', 'havin', 'call', 'mental', 'need'], ['yahyan', 'iaan', 'joke'], ['oh', 'man', 'feel', 'sick', 'might', 'contract', 'cold', 'mayb', 'kid', 'slobber', 'thursday'], ['tire', 'walk', 'kilometr', 'today'], ['neat', 'hear', 'kiddshow', 'today', 'wish'], ['wish', 'could', 'call', 'live', 'uk', 'not', 'cash', 'call'], ['fantast', 'open', 'flower', 'drummer', 'asian', 'cast', 'crew'], ['unfortun', 'noy', 'life', 'suck', 'year'], ['omg', 'guy', 'internet', 'whole', 'day', 'still', 'not', 'work', 'tri', 'fix'], ['notic', 'ridicul'], ['kid', 'ugh', 'one', 'thing', 'know', 'sure', 'not', 'show', 'properti', 'weekend'], ['truli', 'aw'], ['sorri', 'hear'], ['sad', 'top', 'hord', 'guild', 'like', 'disband'], ['love', 'plan', 'cancel', 'night', 'anoth', 'night', 'home', 'alon'], ['man', 'daddi', 'left', 'work', 'never', 'see', 'lot', 'miss', 'daddi'], ['inabl', 'manag', 'money', 'tough', 'job', 'market', 'get', 'behind', 'bill', 'save', 'bad'], ['want', 'ice', 'cream', 'expens'], ['wonder', 'effect', 'street', 'preacher'], ['feel', 'hope', 'smooth', 'flight', 'safe', 'mucho', 'amor', 'boston'], ['followfriday', 'follow', 'peopl', 'interest', 'not', 'tweet', 'much', 'though'], ['not', 'look', 'forward', 'hurrican', 'season', 'day'], ['fun', 'well', 'hope', 'not', 'much', 'go'], ['watch', 'quot', 'sicko', 'quot', 'utter', 'digust', 'countri'], ['jess', 'invit', 'not', 'feel', 'realli', 'unlov', 'aj', 'right', 'hahaha'], ['think', 'good', 'stood'], ['lame'], ['lmao', 'man', 'bum', 'stop', 'braid'], ['prob', 'skittl', 'alway', 'go', 'back', 'true', 'sweeti', 'not', 'play', 'lol', 'yea', 'got', 'heat', 'sri'], ['angri', 'sad', 'happi', 'excit', 'hate', 'mood', 'chang', 'right', 'immens', 'sad'], ['glass', 'cold', 'water', 'medit', 'bit', 'lt'], ['hope', 'earlier', 'septemb', 'along', 'time'], ['go', 'releas', 'anoth', 'album', 'alreadi', 'miss'], ['irrat'], ['hey', 'bow', 'yu', 'comin', 'baxx', 'thaa', 'miss', 'yu', 'hun', 'day'], ['tgif', 'hubbi', 'drag', 'buy', 'car', 'part', 'tire', 'n', 'cranki'], ['sbarro', 'dinner', 'krispi', 'kreme', 'dessert', 'mm', 'not', 'healthi'], ['comput', 'go', 'ie', 'xp', 'ie', 'vista', 'still', 'show'], ['jbobsess', 'xd', 'miss', 'soo', 'much', 'live', 'web', 'cast', 'bookfac', 'everi', 'thursday', 'xd'], ['hard', 'keep', 'everyth', 'whole', 'coldplay', 'twitter', 'facebook', 'not', 'talk', 'real', 'life', 'imposs'], ['plus', 'go', 'clash', 'ugli', 'betti', 'channel', 'show', 'season', 'next', 'month', 'well', 'grr'], ['aww', 'let', 'would', 'better', 'next', 'xd'], ['oi', 'love'], ['not', 'go', 'wknd', 'sorri', 'took', 'forev', 'respond', 'realiz', 'twitter', 'not', 'txting', 'updat'], ['not', 'go', 'movi', 'got', 'ground'], ['go', 'beamer', 'rest', 'high', 'school', 'sad', 'prn', 'journal'], ['consid', 'nurs', 'younger', 'realli', 'not', 'think', 'could', 'cope', 'babi', 'die'], ['homework', 'borri'], ['msn', 'crash', 'way', 'much', 'hmph'], ['back', 'kind', 'mess', 'strudel', 'go', 'live', 'anoth', 'town', 'move', 'go', 'miss', 'littl', 'runt'], ['back', 'miami', 'miss', 'south', 'beach'], ['friday', 'night', 'gone', 'quick', 'bottl', 'gone', 'tomorrow', 'come', 'everton'], ['freakin', 'hawt', 'guy', 'eat', 'dinner', 'father'], ['throat', 'scratchi'], ['batteri', 'low', 'boo', 'palm', 'spring', 'ca'], ['hot', 'texa', 'ac', 'upstair', 'broken', 'realli', 'hot', 'hous'], ['miss', 'wbc', 'counterprotest', 'probabl', 'go', 'waterfir', 'ben', 'yay'], ['ahh', 'know', 'realli', 'suck', 'sprain', 'toe', 'ouch'], ['better', 'macbook', 'keyboard', 'yesterday', 'spill', 'whole', 'cup', 'hot', 'chocol'], ['not', 'even', 'call', 'belgium', 'suck'], ['miss', 'husband'], ['born', 'rais', 'nyc', 'live', 'texa', 'past', 'year', 'still', 'miss', 'ny'], ['confus'], ['illeg', 'date'], ['graduat', 'done', 'littl', 'sad', 'anyon', 'want', 'hang'], ['hate', 'thunder', 'lightn'], ['life', 'bore', 'without'], ['not', 'seen', 'yet', 'come', 'dvd', 'hehe', 'haha'], ['poor', 'dead', 'josh', 'pleas', 'leav', 'messag', 'condol', 'boy', 'rip'], ['scare', 'not', 'mad', 'not', 'jip', 'world', 'presenc'], ['hate', 'rain', 'peopl'], ['gah', 'gregg', 'got', 'hot', 'talent', 'vote', 'dammit'], ['j', 'ross', 'not', 'leav', 'killer', 'still', 'sing', 'run', 'titl', 'edit', 'music', 'happi', 'not'], ['would', 'afraid', 'got', 'two', 'left', 'feet'], ['beg', 'mum', 'lt', 'get', 'attic', 'not', 'let', 'waa', 'yes', 'spoilt', 'hehe'], ['wish', 'could', 'realli', 'love', 'around', 'ill', 'see', 'tri', 'use', 'nation', 'champ', 'pull', 'lol'], ['exhaust', 'forc', 'attend'], ['test', 'discoveri', 'miss'], ['aw', 'torn', 'ace', 'heart', 'hunchback'], ['love', 'love', 'teas', 'babi', 'end', 'boo', 'still', 'love', 'though'], ['loner', 'haha', 'suckss'], ['wish', 'could', 'teach', 'dog', 'play', 'xbox', 'thumb'], ['great', 'great', 'cookoutofthecenturi', 'wife', 'tummi', 'hurt', 'great'], ['bike', 'put', 'known', 'argh', 'total', 'bummer'], ['disappoint'], ['good', 'mate', 'sad', 'could', 'not', 'get', 'piss', 'tonight', 'fuck', 'drive', 'bad', 'time'], ['yep', 'back', 'morn', 'nfg', 'fab', 'last', 'night', 'not', 'go', 'tomorrow', 'get', 'ms', 'ticket', 'soon', 'away'], ['forev', 'ethan', 'could', 'not'], ['one', 'bad', 'today', 'sinc', 'neck', 'surgeri', 'month'], ['need', 'write', 'realli', 'bad', 'someon', 'go', 'get', 'diari', 'flat'], ['poor', 'kella', 'med', 'ear', 'infect', 'lost', 'food', 'twice', 'doc'], ['hate', 'differ', 'referenc', 'assembl', 'fnh', 'goe', 'castl', 'caliburn', 'not', 'mention', 'dynamicproxi', 'nh'], ['realli', 'sad', 'miss', 'critic', 'mass'], ['watch', 'film', 'recov', 'oper'], ['smackdown', 'lot', 'bore', 'without', 'maria'], ['miss', 'not', 'say', 'quot', 'damn', 'quot', 'lol'], ['tire', 'amp', 'miss', 'dione', 'alreadi'], ['head', 'see', 'friend', 'new', 'babi', 'gave', 'trip', 'lake', 'danc', 'class', 'good', 'mama'], ['chillen', 'gmas', 'soo', 'humid', 'outsid'], ['not', 'get', 'load'], ['thunder', 'reallyr', 'loud', 'work', 'littl', 'boy', 'start', 'cri', 'want', 'cri', 'hate', 'storm', 'wah'], ['back', 'work', 'tomorrow', 'whose', 'idea', 'go', 'back', 'saturday', 'oh', 'wait', 'would', 'mine', 'fail'], ['made', 'not', 'bed', 'much', 'room', 'made', 'outta', 'space', 'sure', 'lol', 'know', 'pathet'], ['anyon', 'els', 'problem', 'follow', 'unfollow', 'peep', 'gone', 'week'], ['lol', 'sed', 'want', 'not', 'ach', 'dress', 'reason', 'please', 'bore', 'lol'], ['thank', 'alot', 'stuck', 'work'], ['love', 'goe', 'kanoa', 'sorri', 'loss', 'dear'], ['much', 'blip', 'immun', 'system', 'not', 'yet', 'newborn', 'give', 'month', 'noth'], ['wow', 'still', 'void', 'whre', 'thoma', 'left', 'heartach', 'never', 'go', 'go', 'away'], ['wow', 'not', 'free', 'wifi', 'amp', 'amp', 'pay', 'park', 'reducul'], ['love', 'puppi'], ['whaat', 'oh', 'not', 'know'], ['come', 'not', 'seem', 'excit', 'play', 'dc'], ['not', 'upload', 'pictur', 'alreadi', 'hate', 'twitter'], ['bbq', 'great', 'relax', 'around', 'hous', 'not', 'want', 'leav', 'citi', 'tomorrow', 'got', 'clean', 'hous', 'get', 'back'], ['not', 'get', 'one', 'fine', 'say', 'text', 'way', 'meaning', 'twitter'], ['cindi', 'babi', 'last', 'friday', 'togeth', 'dr', 'hope'], ['sad', 'malta', 'heard'], ['wish', 'call', 'blah', 'use', 'easi', 'move', 'wtf', 'happen'], ['realli', 'not', 'mind', 'much', 'sittin', 'standstil', 'listenin', 'music', 'twttrg', 'gas', 'gaug', 'not', 'lookin', 'healthi'], ['think', 'tonight', 'plan', 'not', 'go', 'happen', 'not', 'surpris'], ['fuck', 'song', 'fill', 'ipod', 'suppos', 'hold'], ['sick', 'feel', 'like', 'jello', 'not', 'talk', 'deliri'], ['head', 'work', 'n', 'freez'], ['miss', 'argh'], ['wish', 'anywher'], ['not', 'let', 'watch', 'sinc', 'state', 'boo'], ['true', 'unfortun', 'lead', 'movi', 'not', 'die', 'high', 'note', 'friday', 'model'], ['not', 'want', 'work', 'tomorrow'], ['next', 'week', 'exam', 'wise', 'aw', 'exam', 'not', 'see', 'adequ', 'revis', 'care', 'least'], ['sunburnt', 'horribl'], ['move', 'noth', 'access', 'camera', 'broken', 'kitchen', 'stuff', 'box', 'internet', 'make', 'hard', 'cook', 'blog', 'get', 'brooklyn'], ['yeah', 'late', 'lol'], ['get', 'readi', 'graduat', 'parti', 'id', 'much', 'rather', 'hello', 'marque', 'dane', 'cook'], ['earli', 'ish', 'night', 'tonight', 'overtim', 'work', 'tomorrow', 'boo', 'work', 'saturday'], ['aww', 'miss', 'see', 'tonight'], ['realli', 'miss', 'hockey', 'alreadi', 'night', 'dtn', 'napervill', 'not', 'wait', 'day', 'tomorrow', 'work', 'sunday'], ['homework', 'bound', 'whole', 'weekend', 'not', 'fun'], ['roxi', 'not', 'feel', 'well'], ['woke', 'five', 'hour', 'nap', 'still', 'headach', 'medic', 'time'], ['tri', 'fix', 'weird', 'queri'], ['go', 'siick', 'mad', 'jason', 'said', 'recov', 'fulli', 'go', 'paintballin', 'play'], ['soo', 'fuck', 'sick', 'wade', 'mood', 'swing', 'uhh', 'hate', 'asshol', 'ahh'], ['everyth', 'demi', 'lovato'], ['huge', 'headach', 'not', 'asprin', 'work'], ['anoth', 'david', 'hugh', 'list', 'hurt', 'ftw'], ['play', 'singstar', 'without', 'fave', 'duetter'], ['not', 'spell'], ['asda', 'readi', 'meal', 'not', 'think', 'ever'], ['back', 'see', 'miss', 'truck', 'fish'], ['glad', 'ts', 'brought', 'sorri', 'foot', 'go', 'relax', 'wit', 'heel'], ['ohww', 'whatev', 'excit', 'anyway'], ['realli', 'want', 'go', 'milwauke', 'sis', 'not', 'want', 'well', 'not', 'tell'], ['day', 'ff', 'worst'], ['got', 'overexcit', 'pizza', 'burn', 'mouth'], ['anoth', 'taken', 'met', 'see', 'real', 'sleep', 'disord'], ['harley', 'pass', 'away', 'decemb'], ['appar', 'not', 'tri', 'site', 'though', 'mayb', 'get', 'better', 'result'], ['learn', 'today', 'never', 'post', 'anyth', 'sold', 'ebay', 'use', 'royal', 'mail', 'lose', 'refund', 'compo', 'nowher', 'near', 'bad'], ['make', 'feel', 'physic', 'sick', 'read', 'let', 'right', 'one', 'horrifi', 'cat', 'violenc', 'horribl'], ['young', 'peopl', 'attract', 'troubl', 'make', 'sad', 'lt', 'kmv'], ['wish', 'work', 'done', 'soon', 'lt'], ['cabl', 'signal', 'mess', 'miss', 'ghostwhisper', 'news', 'hurt', 'toe', 'cold', 'like', 'hot', 'weather'], ['bore', 'work'], ['love', 'not', 'call', 'live', 'argentina', 'realli', 'realli', 'love', 'mitchel'], ['not', 'get'], ['new', 'guitar', 'hero', 'metallica', 'guitar', 'alreadi', 'broken', 'fail'], ['yeah', 'jus', 'glad', 'thunder', 'stop'], ['everi', 'time', 'pay', 'librari', 'fine', 'get', 'new', 'one', 'bad', 'patron'], ['still', 'pool', 'key', 'wth', 'even', 'hot', 'today'], ['lay', 'bed', 'til', 'workk', 'oh', 'life', 'definit', 'pinch', 'nerv'], ['umm', 'well', 'go', 'hous', 'club', 'never', 'go', 'north', 'beach', 'idea', 'sorri', 'defunctlesi', 'club'], ['definit', 'need', 'work', 'busi', 'much', 'free', 'food', 'alcohol', 'sure', 'gain', 'pound'], ['librari', 'friggin', 'bore'], ['point', 'wisdom', 'teeth', 'noth', 'grr', 'much', 'pain', 'look', 'like', 'chipmunk', 'fml'], ['know', 'mad', 'us'], ['everyth', 'cool', 'wish', 'boy', 'abl', 'talk'], ['thank', 'assign', 'work', 'today'], ['omg', 'anyon', 'see', 'wee', 'girl', 'bgt', 'xx', 'sucha', 'shame'], ['live', 'alki', 'without', 'park', 'blow', 'amp', 'park', 'wkds', 'worst', 'feel', 'like', 'hostag'], ['think', 'twitter', 'hate', 'come', 'photo', 'took', 'age', 'day', 'chang', 'pic', 'especi', 'time'], ['drove', 'mom', 'brynn', 'mom', 'said', 'worst', 'driver'], ['serious', 'mum', 'make', 'eat', 'yeah', 'weird', 'eat', 'habit', 'not', 'eat', 'day', 'realli'], ['kill', 'furbi'], ['go', 'get', 'got', 'bitten'], ['get', 'readi', 'start', 'work', 'week', 'not', 'tgif', 'monday'], ['never', 'commut', 'rain', 'peopl', 'get', 'much', 'meaner'], ['possibl', 'yes'], ['went', 'find', 'uniti', 'girl', 'bebo', 'not', 'find', 'fail', 'bebo', 'stalk'], ['final', 'nice', 'hour', 'leav'], ['one', 'ever', 'gave', 'info', 'sad'], ['hug', 'oh', 'gosh', 'sorri'], ['found', 'one', 'cowork', 'paul', 'actual', 'know', 'talk', 'got', 'laid', 'blow'], ['go', 'miss', 'gir', 'soo', 'super', 'load', 'wish', 'not', 'go', 'week', 'wayi', 'long'], ['went', 'bestbuy', 'today', 'found', 'pretti', 'much', 'ever', 'hp', 'except', 'one', 'want', 'look'], ['aww', 'sorri', 'hun', 'sure', 'not', 'purpos', 'though', 'seem', 'sweet', 'mayb', 'hour', 'thing'], ['sorri', 'bad', 'day', 'look', 'back', 'need', 'give', 'someon', 'knuckl', 'sandwich'], ['world', 'appar', 'involv', 'lot', 'less', 'twitter', 'sorri'], ['sun', 'see', 'ocean', 'almost', 'ran', 'squirrel', 'drive', 'home', 'store', 'foggi', 'r'], ['man', 'not', 'home', 'co', 'host', 'xo', 'blair'], ['got', 'hit', 'car', 'got', 'screw', 'oepn', 'wound', 'broken', 'finger', 'broken', 'toe', 'toe', 'nail', 'f', 'ed'], ['think', 'rain', 'kill', 'phone'], ['aww', 'poor', 'thing', 'hope', 'goe', 'well'], ['need', 'blackberri'], ['miss', 'nate', 'usual', 'tonight'], ['messag', 'could', 'let', 'peopl', 'know', 'boot'], ['would', 'one', 'plese', 'suggest', 'great', 'thriller', 'movi'], ['problem', 'wih', 'love', 'addict', 'pizza', 'dot', 'dot', 'curv', 'gt'], ['not', 'today', 'sad'], ['sad'], ['fml', 'today', 'suck', 'hope', 'danc', 'bring', 'soul', 'pray', 'still', 'hate', 'todayi', 'gt'], ['bore', 'start', 'work', 'weekend', 'soon', 'need', 'get', 'tim', 'coffe', 'make', 'damn', 'night', 'shift'], ['hope', 'feel', 'better', 'sweeti'], ['becom', 'grey', 'hope', 'not', 'one', 'quot', 'shower', 'quot', 'way'], ['want', 'korean', 'bbq', 'badd', 'one', 'come'], ['thing', 'last', 'thing', 'mind', 'clean', 'everyon', 'cake', 'mess'], ['alway', 'come', 'money', 'least', 'rotten', 'law', 'averag'], ['mani', 'attempt', 'not', 'figur', 'put', 'pic', 'avatar', 'tell', 'pic', 'big', 'frustrat'], ['want', 'not', 'call', 'live', 'argentina', 'realli', 'realli', 'love', 'mitchel', 'awesom', 'rock'], ['even', 'bother', 'get', 'new', 'fuck', 'break', 'anyway', 'not', 'float', 'thrown', 'pool'], ['hate', 'funer'], ['excel', 'pic', 'wish', 'long', 'drive', 'tn'], ['oh', 'celebr', 'ding', 'dong', 'age'], ['sadd', 'sancha', 'june', 'fail', 'go', 'chini'], ['aww', 'sorri', 'ot', 'hear', 'least', 'work', 'though'], ['mow', 'hate', 'lawn'], ['saw', 'trailer', 'batman', 'arkham', 'asylum', 'play', 'joker', 'exclus', 'damn', 'hurt'], ['get', 'littl', 'mow', 'grass', 'even', 'fun'], ['oh', 'sorri', 'hear', 'firefox', 'crash'], ['get', 'littl', 'mow', 'grass', 'even', 'fun'], ['realli', 'hope', 'car', 'ill', 'not', 'termin'], ['everi', 'time', 'friday', 'sad', 'not', 'often'], ['not', 'happi'], ['beer', 'excel', 'excus', 'earlier', 'sweat', 'god', 'know', 'much', 'not', 'look', 'forward', 'work', 'tomorrow'], ['class', 'tomorrow', 'tomorrow', 'saturday', 'hate', 'class', 'saturday'], ['k', 'way'], ['whaay', 'first', 'day', 'tomorrow', 'go', 'well'], ['yeeah', 'would', 'lmao', 'dentist', 'not', 'nice', 'espesh', 'decid', 'old', 'goodi', 'bag', 'sticker', 'amp', 'awesom', 'toothpast'], ['suck', 'boo'], ['even', 'tri', 'go', 'sleep', 'miss', 'cold', 'winter', 'night'], ['alway', 'one', 'joykil', 'crowd', 'hater'], ['miss', 'lucki', 'edmontonian'], ['went', 'see', 'quot', 'quot', 'realli', 'good', 'movi', 'pull', 'heart', 'string', 'high', 'recommend'], ['ugh', 'look', 'like', 'rain', 'min'], ['not', 'go', 'moe', 'mexican', 'grill', 'spici'], ['tri', 'find', 'driver', 'microsoft', 'lifecam', 'webcam', 'not', 'find', 'anywher', 'anyon', 'link'], ['ncp', 'longer', 'job', 'placement'], ['play', 'old', 'school', 'playground', 'still', 'except', 'lame', 'ass', 'got', 'rid', 'tire', 'swing'], ['noo', 'not', 'receipt', 'not', 'break', 'heart'], ['thing', 'alway', 'end', 'go', 'bad'], ['feel', 'reealli', 'bad', 'sorri'], ['unfortun', 'not', 'drunk', 'enough', 'lol', 'money', 'get', 'drunk', 'alot', 'though', 'imagin', 'haha'], ['troubl', 'not', 'think', 'help', 'wrist'], ['yeah', 'hate', 'sorri', 'goin', 'thru'], ['quot', 'guy', 'could', 'fun', 'cardboard', 'box', 'quot', 'miss', 'alreadi', 'bro'], ['well', 'left', 'six', 'flag', 'not', 'get', 'ride', 'want', 'bummer', 'mayb', 'next', 'time'], ['sorri', 'hear'], ['two', 'month', 'ago', 'becam', 'irrelev'], ['stuck', 'la', 'love', 'turn', 'road', 'rage', 'lol'], ['noo', 'sue', 'retir'], ['sometim', 'could', 'swear', 'realli', 'insan'], ['fuck', 'leg', 'sun', 'burn'], ['talk', 'kat', 'crappi'], ['right', 'ear', 'block', 'today', 'bit', 'like', 'got', 'water', 'idea', 'clear', 'not', 'like', 'put', 'liquid'], ['sadfac'], ['twitter', 'act', 'weird'], ['need', 'job', 'pay', 'hospit', 'bill', 'sick', 'late'], ['facepalm', 'hope', 'interview', 'choic', 'not', 'forc', 'thing'], ['twitterberri', 'hate'], ['thank', 'r', 'sorri', 'lotr', 'spam'], ['ughh', 'reject', 'mediat', 'program', 'suckss'], ['corona', 'bad', 'crave', 'mexican', 'pastri', 'would', 'go', 'uptown', 'get'], ['water', 'plant', 'home', 'drink', 'delici', 'smoothi', 'morgan', 'jamba', 'explod'], ['noo', 'not', 'go', 'see', 'new', 'nephew'], ['go', 'forgo', 'pub', 'night', 'wife', 'tonight', 'tough', 'week', 'us', 'neither', 'realli', 'plus', 'neighbor', 'die'], ['ask', 'suit', 'head', 'not', 'think', 'look', 'much', 'like', 'whore'], ['sad'], ['hey', 'dude', 'turn', 'flyer', 'poser', 'not', 'nice'], ['hungri'], ['aww', 'suck', 'mayb', 'youtub', 'somewher'], ['got', 'exam', 'centr', 'n', 'said', 'not', 'let', 'becuz', 'sleeveless', 'top', 'cud', 'believ', 'go', 'home'], ['aw', 'not', 'go', 'toronto', 'anymor'], ['brand', 'new', 'play', 'epicent', 'juli', 'ny', 'jess', 'lacey', 'hate'], ['hour', 'work', 'cri', 'not', 'surviv', 'weelcom', 'wonderland', 'sing', 'along'], ['sweati', 'tire', 'lap', 'run', 'go', 'sun', 'run', 'next', 'year', 'matter'], ['sorri', 'hon', 'know', 'feel', 'usual', 'crazi', 'famili', 'gather', 'would', 'probabl', 'hold', 'back', 'like', 'also'], ['not', 'sleep', 'not', 'finish', 'homework', 'damn'], ['peopl', 'id', 'never', 'guess', 'grouchi'], ['want', 'cool'], ['alreadi', 'cri', 'movi', 'start', 'like', 'ago'], ['wtf', 'pic', 'not', 'show'], ['ugh', 'hangov', 'sign', 'get', 'old'], ['know', 'make', 'sad', 'lol'], ['watch', 'big', 'broth', 'big', 'quiz', 'rather', 'tiredd', 'download', 'dvd', 'wait', 'till', 'finish', 'till', 'go', 'bed'], ['not', 'keep'], ['pass', 'wreck', 'car', 'hope', 'everyon', 'got', 'final', 'pick', 'speed'], ['lucki', 'winter', 'come', 'us'], ['thank', 'last', 'minut', 'doc', 'appoint', 'babi', 'girl', 'temp', 'sit', 'doc', 'waitin'], ['still', 'not', 'work', 'not', 'frustrat'], ['well', 'ef', 'iphon', 'nice', 'know'], ['wow', 'almost', 'got', 'involv', 'big', 'fight', 'school', 'ah', 'anyway', 'text', 'go', 'causin', 'hous', 'plus', 'game', 'crazi'], ['wish', 'rain', 'would', 'stop', 'stupid', 'headach', 'would', 'go', 'away'], ['tire', 'tire', 'tire', 'think', 'get', 'sick'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['weather', 'ugli', 'n', 'realli', 'cold'], ['catch', 'last', 'bit', 'later', 'jool', 'last', 'seri', 'sob', 'cri'], ['parent', 'busi', 'make', 'feel', 'like', 'crap', 'realis', 'got', 'wors', 'need', 'see', 'doctor', 'sleep', 'suck'], ['sick', 'week', 'still', 'not', 'feel', 'well', 'not', 'go', 'lena', 'gunna', 'spend', 'time', 'fam'], ['soo', 'gon', 'cheat', 'tell', 'everybodi', 'twitter', 'not', 'know', 'trust', 'anymor'], ['whini', 'right', 'annoy', 'need', 'get', 'rest', 'tonight', 'movi', 'night'], ['pleas', 'read', 'blog', 'not', 'best', 'day'], ['want', 'see', 'show'], ['si', 'pero', 'parec', 'que', 'las', 'persona', 'de', 'facebook', 'estan', 'de', 'acuerdo', 'probabl', 'wrong', 'tri'], ['yeah', 'amp', 'goe', 'wrong', 'worst', 'feel', 'ever'], ['headach', 'boo'], ['nice', 'cake', 'not', 'like', 'haha', 'soo', 'gayi', 'though'], ['head', 'hurt', 'beyond', 'much'], ['sorri', 'feel', 'way'], ['go', 'sleepi', 'feel', 'poor', 'piss', 'night', 'night', 'tweepl', 'xx'], ['hospit', 'week', 'half', 'pretti', 'much', 'virg', 'die'], ['ignor', 'get', 'sum', 'rid', 'headach'], ['sorri', 'feel', 'way'], ['omg', 'much', 'pain', 'ouchi'], ['chili', 'chees', 'fri', 'bad', 'idea', 'lunch'], ['yaeh', 'thank', 'god', 'suekd', 'kick', 'church'], ['home', 'alon', 'hous', 'go', 'scare', 'x'], ['okay', 'need', 'hit', 'sack', 'got', 'wake', 'like', 'hour', 'goodnight', 'everyon'], ['broke', 'favorit', 'necklac', 'superglu'], ['quit', 'afraid', 'string', 'sinc', 'not', 'wire', 'use'], ['not', 'mean'], ['k', 'finish', 'last', 'client', 'night', 'go', 'home', 'alon', 'ok', 'need', 'alon', 'must', 'find', 'inner', 'peac'], ['sorri', 'guy', 'wavv', 'show', 'cancel', 'miss', 'flight'], ['aw', 'wrong'], ['not', 'feel', 'good'], ['hmm', 'okayi', 'realli', 'sorri', 'hear', 'thikn', 'would', 'done'], ['waa', 'kick', 'us', 'bank', 'get', 'monday', 'omg', 'chilito'], ['oh', 'total', 'forgot', 'play', 'today'], ['wtf', 'crap', 'min', 'mark', 'cost', 'grand'], ['not', 'upload', 'pictur', 'everyth', 'big'], ['uh', 'final', 'home', 'complet', 'wipe'], ['not', 'mix', 'match', 'dumb', 'drive'], ['bad', 'work'], ['want', 'cri', 'thought', 'nba', 'season', 'almost', 'next', 'year', 'miami'], ['actual', 'quit', 'good', 'bed', 'long', 'day', 'tomorrow', 'june', 'come', 'soon', 'not', 'soon'], ['hey', 'tweeti', 'aunti', 'jus', 'got', 'n', 'bad', 'car', 'keep', 'prayer'], ['poor', 'bella', 'er', 'first', 'second', 'ear', 'infect', 'sinc', 'ear', 'infect', 'scream', 'blood', 'curdl'], ['dota', 'wast', 'hour', 'play', 'dota'], ['aaww', 'soo', 'tire', 'today', 'not', 'feel', 'good', 'not', 'want', 'go', 'work', 'wah', 'yeah', 'goin', 'work', 'min', 'til', 'close'], ['miss', 'alot', 'one', 'day'], ['meet', 'karen', 'boy', 'drink', 'dock', 'want', 'drink', 'though', 'fuck', 'like', 'andrea', 'said', 'haha'], ['flip', 'go', 'doc'], ['ahh', 'dang', 'cours', 'better', 'back', 'fast'], ['omg', 'toni', 'hawk', 'motion', 'nintendo', 'ds', 'suck', 'ass'], ['messag', 'teas', 'not', 'fair'], ['scare', 'wait', 'call'], ['kind', 'piss', 'boy', 'like', 'girl', 'go', 'kentucki', 'kingdom', 'date', 'alreadi', 'show'], ['liz', 'left', 'aww', 'good', 'see'], ['look', 'like', 'got', 'cloudi', 'outsid', 'noth', 'tonight', 'boo', 'friday'], ['ahh', 'fuck', 'none', 'friend', 'want', 'see', 'not', 'want', 'chill', 'tonight'], ['start', 'look', 'like', 'websit', 'may', 'not', 'happen', 'form'], ['wrong', 'babe', 'x'], ['think', 'food', 'ate', 'made', 'sick', 'feel', 'good'], ['ahh', 'got', 'stitch', 'serious', 'not', 'wait', 'go', 'beach', 'summer', 'hurri'], ['not', 'like', 'see', 'best', 'friend', 'cri', 'break', 'heart', 'not', 'know', 'say'], ['not', 'cri', 'long', 'time'], ['realli', 'sleepi', 'want', 'go', 'upstair', 'mess', 'know', 'go', 'clean', 'noo'], ['realli', 'scari', 'nois', 'come', 'outsid'], ['ok', 'final', 'start', 'hit', 'draw', 'short', 'game', 'gone', 'crap'], ['slowest', 'train', 'ever', 'stop', 'everywher', 'miss', 'quick', 'train', 'minut'], ['stop', 'mean', 'hurt', 'feel'], ['price', 'drop', 'would', 'nice', 'want', 'anoth', 'one', 'player'], ['not', 'find', 'camera'], ['omg', 'wow', 'hope', 'everyth', 'ok'], ['horribl', 'move', 'houston', 'apart', 'await', 'work', 'start', 'monday', 'real'], ['not', 'rare', 'dye', 'red', 'first', 'aaggess', 'hair', 'hate'], ['woohoo', 'noth', 'say', 'hot', 'date', 'night', 'squeege', 'lol', 'watch', 'dora', 'noggin', 'girl', 'hub', 'work'], ['home', 'phone', 'die', 'thou'], ['not', 'work'], ['got', 'drop', 'froma', 'coupla', 'peopl', 'follow', 'damn', 'detroit', 'fan'], ['heard', 'amp', 'away', 'miss', 'look', 'forward', 'tweet', 'return'], ['day', 'boredom', 'stuck', 'head'], ['leav', 'mrs', 'cuz', 'go', 'work', 'realli', 'not', 'want'], ['midnight', 'weather', 'damn', 'bore'], ['sick', 'ridicul'], ['mad', 'cuz', 'not', 'get', 'pictur', 'work'], ['miss', 'need', 'talk', 'keep', 'screw', 'love'], ['hell', 'yea', 'hot', 'miss', 'cali'], ['miss', 'senior', 'alreadi'], ['desper', 'need', 'tweet', 'cheer'], ['lol', 'went', 'okay', 'far', 'tell', 'test', 'today', 'geo', 'zone', 'got', 'like'], ['free', 'ice', 'cream', 'though'], ['watch', 'nhl', 'playoff', 'tomorrow', 'night', 'anyon', 'interest', 'know', 'none'], ['twitter', 'not', 'upload', 'icon', 'pictur', 'hate', 'eff', 'upload', 'later'], ['peopl', 'mustach', 'get', 'super', 'power', 'mustach', 'fair'], ['sunburn', 'realli', 'bad', 'regret', 'sit', 'sun', 'without', 'suncream'], ['need', 'coffe', 'get', 'serious', 'withdraw', 'symptom'], ['poor', 'dead', 'josh', 'pleas', 'leav', 'messag', 'condol', 'boy', 'rip', 'sad'], ['like', 'matter', 'much', 'fun', 'need', 'hug', 'bowl', 'ramen', 'comfi', 'blanket', 'soon', 'get', 'home'], ['mm', 'lauren', 'conrad', 'eep', 'go', 'miss', 'hill'], ['appropri', 'tweet', 'everyth', 'ok', 'last', 'day', 'tweet', 'not', 'paint', 'good', 'pictur'], ['today', 'not', 'day', 'not', 'seem', 'feel', 'better', 'not', 'eat', 'hungri', 'eat', 'feel', 'like', 'go', 'sick', 'blah'], ['oh', 'look', 'bore', 'even', 'bore', 'exam', 'saturday'], ['sick', 'flu', 'like', 'thing'], ['sad', 'fit', 'center', 'reopen', 'not', 'zumba', 'class', 'anymor', 'found', 'today', 'last', 'class', 'closur'], ['not', 'get', 'see', 'boy', 'sad'], ['tri', 'say', 'seem', 'like', 'peopl', 'facebook', 'not', 'agre', 'guess', 'fail'], ['hear', 'time', 'earlier', 'mean'], ['ughh', 'leg', 'still', 'cramp', 'panic', 'attack', 'outsid', 'ulu', 'morn', 'bloodi', 'hurt'], ['cafe', 'manag', 'end', 'month', 'noth', 'number', 'arti', 'littl', 'head', 'hurt', 'find', 'discrep'], ['ohh', 'line'], ['town', 'next', 'week', 'parti', 'get', 'back', 'happi', 'earli', 'birthday'], ['camera', 'douche', 'stop', 'work'], ['tire', 'fuck', 'piss', 'rain', 'miss', 'summer'], ['boo', 'bet', 'nice', 'wallet'], ['ty', 'long', 'tire', 'day', 'fill', 'expens', 'plumber', 'work', 'need', 'calgon', 'hope', 'amp', 'awesom', 'weekend'], ['yeah', 'know', 'fuck', 'annoy', 'good', 'promo', 'lost', 'contact', 'busi'], ['get', 'upset', 'listen', 'say', 'want', 'speak', 'mitchel', 'darn', 'phone', 'got', 'money', 'x'], ['bf', 'go', 'dad', 'week', 'end', 'full', 'day', 'bordom'], ['lol', 'bad', 'taken'], ['wreck', 'hungri', 'amp', 'get', 'earli', 'not', 'perfect', 'fri', 'night', 'lol', 'night'], ['problem'], ['miss', 'closest', 'freind', 'shirley', 'went', 'franc', 'summer', 'miss', 'shirley'], ['not', 'want', 'go', 'sit', 'heat', 'watch', 'high', 'school', 'graduat'], ['wish', 'could', 'spend', 'last', 'weekend', 'high', 'school', 'student', 'burbank', 'everyon', 'not', 'fli', 'dc'], ['got', 'home', 'hospit', 'anoth', 'clot', 'leg'], ['faill', 'whenev', 'free'], ['fact', 'room', 'hot', 'make', 'feel', 'sick'], ['yeah', 'work', 'busi', 'day', 'tire', 'hungri'], ['wish', 'brought', 'warmer', 'cloth', 'chilli', 'negat', 'thing', 'trip', 'amp', 'sun', 'connect', 'chilli'], ['piss'], ['listen', 'sweet', 'talk', 'cute', 'aim', 'consid', 'take', 'gameboy', 'color', 'miss', 'chiptun'], ['thank', 'none', 'close'], ['home', 'drink', 'alon'], ['jobo', 'tire', 'get', 'work'], ['dang', 'need', 'bed', 'bay', 'area', 'monday', 'tuesday', 'night', 'anyon', 'abl', 'help'], ['not', 'like', 'onlin', 'livebox', 'right', 'internet', 'dead'], ['bed', 'rest', 'weekend', 'next', 'week', 'neomonia', 'suck'], ['sigh', 'stay', 'late', 'role', 'assess', 'tire', 'eye', 'r', 'sting', 'amp', 'head', 'hurt', 'amp', 'still', 'need', 'word'], ['aau', 'thank', 'gi', 'realli', 'realli', 'love', 'realli', 'great', 'forgivem', 'leav', 'sometim'], ['sit', 'home', 'bore'], ['kimberle', 'hatch', 'miss'], ['unpleas', 'talk', 'look'], ['ouch', 'achi', 'sorri', 'not', 'mean', 'caus', 'pain'], ['note', 'twoloer', 'neva', 'stay', 'candlelight', 'suit', 'shower', 'slow', 'toilet', 'suck', 'bed', 'tini'], ['second', 'hit', 'repli', 'tweet', 'ask', 'stop', 'play', 'music', 'sad', 'someon', 'sing', 'key', 'work'], ['jealousi', 'not', 'get', 'life', 'ohh', 'myy'], ['net', 'die', 'yeah', 'sad'], ['hubbi', 'need', 'vacat', 'thank', 'god', 'leav', 'myrtl', 'beach', 'week'], ['tri', 'fix', 'realli', 'need', 'stop', 'cut'], ['ye', 'not', 'fare', 'x'], ['gut', 'not', 'play', 'kos', 'juli', 'jule'], ['someon', 'ignor', 'amp', 'mean'], ['love', 'wait', 'not'], ['not', 'even', 'tell', 'fuck', 'done', 'profession', 'fuckin', 'ass'], ['oop', 'meant', 'snowdayss'], ['forgot', 'word', 'start', 'cri', 'stop', 'sing', 'carri', 'cri', 'stop'], ['tummi', 'hurt'], ['went', 'galveston', 'want', 'go', 'back'], ['still', 'class', 'ouch'], ['ohh', 'ouch'], ['wrong', 'debbi'], ['disappoint', 'learn', 'newark', 'oh', 'cancel', 'juli', 'firework', 'due', 'economi'], ['hey', 'guy', 'sun', 'make', 'day', 'gloomi'], ['damnit', 'sorri', 'hear', 'dude'], ['call', 'know', 'stupid', 'ass', 'peopl'], ['go', 'panahra', 'dinner', 'miss', 'guy'], ['think', 'trick', 'ankl', 'cardio', 'yesterday', 'get', 'old'], ['not', 'understand', 'twitter'], ['yeah', 'silli', 'mistak', 'end', 'long', 'day', 'etc', 'etc', 'brand', 'new', 'plier'], ['drive', 'home', 'tire', 'bad', 'day'], ['hmm', 'mayb', 'time', 'realli', 'react', 'worst'], ['aw', 'gut'], ['hurt', 'breath'], ['pin', 'multi', 'core', 'cabl', 'goe', 'bad', 'servic'], ['belli', 'ach'], ['miss', 'ya', 'boyfriend', 'go', 'see', 'ya', 'br', 'tt', 'ny'], ['like', 'drew', 'said', 'quot', 'give', 'tc', 'chanc', 'quot', 'miss', 'thoma', 'move', 'watch'], ['think', 'lot', 'revis', 'tomorrow', 'woo', 'hope', 'sunni', 'one'], ['ohh', 'watch', 'best', 'friend', 'wed', 'sad'], ['not', 'need', 'hug', 'anymor'], ['imm', 'tire', 'callin', 'amp', 'amp', 'hearin', 'convo', 'wanaa', 'call', 'himm'], ['begin', 'think', 'sun', 'blcok', 'haox'], ['nope', 'not', 'yet', 'within', 'work', 'day', 'thursday', 'week', 'wednesday', 'hope'], ['everyon', 'seem', 'leav', 'weekend', 'bed'], ['miss', 'morn', 'work', 'bench', 'press', 'back', 'jakarta', 'goodluck', 'diga', 'test', 'easi', 'peasi', 'heheh'], ['everyon', 'eastcoast', 'rain', 'hate', 'us', 'let', 'us', 'fli', 'cali', 'lol'], ['yeah', 'know', 'stupid', 'job', 'mean', 'come'], ['tri', 'reason', 'not', 'listen'], ['last', 'night'], ['would', 'love', 'see', 'sun', 'rain', 'day'], ['go', 'much', 'bamboo', 'would', 'like', 'attempt', 'structur', 'sentenc', 'make', 'sens', 'fail', 'english', 'other', 'pass'], ['chandeli', 'serious', 'not', 'know', 'get', 'door', 'without', 'send', 'crash', 'step'], ['bad', 'time', 'everyon', 'whywhywhi', 'write', 'essay', 'fair'], ['ugh', 'sittin', 'work', 'wait', 'carpet', 'clean', 'suppos'], ['also', 'paracetamol', 'hard', 'swallow', 'even', 'long', 'one', 'snap', 'half', 'ow'], ['attempt', 'sync', 'facebook', 'twitter', 'seem', 'fail'], ['ahh', 'still', 'not', 'follow', 'think', 'forgot'], ['want', 'go', 'vintag', 'paper', 'show', 'one', 'accompani'], ['patio', 'weather', 'kirkland', 'also', 'weather', 'except', 'miss', 'boat', 'part'], ['today', 'last', 'day', 'high', 'school', 'end', 'go', 'home', 'sick', 'stupid', 'dead', 'rat'], ['make', 'peopl', 'unhappi', 'dun', 'like', 'unhappi'], ['wish', 'call', 'not', 'malta'], ['not', 'feel', 'good', 'not', 'miss', 'work', 'tomorrow'], ['not', 'realli', 'sure', 'need', 'deposit', 'save', 'money'], ['would', 'come', 'sick', 'inflam', 'vocal', 'cord'], ['awesom', 'pictur', 'happi', 'pint', 'not', 'send'], ['ouch', 'burnt', 'arm', 'grill'], ['wish', 'class', 'last', 'year'], ['william', 'shatner', 'version', 'rocket', 'man', 'head', 'day', 'fuck', 'distract'], ['hate', 'yell', 'sworn'], ['cross', 'ocean', 'citi', 'sad'], ['long', 'get', 'eyebrow', 'wax'], ['miss', 'yoou', 'poia'], ['wowzer', 'windi', 'not', 'good', 'allergi'], ['degre', 'crappi'], ['well', 'good', 'job', 'two', 'cousin', 'graduat', 'good', 'luck', 'life', 'lt', 'never', 'wear', 'pajama', 'pant', 'school', 'gt'], ['best', 'check', 'not', 'realli', 'see', 'anyth'], ['bore', 'fix', 'internet', 'dad', 'bore', 'death'], ['ohh', 'yeahh', 'prob', 'go', 'loner', 'start', 'thank', 'person', 'go', 'go', 'bitch'], ['outta', 'cours', 'til', 'monday', 'kind', 'bum', 'genuin', 'sick', 'nuthin', 'gt'], ['phone', 'die', 'die'], ['still', 'class', 'loader', 'even', 'custom', 'assembl', 'loader'], ['miss', 'yoou', 'poia'], ['hope', 'realli', 'need', 'one', 'see', 'unfortun', 'drama', 'alway', 'find'], ['sickk', 'need'], ['awesom', 'not', 'believ', 'poster', 'alreadi', 'not', 'seen', 'one', 'yet'], ['sound', 'like', 'worst', 'lurgi', 'ever', 'one', 'not', 'go', 'away', 'readi', 'action', 'yet'], ['know', 'stormi', 'outsid', 'hair', 'look', 'cute', 'today', 'hahah'], ['wat', 'nice', 'day', 'rachel', 'decid', 'walk', 'work', 'walk', 'back', 'warm', 'insid', 'though'], ['throat', 'hurt', 'today', 'blahh'], ['l', 'day', 'matt', 'fun', 'weekend'], ['glad', 'home', 'wish', 'could', 'make', 'feel', 'better'], ['crisi', 'avert', 'phew', 'differ', 'note', 'guy', 'make', 'proud', 'tear', 'wish', 'could', 'join'], ['ice', 'cream', 'crazi', 'mocha', 'ss', 'mean', 'espresso', 'milkshak'], ['hey', 'thought', 'ud', 'like', 'stress', 'realli', 'not', 'know', 'x'], ['fabul', 'not', 'get', 'pic', 'gmail', 'act', 'fool', 'sometim', 'dm'], ['noo', 'real', 'mushroom', 'neighbor', 'uproot'], ['not', 'wait', 'see', 'pls', 'come', 'back', 'iowa', 'not', 'theatr'], ['not', 'go', 'bed', 'yet'], ['notthebest', 'oh', 'right', 'sad'], ['puzzl', 'peopl', 'mood', 'swing', 'make', 'somewhat', 'sad', 'not', 'pinpoint', 'feel'], ['pandora', 'block', 'work', 'bum'], ['fall', 'nick'], ['bung', 'hate', 'cold'], ['nto', 'good'], ['unhook', 'twitter', 'facebook', 'facebook', 'croni', 'complain'], ['oh', 'hey', 'look', 'north', 'korea', 'go', 'kill', 'us', 'least', 'us'], ['either', 'inern', 'fuck', 'mind', 'pretti', 'sure', 'internet'], ['never', 'happen', 'orang', 'blinki', 'light', 'think', 'broke', 'batteri'], ['everyth', 'go', 'wrong', 'quot', 'happi', 'day', 'quot'], ['go', 'bed', 'not', 'take', 'longeerr', 'maan'], ['omg', 'haha', 'half', 'hour', 'late', 'work', 'whoop', 'hahaha', 'workin', 'sat', 'mornin'], ['unfortun'], ['belay', 'swimsuit', 'hot', 'tub', 'not', 'readi', 'weekend', 'sad'], ['bah', 'still', 'work', 'lol', 'feet', 'hurt', 'nose', 'not', 'stop', 'run'], ['not', 'evn', 'talk', 'huge', 'mistak', 'shoulda', 'listen', 'kno', 'disappoint'], ['feel', 'useless', 'not', 'know', 'right', 'bore'], ['ha', 'think', 'realli', 'lost', 'time', 'get', 'readi', 'work'], ['not', 'well', 'il', 'tri', 'night'], ['twitter', 'lame', 'not', 'post', 'twitpic', 'gucci'], ['sickk', 'get', 'hous', 'need', 'get', 'activ', 'go', 'celina', 'havin', 'parti', 'hit', 'uhpp'], ['ahh', 'suck'], ['yeah', 'made', 'great', 'nois', 'trip', 'hous', 'circuit', 'breaker', 'good', 'time', 'worth', 'part'], ['kenni', 'get', 'da', 'hair', 'bad', 'not', 'chillin', 'todat', 'kind', 'sad'], ['get', 'readi', 'see', 'cousin', 'graduat', 'go', 'miss'], ['jealous', 'not', 'know', 'abl', 'see', 'conan'], ['yes', 'not', 'follow'], ['jon', 'made', 'one', 'greatest', 'dinner', 'ever', 'roast', 'pork', 'tenderloin', 'bed', 'wild', 'rice', 'bed', 'mix', 'green', 'amp', 'yummi', 'sauc', 'wine'], ['trulli', 'aw', 'day', 'shitti'], ['bore'], ['get', 'readi', 'leav', 'girl', 'scout', 'not', 'feel', 'like'], ['arm', 'core', 'diet', 'would', 'eat', 'guess', 'wait', 'dinner', 'readi'], ['need', 'moni', 'school', 'expens'], ['miss', 'gone', 'whoolle', 'weekend', 'boo', 'hoo'], ['sick', 'fight', 'look', 'like', 'burlesqu'], ['gut', 'miss', 'one', 'night', 'tri', 'leav', 'earli', 'lol', 'friend', 'visitin', 'tire', 'haha'], ['followfriday', 'cuz', 'never', 'ad', 'anyon', 'followfriday', 'either', 'amp', 'cuz', 'got', 'cool', 'pictur'], ['dissappoint', 'past', 'day'], ['sorri', 'car', 'feel'], ['nick', 'wtf', 'go', 'go', 'ride', 'boo'], ['stupid', 'hand', 'flop', 'nut', 'low', 'top', 'pair', 'guy', 'also', 'low', 'flush', 'quarter'], ['feel', 'bit', 'lone'], ['sad', 'end', 'softbal', 'season'], ['deliveri', 'although', 'order', 'not', 'talk'], ['slowli', 'get', 'angri', 'jon', 'kate', 'plus', 'thing'], ['love', 'jazzercis', 'underwood', 'wish', 'chaperon'], ['oh', 'vote', 'not', 'worri', 'alreadi', 'vote', 'time', 'earlier', 'lt'], ['found', 'parent', 'put', 'dog', 'tomorrow', 'morn', 'upset'], ['sound', 'like', 'terrif', 'servic', 'sorri', 'hear', 'mom'], ['guy', 'said', 'want', 'spank'], ['honest', 'home', 'alon'], ['not', 'due', 'til', 'monday', 'freez'], ['got', 'fulli', 'deni', 'tonight', 'sleep', 'time', 'lnd', 'morn'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['gym', 'fun'], ['bad', 'life', 'gotten', 'werecount', 'raffl', 'answer', 'real', 'bad'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['omg', 'want', 'go', 'hahaha'], ['fun', 'without', 'pasti', 'lt'], ['wish', 'naptim'], ['mad', 'rain', 'got', 'not', 'go', 'see', 'jaiden'], ['miss', 'newest', 'version', 'glade', 'debian'], ['boredom', 'not', 'somebodi', 'hang', 'tonit'], ['seagul', 'hate', 'utter', 'depress', 'miss'], ['gloomi', 'hell', 'outsid', 'today'], ['not', 'know', 'not', 'shit'], ['yeah', 'late', 'lol'], ['wish', 'work'], ['apper', 'ea', 'know', 'copi', 'sim', 'not', 'legit', 'upset'], ['bore', 'could', 'not', 'go'], ['chris', 'sab', 'comm', 'esta', 'bitch'], ['oh', 'man', 'suck', 'sorri', 'doll'], ['first', 'impress', 'consider', 'slower', 'boot'], ['sad', 'last', 'entranc', 'academi', 'scienc', 'zipcod', 'free', 'day'], ['hole', 'twitter', 'thing', 'new', 'not', 'let', 'chang', 'pictur', 'stuvk', 'wee', 'stpid', 'thing'], ['much', 'summer', 'hope', 'come', 'favor', 'noth', 'cancel', 'work', 'hard'], ['sorri', 'bad'], ['love', 'sausag', 'kitchenfir'], ['know', 'know'], ['wonder', 'anyon', 'would', 'care', 'die', 'tomorrow'], ['argh', 'noo', 'miss', 'killer', 'wossi', 'suck', 'miss', 'brandon', 'total', 'failur', 'anyon', 'know', 'repeat', 'must', 'investig'], ['best', 'mate', 'found', 'move', 'not', 'understand', 'want', 'someth', 'life', 'leav', 'go', 'uni'], ['omg', 'yes', 'get', 'readi', 'work', 'earli', 'tonight', 'payrol', 'distribut', 'duti'], ['still', 'sick', 'think', 'name', 'puppi', 'june'], ['would', 'lot', 'easier', 'get', 'plane', 'ticket', 'az', 'not', 'rais', 'price'], ['ah', 'bad', 'time', 'hate', 'exam', 'feel', 'unprepar', 'time', 'well', 'suck', 'haha'], ['blackberri', 'soon', 'approach', 'death'], ['headach', 'killen'], ['bore', 'go', 'go', 'carniv', 'get', 'day', 'pass', 'tomorrow', 'excit', 'bore', 'today'], ['miss', 'bbi', 'wish', 'go', 'tomorrow', 'make', 'good'], ['hope', 'enjoy', 'back', 'feel', 'much', 'better', 'god', 'bed', 'night'], ['think', 'disgust'], ['tri', 'upload', 'custom', 'background', 'not', 'work'], ['wish', 'right'], ['dress', 'go'], ['homework', 'friday'], ['sorri'], ['found', 'quot', 'friend', 'quot', 'not', 'actual', 'hey', 'shit', 'happen'], ['see', 'gf', 'day', 'row', 'hour', 'day', 'wish', 'locat', 'not', 'hospit'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['miss', 'mrs', 'mcfox'], ['yeah', 'done', 'work', 'weekend', 'soo', 'bum'], ['softwar', 'use', 'design', 'site', 'cs', 'student', 'current', 'hard', 'code', 'everyth', 'not', 'fastest', 'way'], ['broken', 'fb', 'wed', 'sad', 'longer', 'excus', 'get', 'hauntingxealot', 'goulburn'], ['like', 'like', 'cause', 'babysit', 'haha', 'call', 'cause', 'kind', 'bore', 'right'], ['bore', 'noth'], ['think', 'get', 'sick'], ['tri', 'fix', 'internet', 'answer', 'not', 'studi', 'distract', 'ugh'], ['mean'], ['hope', 'everyth', 'ok', 'burr', 'fix'], ['bad', 'experi'], ['phone', 'die'], ['not', 'want', 'ugli', 'anymor'], ['last', 'day', 'school', 'last', 'concert', 'life', 'wow', 'say', 'emot', 'realli', 'go', 'miss', 'mhs', 'graduat', 'practic', 'today'], ['pain', 'shit'], ['great', 'project', 'wish', 'could', 'done', 'old'], ['phone', 'dead', 'suck'], ['oh', 'hear'], ['kind', 'tri', 'make', 'sure', 'everyth', 'yet', 'still', 'look', 'not', 'home', 'yet'], ['miss', 'citi', 'pollut', 'panhandl'], ['oh', 'sound', 'girl'], ['hve', 'blister', 'pinki', 'nd', 'hurt', 'soo', 'much'], ['twitter', 'stop', 'dick', 'let', 'chang', 'background', 'imag', 'imagin', 'shini', 'nhl', 'ring', 'background'], ['like', 'song', 'not', 'say', 'one', 'guy', 'love', 'ya'], ['late', 'alreadi', 'bus', 'goin', 'home', 'talkin', 'drinkin', 'tea'], ['yes', 'yes', 'inde', 'nut', 'like', 'though', 'not', 'rich', 'tut', 'x'], ['stupid', 'storm', 'river', 'us', 'tonight'], ['not', 'mad', 'pleas', 'dog', 'eye'], ['hate'], ['loan', 'set', 'aerobar', 'team', 'mate', 'tomorrow', 'texa', 'cup', 'race', 'alkek', 'bum', 'not'], ['hate', 'dryer'], ['mani', 'good', 'show', 'come', 'money', 'buy', 'ticket', 'fmfl', 'brand', 'new', 'troub'], ['oh', 'look', 'new', 'hous', 'santa', 'barbara', 'hahha', 'wish'], ['like', 'weird'], ['oh', 'fair', 'hour'], ['said', 'hi', 'doubl', 'take', 'amp', 'left', 'damn', 'let', 'look', 'around', 'first'], ['day', 'jus', 'keep', 'get', 'better', 'better', 'fml'], ['fuck', 'hate', 'goodby'], ['prayin', 'dad', 'wellington', 'fl', 'via', 'live', 'welli', 'may', 'pray', 'f'], ['phone', 'die', 'ttfn'], ['hahah', 'best', 'thank', 'god', 'terri', 'laugh', 'hard', 'miss', 'rememb', 'race', 'truck'], ['know', 'lame'], ['unanticip', 'thunderstorm', 'quash', 'camp', 'trip'], ['miss', 'play'], ['got', 'mark', 'bcit', 'death', 'swear'], ['hate', 'say', 'cla', 'realli', 'press', 'confer', 'someth', 'today'], ['hope', 'come'], ['head', 'hurt'], ['whatev', 'give', 'phone', 'die', 'anyway', 'next', 'time'], ['sorri', 'fail', 'grasp', 'mean'], ['got', 'home', 'work', 'not', 'look', 'forward', 'tomorrow', 'morn', 'oh', 'tomorrow', 'night', 'great'], ['oy', 'writin', 'cuz', 'followin', 'mean', 'lik', 'account', 'delet', 'due', 'quot', 'strang', 'activ', 'quot'], ['feel', 'sick', 'hmph'], ['oh', 'forgot', 'weigh', 'highest', 'weight', 'ever'], ['baffl', 'much', 'radio', 'shack', 'not', 'radio', 'shack', 'grew'], ['doubt', 'get', 'one', 'honest'], ['gross', 'haha', 'like', 'tiniest', 'piec', 'ever', 'tast', 'like', 'ate', 'whole', 'onion', 'eww'], ['realli', 'nervous', 'give', 'speech', 'wed', 'tomorrow'], ['wish', 'come', 'guess', 'make', 'time', 'though'], ['today', 'horribl', 'silly', 'caus', 'whole', 'lot', 'stress', 'head', 'ach', 'end', 'ruin', 'beauti', 'sunni', 'day'], ['ahh', 'omg', 'pridelin', 'got', 'talent', 'give', 'headach', 'wtf', 'omg', 'osn', 'make', 'stop', 'mommi', 'make', 'stop'], ['peel', 'much', 'feel', 'bad'], ['wake', 'got', 'flu'], ['thank', 'yoou', 'might', 'get', 'seen', 'hm', 'xx'], ['thought', 'like', 'realli', 'hot', 'room', 'hot', 'sleep'], ['omg', 'realli', 'sowwi', 'tire', 'morn', 'lol'], ['yea', 'thank', 'link'], ['home', 'alon', 'friday', 'night', 'not', 'get', 'sadder', 'folk'], ['day', 'left', 'school', 'bryce', 'tyler', 'day', 'elementari'], ['ew', 'traffic'], ['got', 'wrong', 'size', 'coat', 'sheep'], ['realli', 'want', 'go', 'see', 'haha', 'cute'], ['aww', 'hey', 'not', 'know', 'lol', 'sick', 'outti'], ['realli', 'wish', 'could', 'make', 'hr', 'drive', 'not', 'go', 'happen', 'weekend'], ['miss', 'tim'], ['ok', 'son', 'bath', 'go', 'see', 'find', 'quick', 'quot', 'go', 'miss', 'ya', 'weekend', 'alreadi', 'gettin', 'sad'], ['left', 'ipod', 'car', 'warm'], ['miss', 'rollerblad', 'shorelin'], ['bummer'], ['not', 'much', 'weekend', 'knox', 'short', 'amp', 'definit', 'must', 'get', 'garden', 'wee', 'bit', 'neglect'], ['think', 'may', 'ruin', 'friendship', 'week', 'get', 'carri', 'away'], ['miss', 'shotgun', 'match', 'guilt', 'go', 'store', 'wife'], ['think', 'home', 'want', 'next', 'week', 'work', 'book', 'forseeabl'], ['guess', 'ill', 'never', 'sad', 'thing', 'not', 'put', 'altern', 'not', 'rememb', 'secret'], ['girl', 'buy', 'amp', 'post', 'pressi', 'tomorrow', 'fuck', 'clue', 'get', 'sorri', 'hate'], ['soo', 'bore', 'fuckin', 'got', 'new', 'phone', 'call', 'man', 'hes', 'busi', 'one', 'els', 'bore'], ['sorri', 'not', 'singl', 'women', 'think'], ['drive', 'crazi', 'miss', 'big', 'blue', 'select', 'tweet', 'highlight', 'not', 'tell', 'tweet', 'select', 'anymor'], ['hate'], ['not', 'want', 'singl', 'rest', 'life'], ['bore', 'not', 'go', 'habbo', 'stupid', 'ban'], ['fought', 'jere', 'death', 'avoid', 'wet', 'willi', 'got', 'anyway', 'q', 'come', 'bike', 'ride'], ['without', 'whip', 'top', 'shortcak', 'shortcakefail'], ['aww', 'made', 'realiz', 'take', 'bulletin', 'board', 'mani', 'memori'], ['feel', 'sinus', 'headach', 'brew', 'not', 'take', 'drug'], ['goodnight', 'ipod', 'still', 'found', 'old', 'see', 'long', 'hold', 'xx'], ['work', 'ugghh', 'someon', 'save'], ['not', 'want', 'miss', 'laker', 'game', 'tonight', 'sad'], ['wish', 'live', 'closer', 'girl', 'tryna', 'chill', 'friday', 'night', 'next', 'weekeend', 'drink', 'day', 'night'], ['thank', 'tri'], ['feel', 'sick'], ['stupid', 'playstat', 'stupid', 'control', 'not', 'work', 'not', 'play', 'kingdom', 'heart'], ['go', 'shower', 'ffaf', 'fuck', 'distraact'], ['would', 'thought', 'wallac', 'amp', 'gromit', 'team', 'behind', 'monkey', 'island', 'could', 'combin', 'disastr'], ['ugh', 'blister', 'big', 'toe', 'leg', 'shoulder', 'raw', 'shit', 'life', 'suck', 'right'], ['trader', 'joe', 'quot', 'sushi', 'quot', 'fail'], ['hey', 'chick', 'alryt', 'dad', 'tmoro', 'sud', 'sumin', 'aen', 'like', 'last', 'week', 'neva', 'dun', 'oot', 'week', 'lol', 'miss', 'ha', 'bye', 'hun', 'xx'], ['hous', 'sad', 'look', 'without', 'furnitur', 'air', 'mattress', 'night', 'offici', 'move', 'knoxvill'], ['bore', 'mind', 'lol'], ['call', 'kris', 'not', 'pick', 'feel', 'realli', 'bad', 'ha', 'ha'], ['long', 'sinc', 'talk', 'let', 'alon', 'seen', 'make', 'sad'], ['miss', 'voic'], ['sad', 'littl', 'sad', 'last', 'day', 'school', 'readi', 'done', 'say', 'goodby', 'hard'], ['guess', 'relax', 'dinner', 'movi', 'look', 'forward', 'day', 'work'], ['realli', 'cri', 'shame'], ['hangov', 'movi', 'go', 'hilari', 'wish', 'could', 'see', 'crew'], ['oh', 'realli', 'alreadi', 'put', 'pic', 'sorri'], ['well', 'slack', 'earn', 'c', 'least', 'everyth', 'els', 'b', 'next', 'school', 'year', 'b', 'esh'], ['wait', 'go', 'movi', 'later', 'month', 'boor'], ['go', 'secur', 'alreadi', 'miss', 'babi'], ['ugh', 'report', 'monday'], ['ok', 'fuckin', 'hungri', 'fat', 'know', 'aha'], ['not', 'hunt', 'middl', 'make', 'work', 'got', 'eras', 'sri', 'guy', 'look', 'like', 'idiot', 'repli'], ['ok', 'got', 'bit', 'bad', 'back', 'lift', 'drum', 'hardwar', 'car', 'downer'], ['tri', 'follow', 'one', 'ff', 'recommend', 'quot', 'block', 'follow', 'request', 'user', 'quot'], ['sister', 'fuck', 'pc', 'blu', 'screen'], ['good', 'luck', 'footag', 'none', 'station', 'break', 'live'], ['keep', 'tri', 'get', 'not'], ['love', 'adriana'], ['wrote', 'anoth', 'song', 'ran', 'idea', 'one', 'bit', 'crap'], ['not', 'know', 'stupid', 'grader'], ['toldd', 'thunder', 'ew', 'raini', 'scare'], ['bah', 'cowork', 'ran', 'work', 'late', 'bag', 'smack', 'knee', 'realli', 'hurt'], ['unfortun', 'us', 'look', 'like', 'funni', 'peopl', 'twitter', 'move', 'fb', 'start'], ['beastypop', 'tire', 'wish', 'tablet', 'make', 'want', 'throw'], ['crap', 'alway', 'forget'], ['made', 'decis', 'stick', 'although', 'realli', 'not', 'sure', 'right', 'one'], ['bracelet', 'broke', 'today'], ['go', 'sleep', 'wake', 'decemb', 'hous', 'organ', 'babi', 'feel', 'like', 'poo', 'today'], ['ther', 'not', 'mani', 'peol', 'tweet', 'tonight', 'well', 'suppos', 'normal', 'person', 'partyin', 'skint'], ['internet', 'big', 'fail', 'today', 'not', 'twitter', 'usual', 'self', 'facebook', 'boo'], ['look', 'coal', 'harbour', 'not', 'find'], ['noo', 'poor', 'cat', 'want', 'cuddl', 'food', 'hard', 'tell'], ['car', 'alarm', 'amp', 'immobilis', 'make', 'incred', 'complic', 'cost', 'key', 'code', 'neither', 'immobilis'], ['idea', 'mean', 'bb'], ['ugh', 'back', 'kill'], ['quot', 'true', 'theatr', 'call', 'music', 'theatr', 'actor', 'quot', 'wish', 'xx'], ['great', 'cloud', 'realli', 'realli', 'dark', 'grey', 'right', 'outsid', 'offic', 'window', 'sure', 'lotta', 'precip'], ['wish', 'chicago'], ['left', 'amp', 'alreadi', 'miss', 'nashvill', 'back', 'sunday'], ['poor', 'littl', 'woman', 'smush', 'head'], ['increas', 'convinc', 'moder', 'given', 'deep', 'abid', 'love', 'chees', 'total', 'suck'], ['think', 'lost', 'blog', 'post'], ['realli', 'desappoint'], ['bore', 'tear', 'without', 'boy', 'dad', 'week'], ['go', 'soo', 'busi', 'today', 'not', 'funni', 'hate', 'busi', 'day'], ['waayi', 'hot'], ['ahh', 'member', 'toaster', 'play', 'void', 'union', 'sick', 'miss', 'union'], ['point', 'go', 'left', 'tommi', 'prize'], ['sick', 'sad', 'miss', 'martini', 'loung', 'tonight'], ['not', 'groom', 'think', 'die', 'old', 'maid', 'lol'], ['aww', 'feel', 'bad', 'not', 'know', 'nicol', 'citi', 'look', 'probabl', 'worri', 'srri', 'hun'], ['dear', 'rain', 'suck', 'got', 'chang', 'plan', 'tonight'], ['sunburnt'], ['big', 'moan', 'dave', 'leyrock', 'piti', 'coloursfest', 'ahoy', 'xo'], ['miss'], ['sad', 'wish', 'go'], ['hour', 'later', 'hav', 'new', 'telecom', 'phone', 'dosent', 'work', 'stupid', 'telecom'], ['sorri', 'hear', 'dog'], ['not', 'beat', 'time', 'low', 'soo', 'want', 'go', 'metro', 'station', 'cheap', 'shot', 'not', 'abl', 'break', 'bone'], ['start', 'throw', 'us', 'traffic', 'crazi'], ['worst', 'day', 'ever', 'told', 'chav'], ['bed', 'two', 'day', 'migrain'], ['go', 'see', 'puppi', 'not', 'want', 'alon'], ['much', 'light', 'pollut', 'see', 'star'], ['realli', 'miss', 'satan', 'kitti'], ['read', 'mom', 'hope', 'okay'], ['clean', 'follow', 'list', 'block', 'porn', 'girl', 'amp', 'crap', 'look', 'like', 'spammer'], ['not', 'friend', 'anyon', 'anymor'], ['bear', 'beet', 'shit', 'never', 'mind', 'wasabi', 'vodka', 'ginger', 'ale', 'lime'], ['hate', 'stupid', 'boy', 'arrgh'], ['omg', 'great', 'day', 'today', 'went', 'art', 'thingi', 'noe', 'realli', 'want', 'zune', 'hd', 'bed', 'part', 'rain', 'come', 'mister', 'sun'], ['hate', 'much'], ['oh', 'vote', 'not', 'worri', 'alreadi', 'vote', 'time', 'earlier'], ['run', 'today', 'let', 'slight', 'ach', 'bad', 'excus', 'make', 'tomorrow', 'go'], ['got', 'mad', 'cramp', 'leg'], ['aw', 'one', 'fishi', 'die'], ['damn', 'shame', 'bodi', 'wast'], ['puppi', 'sick'], ['not', 'think', 'text', 'read', 'lol', 'figur', 'html'], ['like', 'ogberri'], ['hey', 'mitchel', 'live', 'not', 'get', 'chanc', 'call'], ['milkshak', 'hot', 'day', 'unsettl', 'stomach'], ['miss', 'sad', 'not', 'get', 'meet'], ['hope', 'one', 'day', 'abl', 'go', 'date', 'year', 'old', 'boyfriend', 'without', 'parent'], ['dark', 'knight', 'dvd', 'miss', 'piss'], ['sorri', 'delay', 'publish', 'week', 'show', 'technic', 'difficulti', 'encod', 'soon', 'possibl', 'may', 'saturday'], ['wish', 'cali', 'wit', 'mari', 'nd', 'lupita', 'see', 'vfc', 'not', 'fair'], ['june', 'go', 'long', 'lone', 'month'], ['aww', 'miss', 'usa'], ['feel', 'like', 'dream', 'got', 'crush'], ['hungri', 'thirsti', 'afraid', 'go', 'downstair'], ['kept', 'call', 'call', 'never', 'got'], ['yaay', 'suppos', 'go', 'miss'], ['farmer', 'sunburn', 'ahh'], ['hate', 'not', 'get', 'go', 'stuff', 'toe', 'long', 'stori', 'calpol', 'cold', 'soo', 'night', 'xx'], ['home', 'amp', 'myka', 'meann'], ['grri', 'want', 'come', 'kiss', 'justic'], ['tri', 'get', 'sleep', 'mum', 'blare', 'les', 'mis', 'realli', 'loud', 'sit', 'room'], ['absolut', 'gut', 'not', 'go', 'badu', 'tonight', 'guy', 'fun', 'got', 'home', 'need', 'head', 'downtown', 'gd', 'heat'], ['wow', 'month', 'sinc', 'twitter', 'suppos', 'go', 'see', 'maat', 'pa', 'jame', 'sleepin'], ['go', 'mad', 'hungri', 'get', 'home', 'forgot', 'money'], ['amp', 'cheat', 'system', 'green', 'day', 'ticket', 'damn', 'amp'], ['gloomi', 'outsid', 'make', 'sad', 'miss', 'sun', 'happi'], ['wish', 'abl', 'talk'], ['ohh', 'noo', 'joshua', 'soo', 'sorri', 'realli', 'sorri', 'not', 'get', 'see', 'pleas', 'forgiv', 'sorri', 'lt'], ['sorri', 'day', 'not', 'good', 'make', 'feel', 'better', 'know', 'beat', 'oprah', 'ms', 'twitterworld'], ['yes', 'herr', 'dude', 'go', 'fuck', 'cri'], ['oh', 'yah', 'dad', 'not', 'landlin'], ['best', 'friend', 'away', 'special', 'olymp', 'said', 'go', 'bring'], ['moment', 'silenc', 'budget', 'bout', 'b', 'spend', 'wayi', 'much', 'omg', 'budget'], ['fair'], ['sad', 'miss', 'call', 'time', 'got', 'home', 'practic', 'late'], ['go', 'home', 'enjoy', 'left', 'day', 'not', 'believ', 'quick', 'week', 'flew', 'time', 'tweet'], ['darn', 'crave', 'wed', 'cake', 'crave', 'hard', 'satisfi', 'anyth', 'els'], ['heyheyheyheyehyeyi', 'noo', 'tokio', 'hotel', 'tshirt', 'friad', 'omg', 'shame'], ['hey', 'gerardo', 'late', 'respons', 'day', 'talk', 'bout', 'forgiv', 'brother', 'givin', 'wrong', 'direct', 'got', 'way', 'upset'], ['oh', 'today', 'jay', 'leno', 'last', 'show', 'miss', 'leno'], ['head', 'hurt', 'air', 'freshner', 'horriblel', 'scent', 'ever', 'super', 'gross'], ['sorri', 'weekend', 'start', 'hour', 'ago'], ['realli', 'gutwrench', 'sad'], ['visit', 'famili', 'hospit', 'not', 'fun'], ['suck', 'playmat', 'mia', 'weekend', 'sad'], ['ador'], ['yeah', 'everyth', 'becom', 'difficult', 'generalis', 'break', 'not', 'easi', 'problem'], ['get', 'esplain', 'awhil', 'ago'], ['not', 'work', 'except', 'use', 'word', 'autofollow', 'got', 'follow', 'bot', 'sell', 'autofollow', 'program'], ['troubl', 'breath', 'damn', 'fever', 'lt', 'gt'], ['power', 'outag', 'door', 'freezer', 'prop', 'open', 'ice', 'cream', 'make', 'slippi', 'floor'], ['nose', 'chap', 'yuck'], ['aww', 'guess', 'not', 'mani', 'peopl', 'onlin', 'though'], ['well', 'phone', 'today', 'wait', 'till', 'june', 'get', 'better', 'deal', 'soo', 'good'], ['hahahaha', 'watch', 'miss', 'ocean'], ['thank'], ['not', 'worri', 'hate', 'nobodi', 'comment', 'pic'], ['kill', 'sick', 'n', 'friday', 'night'], ['tummi', 'hurt'], ['wish', 'gave', 'one', 'last', 'kiss'], ['love', 'much', 'call', 'talk', 'fan', 'love', 'lot', 'mitchel', 'see', 'el', 'cajon', 'june'], ['noth', 'boo', 'total', 'bore'], ['jealous', 'suppos', 'go', 'see', 'seattl', 'friend', 'summer', 'bail', 'work'], ['cool', 'actual', 'believ', 'begun', 'jail', 'sentenc', 'arkansa'], ['would', 'plain', 'go', 'crazi'], ['okay', 'final', 'get', 'meet', 'dia', 'name', 'right', 'oh', 'geez', 'feel', 'stupid', 'not'], ['yeah', 'behind', 'classic', 'cinema', 'not', 'time', 'go', 'see', 'anyway'], ['appeal', 'fact', 'would', 'hop', 'pretti', 'quick', 'not', 'want', 'impos', 'sacr', 'birthday', 'hun', 'friend'], ['stupid', 'wireless'], ['start', 'get', 'annoy', 'socialscop', 'need', 'updat'], ['tip', 'finger', 'hurt', 'lmao'], ['tummi', 'kind', 'hurt'], ['feel', 'extrem', 'depress', 'right'], ['ugh', 'tire'], ['aww', 'not', 'wait', 'back', 'la', 'lt'], ['omg', 'twin', 'sister', 'fav', 'song'], ['gari', 'tri', 'ommegang', 'chocol', 'indulg', 'chocol', 'indulg', 'metal', 'best'], ['goin', 'hun', 'worri'], ['twitter', 'happi', 'score', 'think', 'drop', 'point', 'sinc', 'yesterday'], ['poor', 'johnni', 'sick', 'look', 'like', 'go', 'vet', 'tomorrow'], ['last', 'day', 'school', 'sad'], ['reason', 'corona', 'light', 'tast', 'much', 'better', 'alon'], ['headach'], ['nurs', 'sick', 'guniea', 'pig', 'back', 'health', 'cat', 'jealous'], ['dream', 'not', 'like', 'ladi'], ['realli', 'big', 'spider', 'floor', 'two', 'metr', 'away', 'actual', 'littl', 'scare'], ['hate', 'dream', 'awesom', 'parti', 'wake', 'home', 'jager', 'parti'], ['anybodi', 'els', 'experienc', 'pain', 'slowdown', 'facebook'], ['oh', 'must', 'gettin', 'old', 'mom', 'use', 'watch', 'miss'], ['got', 'show', 'monday', 'hope', 'head', 'better'], ['hang', 'fone', 'get', 'hot'], ['okay', 'feel', 'realli', 'sick'], ['learn', 'hard', 'way', 'firewir', 'not', 'backward', 'compat', 'firewir'], ['end', 'face', 'face', 'bear', 'drive', 'home', 'even', 'sad', 'took', 'wood', 'haul', 'cameraphon'], ['came', 'cold', 'chees', 'sauc', 'good', 'though'], ['miss', 'dooddiie'], ['regret', 'not', 'go', 'movi', 'audit', 'today', 'seem', 'like', 'neighbor', 'go', 'get', 'call', 'back'], ['lucki', 'rain', 'citi', 'today', 'enjoy'], ['omg', 'srri', 'hear'], ['hi', 'sweetiepi', 'friday', 'night', 'miss', 'sidekick', 'amp', 'slipper', 'not', 'friday', 'night'], ['fuudge', 'burn', 'finger', 'oil', 'hurt'], ['lol', 'know', 'fall', 'asleep', 'get', 'bore', 'shaun', 'p', 'joke'], ['dumb', 'keep', 'lose', 'follow'], ['bore', 'homework', 'done', 'master', 'program', 'friday', 'nite', 'wit', 'nutin'], ['suck'], ['big', 'sis', 'move', 'gna', 'b', 'weird', 'without', 'x'], ['acsvxdcbgfn', 'soccer', 'shall', 'see', 'young', 'phoeb', 'not', 'want', 'dress', 'though'], ['jordan', 'babi', 'talk', 'wish', 'coulda', 'met', 'ugh'], ['not', 'believ', 'preseason', 'not', 'start', 'august', 'footbal', 'drawl'], ['oh', 'push', 'gqmf', 'trend', 'tonight', 'awesom', 'woefulli', 'behind', 'read'], ['sorri', 'suck', 'bad', 'way', 'p'], ['want', 'die', 'want', 'take', 'life', 'forev', 'tri', 'get', 'duet'], ['ugh', 'las', 'vega', 'airport', 'quot', 'ground', 'stop', 'quot', 'mean', 'stuck', 'plane', 'tarmac', 'lax'], ['sister', 'rip', 'heart', 'outta', 'myy', 'fukkn', 'chest', 'super', 'hurt', 'right', 'ever', 'need', 'life'], ['aleesha', 'piggi', 'die', 'not', 'catch', 'fuck', 'break', 'man'], ['well', 'sacramento', 'hope', 'appreci', 'rivkah', 'sass', 'amp', 'treat', 'well', 'sit', 'omaha', 'pout'], ['realli', 'need', 'mind', 'busi', 'eat', 'disord', 'not', 'reason', 'peopl', 'vomit', 'asshol'], ['left', 'phone', 'home', 'not', 'get', 'back', 'till', 'not', 'call'], ['realize', 'today', 'made', 'sad', 'least', 'heal', 'begin'], ['um', 'not', 'write', 'smut', 'tonight', 'like', 'smut', 'want', 'write', 'smut', 'yet', 'noth', 'smut'], ['get', 'better', 'omg', 'still', 'not', 'believ', 'pictur', 'soo', 'sad', 'not', 'go', 'see'], ['goddamn', 'bloodi', 'stress', 'shit', 'send', 'bodi', 'haywir'], ['two', 'month', 'ago', 'becam', 'worthless'], ['exam', 'yuck', 'hectic'], ['hug', 'sorri', 'feel', 'sad', 'e'], ['unfortun', 'yes'], ['would', 'know', 'not', 'tell', 'busi', 'cakin', 'pay', 'attent'], ['chang', 'num', 'not', 'give', 'good', 'dude'], ['cute', 'pic', 'girl', 'vibrant', 'not', 'get', 'anyth', 'cpeven', 'close'], ['knoww', 'yur', 'mother', 'bitch', 'not', 'want', 'take', 'movi', 'bitch'], ['aww', 'noo', 'not', 'sound', 'great'], ['shiit', 'advanc', 'databas', 'hour', 'minut', 'fail'], ['maan', 'pain', 'would', 'come', 'want', 'come', 'eat', 'lol', 'roll', 'eye'], ['order', 'new', 'blackberri', 'arriv', 'tue', 'may', 'die', 'without', 'phone', 'withdraw', 'alreadi'], ['iphon', 'quot', 'not', 'open', 'download', 'app', 'quot', 'thing', 'forgot', 'cord', 'home'], ['peopl', 'not', 'appreci', 'natur', 'sad', 'lil', 'dude', 'surviv'], ['damn'], ['think', 'get', 'state', 'probabl', 'still', 'tour', 'not', 'dammit'], ['iphon', 'quot', 'not', 'open', 'download', 'app', 'quot', 'thing', 'forgot', 'cord', 'home'], ['miss', 'soccer', 'mom'], ['poop', 'shirt', 'insan', 'crack', 'screen', 'iphon', 'daang'], ['oh', 'antiboyl', 'not', 'work', 'either', 'never', 'much', 'bad', 'thing', 'eh', 'uk', 'eh'], ['sick', 'fell', 'last', 'night', 'outsid', 'coz', 'put', 'someth', 'bin'], ['littl', 'irk', 'moment'], ['need', 'one'], ['yum', 'home', 'deliveri'], ['fight', 'feel', 'sick', 'hope', 'tire', 'realli', 'not', 'feel', 'well', 'though'], ['greenvill', 'drive', 'game', 'not', 'without', 'quot', 'basebal', 'guy', 'quot', 'clown'], ['aww', 'tummi', 'ach'], ['sad', 'hollyoak'], ['drive', 'past', 'tatter', 'cover', 'stop', 'promis', 'make', 'time', 'next', 'week'], ['sick', 'fell', 'last', 'night', 'outsid', 'coz', 'put', 'someth', 'bin'], ['nope', 'one', 'realli', 'good', 'cuban', 'place', 'ask'], ['day', 'left', 'freedom', 'realli', 'want', 'get', 'weekend', 'hate', 'essay'], ['exhaust', 'hour', 'work', 'week'], ['drive', 'home', 'trade', 'car', 'hope', 'make'], ['bad', 'news', 'go', 'take', 'dog', 'walk', 'upset'], ['drat', 'land', 'boot', 'die', 'think', 'boot', 'like', 'one', 'go', 'seed', 'first', 'season'], ['sad', 'cancel', 'silverston', 'show', 'better', 'see', 'sandown', 'park'], ['like', 'kiss', 'night', 'not', 'evict', 'bad', 'edit'], ['miss', 'work', 'peep'], ['finish', 'read', 'twilight', 'thought', 'love', 'realli', 'want', 'read', 'next', 'one'], ['think', 'get', 'state', 'probabl', 'still', 'tour', 'not', 'home', 'dammit'], ['not', 'feel', 'well'], ['poor', 'lost', 'duck', 'outsid', 'oliv', 'garden', 'make', 'sad'], ['go', 'watch', 'bgt', 'bad', 'time'], ['hot', 'thermomet', 'show', 'moment'], ['month', 'end', 'still', 'stuck', 'offic', 'wait', 'straggler', 'get', 'togeth'], ['ugh', 'work', 'suck', 'could', 'sher', 'right'], ['feel', 'pretti', 'tire', 'lone'], ['weak', 'facebook', 'fail'], ['panda', 'express', 'long', 'miss'], ['took', 'guy', 'think', 'bluff', 'three', 'time', 'row', 'get', 'away', 'back', 'show', 'shit', 'work'], ['leather', 'thing'], ['damn', 'brah', 'not', 'happi'], ['noo', 'parrent', 'found', 'stash'], ['ugh', 'migrain'], ['not', 'get', 'go', 'wakeboard', 'good', 'lush', 'night'], ['cower', 'pain'], ['person', 'stood', 'world', 'full', 'spineless', 'cunt', 'make', 'sad'], ['tri', 'swat', 'fli', 'buddhist', 'magazin', 'bad', 'karma'], ['omg', 'hair', 'salon', 'tear', 'hope', 'get', 'soon', 'watch', 'real', 'hous', 'wive', 'nyc'], ['hm', 'happi', 'want', 'join', 'drama', 'practic', 'today'], ['thank', 'found', 'articl', 'say', 'not', 'join', 'uk', 'though'], ['chanc', 'might', 'come', 'back', 'moncton', 'miss', 'show', 'tonight'], ['gosh', 'need', 'rude'], ['not', 'feel', 'good'], ['absolut', 'jealous', 'hell', 'brenda'], ['whaat', 'hous', 'work', 'hard'], ['feel', 'sad', 'elizabeth'], ['wish', 'area', 'offer', 'chines', 'food', 'deliveri'], ['sad', 'day', 'christian', 'lacroix', 'file', 'bankruptci'], ['feel', 'f', 'cked', 'feet', 'ach', 'need', 'beedd'], ['dose', 'want', 'go', 'work', 'tomorrow'], ['everyth', 'weep'], ['mobil', 'not', 'let', 'not', 'stop', 'think', 'x'], ['tomorrow', 'good', 'appar', 'movi'], ['adventur', 'time'], ['ahh', 'needa', 'hurri', 'shower', 'quot', 'huge', 'quot', 'storm', 'hit'], ['could', 'not', 'call', 'time', 'phone', 'would', 'run', 'give', 'shoutout', 'happi'], ['listen', 'darren', 'hay', 'spin', 'talkin', 'wacki', 'friend', 'go', 'insan', 'not', 'tire', 'mess', 'bout', 'thing'], ['fml', 'step', 'needl', 'ouch', 'waa', 'damn', 'dryclean'], ['wish', 'love', 'come', 'home'], ['muscl', 'back', 'cramp', 'hurt', 'bad', 'oww'], ['sore', 'weight', 'lift', 'howev', 'good', 'kind', 'sore', 'give', 'move', 'power', 'mind', 'alon'], ['fault', 'leav', 'outsid', 'locker', 'swim', 'usf', 'koret', 'oh', 'would', 'want', 'take'], ['wonder', 'hard', 'concentr'], ['uggh', 'everyth', 'send', 'keep', 'send', 'twitter', 'forward', 'suck', 'life'], ['sad', 'not', 'follow', 'updat', 'amp', 'not', 'use', 'twitter', 'sinc', 'may', 'want', 'name'], ['ride', 'daddi', 'bike', 'yes', 'man', 'bike', 'conveni', 'not', 'dark', 'without', 'glass', 'scare', 'surviv', 'haha'], ['could', 'bad', 'idea', 'hayley'], ['good', 'night', 'fellow', 'twitterati', 'back', 'work', 'tomorrow'], ['write', 'paper', 'lot', 'harder', 'thought', 'lol'], ['damn', 'alway', 'miss'], ['got', 'fight', 'pavement', 'think', 'poor', 'littl', 'knee'], ['stay', 'home', 'wife', 'take', 'daughter', 'friend', 'tokyo', 'steak', 'hous', 'sad', 'bodi', 'not', 'cooper', 'today'], ['quot', 'monarchi', 'quot', 'go', 'bleed', 'us', 'dri', 'noth', 'slave', 'pig', 'not', 'recon', 'countri', 'anymor'], ['saw', 'ucla', 'convinc', 'everi', 'singl', 'major', 'univers', 'better', 'bookstor', 'fun', 'far'], ['crazi', 'kid', 'not', 'nap', 'think', 'heat', 'still', 'tell', 'not', 'go', 'grandma', 'cuz', 'sick'], ['late'], ['hi', 'name', 'kate', 'addict', 'mm'], ['get', 'dinner', 'readi', 'not', 'much', 'go', 'life', 'seem'], ['want', 'go', 'walk', 'still', 'miss', 'satan'], ['ahh', 'get', 'realli', 'tire', 'ej', 'not', 'yet', 'might', 'go', 'sleep', 'without', 'talk'], ['still', 'feel', 'weird', 'ex', 'engag', 'mom', 'made', 'thing', 'wors', 'not', 'even', 'want', 'still', 'odd'], ['see', 'sec', 'clip', 'new', 'moon', 'trailer', 'big', 'teas', 'though'], ['jeff', 'right', 'call', 'duti', 'pwns', 'got', 'figur', 'xtra', 'copi', 'wolvarin', 'bought', 'earlier', 'week'], ['work', 'sick', 'blow', 'kill', 'feel', 'like', 'crap'], ['outsid', 'play', 'ball', 'dog', 'hot', 'sweati'], ['assign', 'due', 'midnight', 'profession', 'write', 'class', 'amp', 'realli', 'wish', 'alreadi', 'done', 'love', 'write', 'thought', 'id', 'like'], ['hs', 'still', 'tire', 'want', 'go', 'home'], ['oh', 'darn', 'not', 'london'], ['sorri', 'neglect', 'twitter'], ['head', 'hurt'], ['wish', 'lay', 'side', 'not', 'comfort', 'posit', 'tire', 'lay'], ['preorder', 'razer', 'sphex', 'ship', 'today', 'pay', 'review', 'razer', 'ignor', 'email'], ['would', 'love', 'hear', 'music', 'batteri', 'tv', 'play', 'besid', 'think', 'kind', 'vampir', 'movi'], ['hangin', 'cousin', 'holli', 'tlkin', 'grandpar', 'phone', 'went', 'dead'], ['summer', 'one', 'loner'], ['twitter', 'drive', 'not', 'let', 'download', 'profil', 'pic', 'keep', 'tri'], ['appar', 'paig', 'parti', 'rose', 'jenn', 'adam', 'without', 'child', 'wild', 'imagin'], ['not', 'much', 'well'], ['hope', 'get', 'spend', 'weekend', 'home'], ['miss', 'alreadi'], ['ouch', 'pick', 'nose', 'count'], ['not', 'mean', 'laugh', 'littl', 'giggl', 'come', 'sorri'], ['sad', 'miss', 'go', 'away', 'parti', 'due', 'much', 'work', 'realli', 'go', 'miss', 'kid'], ['slept', 'miss', 'bus', 'train', 'delay', 'not', 'stop', 'stop', 'late', 'work', 'fuck', 'heell'], ['hate', 'bleech', 'mess', 'black', 'outfit'], ['must', 'weather', 'b', 'nice', 'bad', 'minut'], ['poop', 'hog', 'shitter'], [], ['minut', 'till', 'not', 'best', 'day', 'late', 'class'], ['not', 'find', 'trusti', 'hair', 'tie', 'hair', 'spill', 'place', 'run', 'mom', 'band', 'not', 'work', 'normal', 'one', 'hurt'], ['realli', 'warm', 'day', 'seattl', 'rees', 'chocol', 'melt'], ['ugh', 'gone', 'new', 'phone', 'screen', 'black', 'mean', 'text'], ['wave', 'want', 'come', 'get', 'diablo', 'bark', 'much', 'til', 'made', 'sick'], ['not', 'near', 'excit', 'thought', 'would'], ['mouth', 'hurt', 'wish', 'could', 'cut', 'head'], ['sell', 'drumset', 'sad', 'day'], ['today', 'good', 'littl', 'girl', 'holli', 'bgt', 'complet', 'sympahti', 'vote', 'cute', 'aidan', 'davi', 'l', 'tweet', 'x'], ['least', 'not', 'tri', 'violent', 'hump', 'like', 'femal', 'dog'], ['omg', 'icecream'], ['got', 'earli', 'pay', 'bill', 'figur', 'like', 'bandaid', 'get', 'quick', 'not', 'bad', 'wrong'], ['shoot', 'rob', 'miss', 'got', 'home'], ['got', 'nail', 'done', 'n', 'alreadi', 'mess', 'alejandra', 'lt'], ['not', 'drank', 'much'], ['origin', 'acc', 'delet', 'got', 'not', 'bad', 'not', 'receiv'], ['sad', 'cut', 'pink', 'tree', 'notic', 'left', 'today', 'get', 'beto'], ['ugh', 'lost', 'remot', 'got', 'actual', 'move', 'chang', 'channel', 'wtf', 'twat'], ['actual', 'post', 'say', 'not', 'nevermind'], ['oouchh', 'pinch', 'nippl', 'accid', 'tri', 'fix', 'top'], ['nice', 'not', 'ever', 'get', 'ex'], ['lost', 'happi', 'right', 'sloanster'], ['not', 'feelin', 'right', 'hope', 'feel', 'pass', 'stupid', 'stomach'], ['got', 'go', 'go', 'upto', 'bed', 'sec', 'not', 'drunk', 'disgust', 'haha'], ['still', 'stuck', 'offic', 'work'], ['realli', 'sick', 'tire', 'bodi', 'resist', 'rest'], ['marley', 'cri', 'ball', 'eye', 'door'], ['saddest', 'movi', 'ever', 'seen'], ['miser', 'boredom'], ['oh', 'ok', 'not', 'know', 'courthous', 'id', 'either', 'learn', 'nkotb', 'twitter', 'stole', 'pic', 'hate'], ['comput', 'die', 'soon', 'much', 'virus', 'virus', 'scanner', 'not', 'find'], ['miss', 'babi', 'duck'], ['stress', 'mood'], ['worki', 'dad', 'aw', 'suck', 'work', 'saturday', 'morn', 'studi', 'exam'], ['not', 'come', 'toniit', 'arggh', 'want', 'though', 'fun', 'uss', 'well', 'def', 'see', 'nite', 'though'], ['okay', 'hailey', 'realli', 'gone', 'everyon', 'keep', 'prayer'], ['not', 'school', 'done', 'alreadi', 'hurt', 'much', 'see', 'everi', 'day'], ['soo', 'sad'], ['wtf', 'twitter', 'not', 'support', 'messag', 'phone', 'want', 'abl', 'twit', 'vacay', 'poo', 'twitter'], ['upset', 'right', 'like', 'not', 'even', 'formul', 'complet', 'thought'], ['wear', 'certain', 'tye', 'dye', 'tshirt', 'moment', 'miss', 'counterpart'], ['final', 'lost'], ['stand', 'ovat', 'wieter', 'nobodi', 'sit', 'insan', 'hit', 'doubl', 'play', 'though'], ['shame', 'job', 'thought', 'work', 'big', 'money', 'paid'], ['omg', 'jlo', 'marc', 'anthoni', 'old', 'school', 'graduat', 'brb', 'upset'], ['soo', 'peopl', 'tell', 'went', 'tonit', 'show', 'dream', 'meet', 'embarrassd', 'lil', 'lol'], ['first', 'day', 'summer', 'suck', 'overcast', 'cold', 'not', 'summer'], ['tell', 'chris', 'stop', 'make', 'fun', 'lizzi'], ['well', 'love', 'complet', 'flatten', 'back', 'injuri', 'goe', 'weekend'], ['poor', 'mom', 'told', 'look', 'like', 'hooker', 'skirt', 'not', 'short', 'degre'], ['good', 'job', 'wish', 'work', 'zoo'], ['grrh', 'phone', 'brand', 'new', 'might', 'add', 'keep', 'switch', 'other', 'say'], ['musashi', 'great', 'go', 'kitaro'], ['start', 'least', 'favourit', 'chore', 'mop', 'floor'], ['back', 'hurt', 'heat', 'pad', 'stupid', 'ladder', 'collaps', 'make', 'fall'], ['ouch', 'use', 'hate', 'irat', 'caller', 'tri', 'record', 'get', 'p', 'ed', 'etc'], ['poor', 'littl', 'old', 'taken', 'hospit', 'yesterday', 'syring', 'feed', 'home', 'not', 'want', 'drink'], ['gah', 'macbook', 'pro', 'get', 'frickin', 'hot', 'sit', 'tabl', 'noth'], ['ugh', 'plane', 'delay', 'due', 'weather', 'stuck', 'anoth', 'hour', 'kill'], ['oh', 'pleas', 'not'], ['wow', 'pm', 'roll', 'around', 'realli', 'fast', 'accomplish', 'one', 'thing', 'list', 'today'], ['realli', 'oh', 'sorri', 'lol'], ['macbook', 'pro', 'sit', 'close', 'poor', 'macbook', 'asham', 'plastic', 'face', 'side'], ['seen', 'till', 'hour', 'normal', 'sleep', 'miss', 'mad', 'haha'], ['yeah', 'total', 'unfair', 'flame', 'everywher'], ['freak', 'afraid', 'manag', 'stick', 'foot', 'mouth', 'scare', 'yet', 'anoth', 'person'], ['put', 'fuckin', 'mohawk', 'son', 'kill', 'vibe', 'alway'], ['go', 'watch', 'dogtown', 'hope', 'not', 'sad'], ['pain', 'poor', 'hate', 'sun'], ['well', 'movi', 'night', 'spoilt', 'frack', 'gone', 'time', 'sleep'], ['noth', 'aim', 'join'], ['feel', 'aw', 'last', 'night'], ['bed', 'not', 'abl', 'sleep', 'bloodi', 'bipolar'], ['not', 'believ', 'eye', 'say', 'browser', 'omg', 'omg', 'omg'], ['sorri', 'rb'], ['thank', 'googl', 'adsens', 'payment', 'aussi', 'dollar', 'not', 'strong'], ['hurt', 'sunshin', 'weekend', 'not', 'get', 'play', 'sad'], ['long', 'day', 'matine', 'even', 'show', 'sad', 'tomorrow', 'last', 'ever', 'welsh', 'colleg', 'show'], ['ok', 'not', 'true', 'plus', 'insult', 'say', 'insult', 'tri', 'cheer'], ['grass', 'fed', 'beef', 'burger', 'saute', 'mushroom', 'cheddar', 'wheat', 'bun', 'along', 'salad', 'yum', 'poor', 'kim', 'still', 'not', 'feel', 'well'], ['startin', 'get', 'head', 'ach', 'uugghh'], ['busi', 'work', 'new', 'kit', 'coupl', 'interview', 'weekend', 'pray', 'uncl', 'still', 'young', 'massiv', 'stroke'], ['not', 'want', 'sit', 'home', 'prom', 'night', 'someon', 'hang'], ['print', 'opera', 'give', 'much', 'better', 'result', 'print', 'pdf', 'name', 'alway', 'got', 'compromis'], ['ps', 'wish', 'come', 'tonight'], ['get', 'messag', 'account', 'suspend', 'far', 'know', 'not', 'violat', 'term', 'contact', 'twitter'], ['research', 'could', 'not', 'find', 'specif', 'thing', 'want', 'drive', 'autorun'], ['free', 'thing', 'amp', 'not', 'effect', 'comp', 'use'], ['sad', 'babi', 'make', 'angsti', 'write'], ['ipod', 'die', 'not', 'run', 'charg'], ['need', 'nap', 'not', 'get', 'one'], ['ah', 'annoy'], ['lot', 'stress', 'though', 'support', 'two', 'big', 'famili', 'never', 'quit', 'smoke', 'die', 'lung', 'cancer'], ['sorri', 'sad', 'nitenit', 'love'], ['damn', 'bum', 'right', 'love'], ['someon', 'save', 'boredom'], ['citi', 'dippin', 'iz', 'fun', 'much', 'eye', 'candi', 'rememb', 'miss', 'lol'], ['thought', 'simpl', 'one', 'found', 'hilari'], ['sher', 'good', 'quit', 'peopl', 'not', 'even', 'get', 'see', 'due', 'court', 'rush', 'see', 'fam'], ['weekend', 'not', 'work'], ['problem', 'adult', 'shirt', 'annoy', 'sinc', 'lot', 'adult', 'player', 'shirt', 'not', 'come', 'kid', 'size'], ['wake', 'pleas'], ['ooh', 'jealous', 'might', 'tri', 'get', 'saturday', 'exam', 'monday', 'go', 'fail'], ['look', 'like', 'twitter'], ['aw', 'sorri', 'root', 'let', 'know'], ['seem', 'like', 'work', 'rofl', 'sad', 'money', 'not', 'grow', 'tree'], ['fender', 'hide', 'couch', 'know', 'get', 'readi', 'leav', 'not', 'happi'], ['go', 'go', 'bed', 'amp', 'fail', 'miser', 'book', 'holiday', 'although', 'seem', 'new', 'follow', 'high', 'five', 'x'], ['aww', 'hes', 'cute', 'wish', 'could', 'gone'], ['tri', 'go', 'sleep', 'luck', 'think', 'sick'], ['floor', 'mop', 'sound', 'unapp'], [], ['not', 'go', 'logan', 'squar', 'pretti', 'sure', 'shirt', 'not', 'philli', 'local', 'tomorrow'], ['not', 'fair', 'bath'], ['today', 'horribl', 'dayi'], ['gloomi', 'outsid'], ['sometim', 'black', 'girl', 'piss', 'like', 'mother', 'fucker'], ['oh', 'sorri', 'least', 'still', 'abl', 'buy', 'regular', 'ticket', 'not', 'worri', 'limit'], ['know', 'guilt', 'associ', 'pick', 'winner'], ['ohh', 'not', 'fun', 'hell', 'man', 'look', 'like', 'got', 'shit', 'done', 'today'], ['think', 'bill', 'ha', 'ii', 'finish', 'pay', 'mine', 'broke'], ['saw', 'toy', 'stori', 'trailer', 'get', 'epic', 'woodi', 'take', 'l'], ['cup', 'cake', 'soo', 'yummi', 'would', 'coffe', 'know', 'lead'], ['allegra', 'flonas', 'steroid', 'inhal', 'rest', 'allergi', 'season', 'throat', 'still', 'hurt', 'asthma'], ['damn', 'accident', 'listen', 'rick', 'ross'], ['bought', 'pool', 'instead', 'go', 'california', 'pool', 'broken', 'wast', 'vacat', 'money', 'next', 'year'], ['spend', 'saturday', 'morn', 'take', 'note', 'research', 'essay', 'stupid', 'whore', 'recal', 'book', 'use', 'not', 'fair'], ['want', 'shut', 'fuck', 'realli', 'hate', 'live', 'step', 'dad', 'not', 'wait', 'move'], ['oh', 'hate', 'rain', 'septa', 'leav', 'dog'], ['aww', 'go', 'miss'], ['dayum', 'tweet', 'r', 'come', 'fast', 'like', 'miss', 'lot', 'plz', 'dm', 'k', 'oh', 'real'], ['neighbour', 'fond', 'loud', 'nickelback'], ['jungl', 'book', 'soo', 'cute', 'noth', 'eat', 'drink'], ['heard', 'icecream', 'truck', 'took', 'like', 'shot', 'could', 'not', 'catch'], ['hey', 'guy', 'work', 'need', 'worri', 'mani', 'follow', 'though'], ['oh', 'lord', 'idea', 'crap', 'spout', 'get', 'anyon'], ['jerk', 'not', 'go', 'dammit', 'frank', 'suck', 'bad'], ['look', 'like', 'got', 'defect', 'macbook'], ['arrgghhgguuiisshh', 'idea', 'modern', 'assign', 'burma', 'cuba', 'eep', 'help'], ['aww', 'miss', 'least', 'get', 'go', 'home', 'right'], ['pretti', 'good', 'day', 'let', 'us', 'see', 'night', 'goe', 'oh', 'work', 'day', 'tomorrow', 'picnic'], ['hope', 'whoever', 'stole', 'purs', 'money', 'get', 'come'], ['suck', 'would', 'said', 'self', 'tanner', 'realli', 'good', 'stuck'], ['fuck', 'alreadi', 'think', 'show', 'go', 'miss', 'broke'], ['soo', 'n', 'findin', 'asthma'], ['realli', 'want', 'go', 'see', 'script', 'ny', 'august', 'one', 'go'], ['last', 'hero', 'ep', 'sept', 'sick', 'amp', 'drug', 'past', 'day', 'dr', 'say', 'lack', 'everyth', 'esp', 'sunshin'], ['love', 'printer', 'decid', 'print', 'black', 'marbl', 'interview', 'new', 'work', 'morn'], ['tonight', 'bore'], ['noon', 'want', 'talk', 'lol'], ['not', 'bother', 'work', 'tomorrow'], ['not', 'know', 'mean', 'sorri'], ['awak', 'sad', 'see', 'leon', 'today'], ['not', 'want', 'cri', 'senior', 'graduat', 'amp', 'breakin', 'heart', 'home'], ['slow', 'lost', 'phone'], ['think', 'quot', 'chevrolet', 'doom', 'quot', 'would', 'fit', 'gm'], ['rachel', 'alexandra', 'not', 'belmont', 'appear', 'vogu', 'best', 'look', 'model', 'year'], ['colleg', 'work', 'suck', 'much'], ['tire'], ['myweawk', 'not', 'say'], ['ew', 'use', 'get', 'quot', 'suicid', 'quot', 'high', 'school', 'mix', 'like', 'soda', 'togeth', 'drink', 'think', 'rememb', 'enjoy'], ['yeah', 'left', 'pc', 'not', 'run', 'client', 'anymor', 'thought', 'would', 'new', 'one'], ['sigh', 'sister', 'bein', 'strang', 'came', 'way', 'copenhagen', 'london', 'phone', 'turn', 'want', 'see', 'dammit'], ['omg', 'memori', 'must', 'fail', 'weird', 'sinc', 'not', 'normal', 'forget', 'profess'], ['clean', 'four', 'bathroom', 'afternoon', 'yes', 'go', 'ahead', 'feel', 'sorri', 'still', 'wait', 'attent'], ['aww', 'yeah', 'feel', 'know', 'hard'], ['tri', 'realli', 'hard', 'not', 'hate'], ['boo', 'best', 'friend', 'leavin', 'weekend', 'ever', 'without'], ['not', 'know', 'live', 'middl', 'nowher', 'hous', 'spider', 'central'], ['not', 'sleep', 'due', 'watch', 'uktv', 'food', 'keep', 'crave', 'bay', 'think', 'bodi', 'guna', 'ach', 'tomro'], ['miss'], ['stop', 'store', 'pick', 'item', 'debit', 'card', 'miss'], ['nicki', 'land', 'like', 'get', 'home', 'ugh', 'not', 'fish', 'fri', 'left', 'anyway'], ['help', 'anyon', 'know', 'store', 'carri', 'blackberri', 'trackbal', 'went', 'verizon', 'retail', 'luck', 'not', 'want', 'order', 'one'], ['take', 'willi', 'dog', 'get', 'ct', 'scan', 'cos', 'not', 'walk', 'proper', 'atm'], ['hurt', 'much', 'not', 'even', 'chew', 'gum', 'lost', 'much', 'weight', 'not', 'even', 'eat'], ['noth', 'even', 'miss', 'lifestori'], ['tix', 'usual', 'upssuck'], ['ew', 'use', 'get', 'quot', 'suicid', 'quot', 'mid', 'school', 'mix', 'like', 'soda', 'togeth', 'drink', 'think', 'rememb', 'enjoy'], ['yes', 'bb', 'actual', 'one', 'not', 'realli', 'give', 'shit'], ['suck'], ['sick', 'rig', 'tomorrow'], ['miss', 'alot', 'not', 'go', 'talk', 'hope'], ['joe', 'love'], ['ouch', 'not', 'miami', 'tomorrow', 'morn', 'suck', 'cruis', 'drive', 'back', 'next', 'saturday'], ['mani', 'cocktail', 'last', 'night', 'head', 'hurt'], ['saw', 'doop', 'bmw', 'seri', 'park', 'top', 'bad', 'rain'], ['never', 'speak', 'colleg', 'think', 'might', 'stick', 'hashim', 'dosnt', 'shoot'], ['lose', 'money', 'vega'], ['sh', 'get', 'even', 'sad', 'current', 'librari', 'j', 'think', 'last', 'one'], ['not', 'internet', 'work'], ['ooh', 'earli', 'start', 'got', 'bed', 'plan', 'xx'], ['upset', 'friday', 'night', 'cri'], ['need', 'word', 'inspir', 'need'], ['want', 'go', 'home', 'see', 'erin'], ['hug', 'sorri', 'anyth'], ['ground', 'til', 'tomorrow', 'sorri', 'anyon', 'made', 'plan', 'tomorrow', 'annoy'], ['aww', 'hate', 'wen', 'famili', 'brokun', 'humun', 'maybe', 'see', 'agin', 'wun', 'day'], ['guilt', 'trip', 'feel', 'sick', 'pressur', 'stress', 'much', 'drama'], ['said', 'goodby', 'younger', 'bro', 'misshimalreadi'], ['not', 'get', 'much', 'time', 'either', 'go', 'get', 'wors', 'girl', 'r', 'home', 'summer', 'stink'], ['underwir', 'bra', 'stick', 'poke', 'armpit'], ['ahh', 'knoww', 'saw', 'may', 'newcastl', 'good', 'soo', 'excit', 'june', 'birthday', 'aswel'], ['fear', 'spaceship', 'not', 'long', 'earth', 'strand', 'edwin', 'highway', 'smoke'], ['stolen', 'purs', 'new', 'tag', 'still'], ['like', 'must', 'confess', 'one', 'dark', 'side', 'sometim', 'stubborn', 'littl', 'morn', 'grouch'], ['tv', 'bore'], ['start', 'feel', 'bad', 'ugh', 'hate', 'not', 'feel', 'good'], ['weird', 'think', 'may', 'total', 'chang', 'crappi', 'mood', 'miss', 'much'], ['not', 'go'], ['aww', 'dude', 'fair', 'thought', 'point', 'thing'], ['save', 'heart', 'think', 'go', 'let', 'go', 'see', 'get', 'hurt'], ['wow', 'hot', 'miser', 'peopl', 'probabl', 'kill', 'right'], ['accid', 'drop', 'amp', 'screen', 'mess'], ['kristen', 'miss'], ['not', 'enough', 'room'], ['yep', 'good', 'feel', 'not', 'last', 'back', 'sleep'], ['day', 'go', 'good', 'budget', 'video', 'go', 'put', 'low', 'budget', 'video', 'stadium', 'music', 'end', 'may', 'near'], ['mom', 'annoy', 'live', 'crap', 'outta', 'aol', 'radio', 'look', 'brook', 'amp', 'dunn'], ['feel', 'like', 'die', 'way', 'need', 'girl', 'spa', 'day', 'soon', 'possibl'], ['hate', 'break', 'heart', 'confirm', 'jus', 'came', 'austin', 'amp', 'sophia', 'not', 'amp', 'never', 'twitter', 'anoth', 'sad', 'day'], ['st', 'joe', 'dirti'], ['sushi', 'well', 'cook', 'veggi', 'preggo', 'onto', 'trolley', 'car', 'birthday', 'parti', 'mckinney', 'actial', 'feel', 'awak'], ['oh', 'noe', 'melt', 'ice', 'cream', 'not', 'want'], ['bad', 'thought', 'talk', 'today'], ['layenn', 'uughh', 'dunt', 'feel', 'well'], ['occur', 'tonight', 'cheri', 'prom', 'suppos', 'go', 'mile', 'make', 'kind', 'difficult'], ['soo', 'fed'], ['miss', 'someone'], ['arm', 'hurt'], ['got', 'peanut', 'butter', 'beard', 'felt', 'weird', 'axe', 'bodi', 'wash', 'burnt', 'eye', 'okay'], ['h', 'ous', 'start', 'sunday', 'sad', 'not', 'afford', 'sky'], ['made', 'vid', 'prove', 'skill', 'deni', 'step', 'dad', 'said', 'would', 'disown', 'post', 'sowey'], ['grr', 'back', 'mean', 'headach', 'bright', 'one', 'side'], ['sad', 'not', 'come', 'one'], ['clean', 'hous', 'bore'], ['omg', 'shame', 'holli', 'watch', 'clip', 'post'], ['suffer', 'hemorrhoid'], ['cousin', 'move', 'like', 'year', 'ago', 'miss', 'much', 'look', 'facebook', 'sad'], ['not', 'sure', 'way', 'yay', 'wick', 'ticket', 'awesom', 'go'], ['rang', 'irish', 'one', 'drunk', 'must', 'confisc', 'phone', 'hate', 'lot'], ['would', 'soo', 'much', 'geeki', 'ultim', 'level', 'work'], ['best', 'show', 'life', 'mcfli', 'rock', 'world', 'want', 'meet', 'guy'], ['know', 'fuck', 'suck', 'anyway', 'get', 'fake', 'id', 'someth'], ['noo', 'sorri', 'go', 'pop', 'zyrtec', 'go', 'sleep'], ['waterfront', 'anymor', 'faccia', 'luna', 'clarendon'], ['go', 'bed', 'watch', 'bit', 'qi', 'wake', 'tomorrow', 'face', 'start', 'last', 'summer', 'bath', 'bit', 'gut', 'atm', 'home'], ['stupid', 'shop', 'bag', 'left', 'red', 'mark', 'arm'], ['busi', 'fantast', 'tri', 'unplug', 'day', 'thank', 'ff'], ['nurs', 'sore', 'back', 'today'], ['twitter', 'dumb', 'saw', 'quot', 'quot', 'amp', 'kind', 'folk', 'tweet', 'ah', 'sorri', 'not', 'ignor', 'slow'], ['came', 'back', 'bowl', 'offiaci', 'suck'], ['not', 'good', 'day', 'hous'], ['realli', 'tire', 'work', 'whole', 'day', 'tomorrow', 'thought', 'depress', 'uncool'], ['unhappi', 'return', 'occupi', 'citi', 'cri'], ['know', 'think', 'go', 'miss', 'though', 'sacrif', 'money', 'job', 'happi', 'suck', 'ass'], ['think'], ['not', 'make', 'graduat'], ['want', 'talk'], ['nervous', 'hope', 'get', 'could', 'cost', 'mistak', 'like', 'procrastin', 'assumpt'], ['sit', 'around', 'fuck'], ['everybodi', 'alreadi'], ['eli', 'er', 'prick', 'finger', 'blood', 'sugar', 'tri', 'not', 'cri'], ['miss', 'vermont'], ['miss'], ['rain', 'almost', 'perfect', 'day', 'cloth', 'wet'], ['not', 'feel', 'good'], ['say', 'dick', 'find', 'hurt'], ['drew', 'new', 'song', 'make', 'cri', 'miss', 'thoma', 'alreadi'], ['goodbye', 'arizona', 'see', 'week'], ['yeah', 'economi', 'suck', 'bad', 'yeah', 'know', 'cafeteria', 'unemploy', 'moment', 'hate'], ['big', 'sam', 'houston', 'not', 'big', 'enough', 'overcom', 'challang', 'photographi'], ['boo', 'lone', 'bore'], ['afraid', 'yes', 'true', 'hope', 'r', 'not', 'disappoint', 'yet'], ['pleas', 'pleas', 'anyon'], ['miss', 'bffls', 'miss', 'friday', 'night', 'date', 'hot', 'dog', 'dinner', 'know', 'even', 'hold'], ['want', 'becom', 'vegetarian', 'go', 'hard'], ['wow', 'storm', 'power'], ['today', 'head', 'hurt', 'bad', 'want', 'see'], ['heard', 'disappoint', 'disappoint', 'even', 'seen', 'wast', 'bale'], ['tire', 'may', 'go', 'bed', 'troubl', 'miss', 'american', 'even', 'friend', 'x'], ['wish', 'could', 'go', 'cabo', 'tonight'], ['surpris', 'not', 'fire', 'announc', 'whole', 'world', 'bodi', 'would', 'found', 'quot', 'selfish', 'quot'], ['not', 'like', 'dress'], ['ugh', 'walmart', 'hot', 'white', 'wrong', 'see', 'peopl', 'becom', 'agoraphob'], ['lend', 'one', 'cold'], ['beauti', 'stay', 'insid'], ['tri', 'figur', 'not', 'go', 'well'], ['miss', 'puppi'], ['ouchh', 'burnt', 'frkn', 'tongu'], ['final', 'eat', 'unagi', 'save', 'agh', 'realiz', 'band', 'play', 'bear', 'garden', 'today', 'one', 'like'], ['miss', 'game', 'pleas', 'keep', 'updat', 'go', 'nugget'], ['aww', 'feel', 'bad', 'lil', 'nigga', 'look', 'like', 'know', 'come'], ['could', 'go', 'cali', 'without', 'sad'], ['oh', 'sorri', 'pet'], ['feel', 'sad', 'not', 'goodby', 'z'], ['go', 'miss', 'bb'], ['miss', 'stand', 'next'], ['dismal', 'week'], ['spent', 'go', 'colleg', 'well', 'spent', 'go', 'meet', 'man', 'tomorrow', 'toy', 'park', 'lot', 'clean', 'job'], ['not', 'las', 'vega', 'weekend', 'noctweetup'], ['srsli', 'jealous', 'never', 'ever', 'one', 'one', 'rd', 'longer', 'oper'], ['storm', 'power', 'keep', 'go', 'suck'], ['friday', 'stuck', 'home', 'agh', 'bore', 'grr'], ['wish', 'rollin', 'ya'], ['wait', 'till', 'januari', 'life', 'not', 'fair'], ['oh', 'hope', 'reach'], ['dad', 'told', 'want', 'put', 'sale', 'craigslist'], ['know', 'suck', 'data', 'plan', 'weak', 'sauc'], ['si', 'bueno', 'guess', 'not', 'entertain'], ['cousin', 'jail', 'shoplift', 'drug', 'upset', 'pleas', 'help', 'feel', 'better'], ['ohh', 'regal', 'block'], ['still', 'not', 'figur', 'twitter', 'thing', 'not', 'background', 'pic', 'stick', 'not', 'seem', 'chang', 'profil', 'pic'], ['send', 'angri', 'vibe', 'individu', 'blue', 'vehicl', 'hit', 'car', 'qfc', 'park', 'lot', 'broad', 'fail', 'leav', 'note'], ['violent', 'fightclub', 'like', 'sex', 'dream', 'involv', 'heavili', 'tattoo', 'ladi', 'not', 'want', 'wake', 'lol'], ['birthday', 'june', 'wack', 'ihav', 'seen', 'promot', 'birthday', 'parti', 'someon', 'better', 'finagl', 'soon', 'possibl'], ['yea', 'yea', 'tortur', 'stanki', 'leg', 'danc', 'hrs', 'til', 'not', 'mo'], ['oh', 'man', 'seen', 'bgt', 'news', 'not', 'cool', 'love', 'greg', 'danc', 'weepi', 'kid', 'fuck', 'obnoxi', 'go'], ['mommi', 'come', 'home', 'vega', 'tonight', 'go', 'pick', 'later', 'islip', 'plane', 'not', 'get', 'killm', 'want', 'mommi'], ['jealous', 'slave', 'away', 'store', 'chill', 'boat'], ['damnit', 'suck', 'one', 'one', 'thought', 'would', 'drag', 'back', 'lol'], ['new', 'work', 'pictur', 'taken', 'today', 'hate', 'look', 'much', 'like'], ['want', 'chat', 'day'], ['music', 'teacher', 'either', 'expir', 'forgot', 'lesson', 'leav', 'outsid', 'wait', 'ride', 'pick', 'hour'], ['cool', 'look', 'forward', 'san', 'francisco', 'realli', 'nice', 'not', 'make', 'napa', 'though', 'mayb', 'next', 'time'], ['wish', 'could', 'feel', 'pain', 'ok', 'least', 'like', 'brazil'], ['wish', 'could', 'come', 'see', 'denver', 'husband', 'lost', 'job', 'not', 'afford'], ['jane', 'realli', 'sad', 'probabl', 'not', 'get', 'perfect', 'tonight', 'quiz', 'without', 'miss', 'articl', 'ask', 'someon'], ['shud', 'lol', 'devic', 'thing', 'not', 'work'], ['omg', 'tri', 'fix', 'pic', 'not', 'work', 'ugh', 'also', 'mom', 'not', 'let', 'sleep', 'sanzz', 'bad', 'day'], ['tummi', 'ach'], ['wish', 'well', 'past', 'hour', 'bed', 'proper', 'migrain'], ['yeah', 'bit', 'overh', 'bit', 'ac', 'die'], ['total', 'ignor', 'sad', 'heartbroken'], ['got', 'stuck', 'traffic', 'jam', 'today', 'one', 'sunburn', 'arm'], ['hug', 'still', 'feel', 'poor'], ['way', 'work', 'kind', 'sad'], ['love', 'rain', 'golf'], ['chillin', 'break', 'eatin', 'grub', 'pretti', 'burnt', 'event', 'day', 'want', 'go', 'movi', 'ian', 'not', 'happen', 'though'], ['miss', 'call'], ['peopl', 'cruel', 'sometim', 'not', 'imagin', 'star'], ['went', 'run', 'sinus', 'piss'], ['thank', 'cute', 'not', 'home', 'mani', 'year', 'not', 'seen', 'person'], ['miss', 'phone', 'servic', 'suck'], ['wait', 'sleep', 'pill', 'kick', 'go', 'tire', 'work', 'tomorrow'], ['sad', 'voic', 'food', 'fair', 'academ', 'pep', 'ralli', 'need', 'voic'], ['fuck', 'not', 'feel', 'like', 'cri', 'bit', 'reali', 'not', 'want', 'bother', 'soo', 'much'], ['pleasant', 'soo', 'rare', 'time', 'kill'], ['miss', 'youhh', 'ci', 'tell', 'dem', 'japenes', 'peopl', 'give', 'yu', 'comput', 'sumthinn', 'ya', 'twit', 'fam', 'missess', 'supa', 'c'], ['love', 'love', 'love', 'beauti', 'sweet', 'girl', 'ever'], ['wow', 'honest', 'not', 'surpris', 'everi', 'time', 'tri', 'push', 'guy', 'get', 'injur'], ['sorri', 'miss', 'saw', 'across', 'way', 'busi', 'take', 'came', 'meet', 'gone'], ['not', 'go', 'lie', 'go', 'miss', 'high', 'school', 'lunch', 'lot', 'damn'], ['traffic', 'way', 'home', 'traffic', 'light', 'afraidiow', 'karma', 'big', 'check'], ['dang', 'voic', 'not', 'came', 'snot', 'cover', 'tissu', 'dangit', 'hate', 'flu'], ['bud', 'light', 'massachusett', 'boston', 'lager', 'guess', 'not', 'catch', 'next', 'flight', 'njoy'], ['chees', 'chip'], ['went', 'concert', 'rememb', 'derek', 'mark', 'host', 'miss', 'see', 'bhb', 'grove'], ['haha', 'damn', 'not', 'invit'], ['aghh', 'mann', 'miss', 'like', 'half', 'wowp', 'nd', 'not', 'like', 'start', 'watch', 'thing', 'middl', 'show', 'forgot', 'record', 'madd'], ['feel', 'like', 'not', 'talk', 'realli', 'realli', 'long', 'time'], ['not', 'let', 'vote', 'even', 'though', 'sign'], ['dude', 'look', 'crazi', 'dat', 'hair', 'face', 'lmao', 'old', 'wrestler', 'went', 'tna', 'thank', 'vinc', 'dude', 'clown', 'lol'], ['ugh', 'bore', 'friday'], ['gone', 'minut', 'alreadi', 'show', 'boobag', 'without'], ['tire'], ['sorri', 'miss', 'tweet', 'nice', 'long', 'chat', 'across', 'border', 'pastel', 'want', 'recip', 'email'], ['waah', 'not', 'open', 'eye', 'wider', 'want', 'go', 'back', 'sleep', 'not', 'sleep', 'proper'], ['god', 'not', 'asylum', 'realli', 'never', 'get', 'anyth', 'cool'], ['fckeditor', 'give', 'problem', 'post', 'fine', 'edit', 'plain', 'text', 'help'], ['hate', 'trevor', 'drive'], ['fab', 'broke'], ['say', 'gosh', 'miss', 'yesterday', 'live', 'chat', 'bed', 'sick'], ['broken', 'iphon'], ['uugh', 'hate', 'miss', 'interview', 'not', 'home', 'darn'], ['final', 'plug', 'listen', 'flashpoint', 'shoutout', 'miss', 'segment', 'chevron'], ['ow', 'shitt', 'not', 'come', 'get', 'drunk', 'ihav', 'go', 'photo', 'shoot', 'portsmouth', 'sumfink', 'oww'], ['shot', 'suuck', 'done', 'vacin'], ['oh', 'noe', 'miss'], ['hate', 'present', 'hahah', 'whatev', 'glad'], ['aww', 'live', 'van', 'would', 'great', 'see', 'great', 'flight'], ['like', 'friend', 'kind', 'sad'], ['offic', 'dc', 'miss', 'numero', 'uno'], ['doin', 'homework', 'ugh'], ['room', 'damn', 'warm', 'window', 'open', 'still', 'cook'], ['know', 'tweet', 'though', 'not', 'worri', 'haha', 'wish', 'could', 'fli', 'ohio', 'saw', 'beyonc', 'monday', 'uhmygawdd'], ['reupload', 'damn', 'thing'], ['pictur', 'bliss', 'jpeg', 'format', 'sorri', 'messag', 'board', 'terminolog', 'not', 'play', 'board'], ['burnt', 'zuccini'], ['freakin', 'migrain'], ['feel', 'sick', 'headach', 'bore', 'tiredd'], ['oh', 'noo', 'not', 'see'], ['currenc', 'drop', 'like', 'nobodi', 'busi', 'not', 'good', 'time', 'go', 'oversea'], ['miss', 'vlogcandi'], ['not', 'find', 'jewellri', 'dress'], ['missin', 'fun', 'aww', 'cryin', 'lol'], ['epic', 'fail', 'chocol', 'fountain', 'got', 'clog'], ['tire', 'not', 'get', 'sat', 'lawn', 'mower', 'not', 'push', 'whole', 'damn', 'thing'], ['aw', 'could', 'not', 'see', 'robert', 'practic', 'make', 'sad'], ['think', 'well', 'lucki'], ['thing'], ['bit', 'tongu', 'blood', 'everywher'], ['made', 'wisconsin', 'golden', 'corral', 'dang', 'lol', 'miss', 'graduat', 'though', 'dang'], ['cool', 'sound', 'love', 'quot', 'drama', 'quot', 'quot', 'love', 'game', 'quot', 'not', 'work', 'myspac', 'wish', 'good', 'luck', 'xoxo', 'spain'], ['time', 'ritualist', 'friday', 'night', 'depress'], ['fri', 'bread', 'good', 'gave', 'littl', 'pinch', 'lettuc', 'ha', 'ha'], ['aww', 'miss', 'drive', 'elmwood'], ['wow', 'follow', 'friday', 'not', 'tweet', 'fail', 'nobodi', 'follow', 'today', 'dble', 'fail', 'suicid'], ['sorri', 'ambien', 'got', 'sick', 'perhap', 'work', 'ash', 'garden', 'catnip', 'plant'], ['mess', 'look', 'next', 'week'], ['not', 'call', 'blown', 'yet'], ['sometim', 'forget', 'favorit', 'porn', 'star', 'real', 'peopl', 'made', 'orang', 'chicken', 'last', 'night', 'cut', 'finger', 'sad'], ['car', 'need', 'one', 'ha', 'ha', 'one', 'found', 'last', 'night', 'want', 'bad', 'sold', 'not'], ['eye', 'still', 'hurt', 'think', 'go', 'sleep'], ['not', 'sound', 'great', 'palmpr'], ['glad', 'day', 'almost', 'anoth', 'nite', 'nd', 'pain', 'pill', 'alon', 'crib', 'lol', 'ughh', 'wish', 'weekend', 'alreadi'], ['skwl', 'not', 'realli', 'want', 'studi', 'saw', 'gt', 'j', 'make', 'feel'], ['damn', 'natalya', 'got', 'tell', 'go', 'would', 'call', 'lost', 'phone', 'number', 'broke', 'blackberri'], ['much', 'happier', 'despit', 'loom', 'departur'], ['hahahaha', 'not', 'know', 'said', 'sheeitt', 'not', 'get', 'not', 'pictur', 'bwaahh'], ['love', 'though'], ['ha', 'asham'], ['not', 'want', 'work', 'tonight'], ['aww', 'hug', 'wish', 'could', 'help'], ['work', 'wrist', 'hurt', 'much'], ['lol', 'sorri', 'bout', 'today', 'get', 'amp', 'els', 'r', 'guyz', 'doinq', 'cuz', 'c', 'elig', 'howeva', 'itz', 'spell', 'lol'], ['knew', 'idiot'], ['realli', 'not', 'lookin', 'forward', 'monday', 'bak', 'colleg'], ['feelin', 'depress', 'miss', 'soo', 'damn', 'fcking', 'much', 'besti', 'wish', 'would', 'not', 'left', 'yt'], ['good', 'gracious', 'chair', 'broke'], ['lot', 'noisi', 'peep', 'outsid'], ['upset', 'not', 'get', 'fix', 'tonight'], ['milk', 'drink', 'think', 'make', 'feel', 'sick'], ['god', 'brera', 'plot', 'twist', 'go', 'fuck', 'everyth', 'feel'], ['wish', 'guy', 'gotten', 'video'], ['oh', 'today', 'suck'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['dude', 'check', 'could', 'not', 'find', 'anyth', 'haha', 'capit'], ['lost', 'follow'], ['bounc', 'rush', 'make', 'feel', 'nauseous'], ['hard', 'run', 'back', 'forth', 'constant', 'ya', 'kno', 'workin', 'time', 'havin', 'crazi', 'sleepin', 'schedul', 'must', 'hard'], ['school', 'year', 'not', 'get', 'see', 'teacher', 'not', 'get', 'see', 'johnathan'], ['wow', 'hate', 'stapl', 'right', 'major', 'thank', 'complet', 'fucktard', 'kill', 'product'], ['sigh', 'problem', 'though', 'need', 'call', 'stoopid', 'lime', 'aka', 'cabl', 'wireless', 'reconnect', 'inter', 'day', 'without', 'net', 'sad'], ['miss', 'parti', 'bought', 'wine', 'everyth'], ['think', 'phone', 'offici', 'bit', 'dust'], ['want', 'comment', 'not', 'understand', 'say'], ['go', 'big', 'plan', 'thank', 'tonsil'], ['miss', 'youu', 'wish', 'dodg', 'semi'], ['saw', 'us', 'postal', 'hire', 'done', 'fill', 'thingi', 'not', 'show', 'job', 'open', 'area'], ['make', 'sad'], ['want', 'happi'], ['wish', 'could', 'see', 'dramafest', 'bad'], ['god', 'bore', 'wish', 'could', 'done', 'someth'], ['miss', 'stupid', 'work'], ['work', 'miss', 'miami', 'fam', 'carolina', 'amp', 'amp', 'amp'], ['lame', 'right', 'know', 'date', 'cali'], ['think', 'not', 'handl', 'life', 'like', 'anymor', 'almost', 'seem', 'suicid', 'answer', 'unfortun'], ['tri', 'reorgan', 'plan', 'tonight', 'ugg', 'hope', 'still', 'lot', 'fun'], ['noth', 'sad'], ['yeah', 'sound', 'bit', 'bad', 'man', 'got', 'fuck', 'exam', 'week', 'week'], ['terribl', 'save', 'money'], ['work', 'diffus', 'irrit', 'traffic', 'sure', 'not', 'help', 'mother', 'f', 'alway', 'real', 'bad', 'day', 'th', 'help', 'plan', 'stuff'], ['want', 'see', 'saw', 'pg', 'total', 'bum'], ['brother', 'back', 'amp', 'amp', 'found', 'realli', 'small', 'dead', 'bird', 'deck', 'sad', 'basic', 'cri'], ['wish', 'could', 'via', 'funchal', 'yesterday', 'perfect', 'best', 'day', 'life', 'xx'], ['see', 'color', 'sky', 'look', 'philli', 'look', 'scari', 'lol'], ['miss', 'jp', 'not', 'know', 'iv', 'given', 'headach', 'think', 'make', 'want', 'cri'], ['sister', 'would', 'hahah', 'funni', 'thought', 'like'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['ugh', 'not', 'feel', 'well', 'sudden'], ['anyway', 'could', 'forgiv'], ['trip', 'tired', 'nott', 'nice'], ['bella', 'not', 'love'], ['sore', 'tummi'], ['miss', 'alreadi', 'sad', 'face', 'text', 'serious', 'go', 'make', 'cri'], ['happen', 'jerk'], ['haha', 'miss', 'havnt', 'seen', 'age'], ['jetway', 'feel', 'like', 'seventh', 'layer', 'hell', 'oh', 'way', 'mani', 'babi', 'flight', 'forgot', 'bose'], ['realli', 'need', 'invest', 'ellipt', 'machin', 'run', 'shin', 'splint', 'suck'], ['alex', 'slam', 'head', 'edg', 'tabl', 'min', 'ago', 'go', 'nice', 'blue', 'bruis'], ['everyon', 'left', 'gone', 'bed'], ['hungov'], ['yay', 'soon', 'possibl', 'lol', 'awwh', 'miss', 'friday', 'night', 'happi', 'hour', 'even', 'luna', 'del', 'sea', 'quot', 'boy', 'quot', 'hahahaha'], ['slam', 'via', 'dm', 'papaya', 'lobbyist', 'holi', 'crap', 'mangosteen', 'durian', 'cybersecur', 'stick'], ['aw', 'littl', 'asian', 'girl', 'run', 'round', 'poop', 'pant', 'public', 'miss', 'laugh'], ['love', 'alreadi', 'got', 'plan', 'go', 'queen', 'mari'], ['hope', 'hoe', 'much', 'much', 'without', 'though', 'lol'], ['kennedi', 'raw', 'monday', 'got', 'serious', 'muscl', 'issu', 'back', 'broken', 'wrist'], ['not', 'let', 'twitter', 'keep', 'say', 'twitter', 'capac', 'someth', 'bird', 'keep', 'come'], ['took', 'calculus', 'exam', 'today', 'think', 'well', 'mess', 'one', 'deriv', 'ident', 'though', 'well', 'never', 'miss', 'one'], ['miss', 'soo', 'much', 'not', 'go', 'see', 'month'], ['coupl', 'year', 'may', 'die', 'without', 'kateag', 'keep', 'finger', 'cross', 'though'], ['lost', 'voic'], ['woke', 'earli', 'morn', 'not', 'happi', 'bout', 'headach', 'dizzi', 'not', 'breath', 'yeh', 'still', 'sick'], ['not', 'win', 'lammi', 'last', 'night', 'happi', 'scott', 'sherman', 'walk', 'feet', 'bea', 'today'], ['yea', 'think', 'wait', 'long', 'oh', 'well', 'cool', 'sign', 'alreadi', 'done', 'core', 'class'], ['reaon', 'not', 'worth', 'drunk', 'reason', 'depress', 'revis', 'noth', 'happen', 'reason', 'worth', 'matt', 'not', 'know'], ['nocturn', 'serendip', 'kashmir', 'import', 'mean', 'end'], ['aww', 'type', 'beyond'], ['stupid', 'putet', 'not', 'let', 'go', 'chat'], ['shout', 'might', 'right', 'starv', 'thing', 'littl', 'lol'], ['sit', 'traffic', 'car', 'get', 'rain', 'wash', 'sunday', 'not', 'weather', 'know', 'california'], ['sorri', 'bro', 'rough'], ['miss', 'roommat'], ['scanton', 'farr', 'elain', 'got', 'cartilag', 'pierc', 'cute'], ['tri', 'fix', 'not', 'quot', 'ahi', 'dio', 'mio', 'quot', 'good', 'lol'], ['plan', 'take', 'flight', 'go', 'tonight', 'sink', 'hudson', 'sinc', 'work', 'morn', 'stupid', 'bird', 'strike'], ['soo', 'hungri', 'right', 'eaten', 'wed'], ['bore', 'internet', 'not', 'made', 'downtown', 'beach', 'yet'], ['ooh', 'boo', 'see', 'bar', 'well', 'miss', 'make', 'pt', 'stop'], ['omfg', 'down', 'tasti', 'ate', 'almost', 'lo'], ['umm', 'comment', 'lol', 'actual', 'not', 'watch', 'gh', 'week'], ['scram', 'littl', 'earli', 'nib', 'sound', 'pathet'], ['dear', 'god', 'hope', 'save'], ['ballerina', 'famili', 'super', 'nice', 'albeit', 'littl', 'control', 'son', 'life', 'bayou', 'famili', 'judgement'], ['chew', 'starbuck', 'subway', 'gift', 'card', 'christma', 'time', 'got', 'big', 'troubl', 'not', 'allow', 'near', 'purs'], ['sometim', 'wish', 'man', 'could', 'pee', 'stand', 'scratch', 'chest', 'instead', 'lie', 'breast', 'hah'], ['feel', 'realli', 'sick', 'puke', 'gut', 'help', 'pleas'], ['dang', 'hour', 'drive', 'bad', 'daughter', 'birthday', 'parti', 'host', 'donni'], ['slip', 'caught', 'flu', 'feel', 'like', 'poop'], ['noo', 'not', 'busi', 'ever', 'srsli', 'pal', 'not', 'yet', 'familiar', 'iphon', 'twitter'], ['nope', 'love'], ['awe', 'sorri', 'probabl', 'true'], ['swollen'], ['babi', 'maryland', 'not', 'go', 'make', 'see', 'sexi', 'ass', 'next', 'sat', 'camden', 'earli', 'n', 'hang'], ['music', 'work', 'today', 'pain'], ['wish', 'see', 'cnn', 'volum'], ['realli', 'realli', 'itchi', 'eye'], ['feel', 'sick', 'wonder', 'get', 'bed', 'go', 'throw', 'go', 'sleep'], ['sorri', 'want', 'call', 'not', 'aim', 'coupl', 'hour', 'need', 'vent'], ['repli', 'would', 'make', 'life', 'repli', 'usual', 'peopl', 'call', 'gay', 'tell', 'willblok'], ['lol', 'go', 'water', 'prob', 'cold', 'heck'], ['mile', 'run', 'meter', 'swim', 'thing', 'look', 'better', 'better', 'lay', 'bike', 'today'], ['disney', 'store', 'not', 'treat', 'well', 'hour', 'reali', 'want', 'go', 'willdo', 'anythig', 'go', 'show'], ['yeah', 'need', 'fricken', 'cell', 'number', 'tri', 'home', 'month', 'hes', 'busi', 'miss', 'bradd'], ['far', 'tri', 'kill', 'twice', 'min', 'outsid', 'trip', 'stupid', 'thing', 'knew', 'stay', 'bed'], ['spoke', 'cultur', 'racker', 'castl', 'time', 'awesom', 'mexican', 'food', 'drink', 'antibiot'], ['ani', 'sorri'], ['troubl', 'starship', 'trooper', 'mean', 'great', 'big', 'pink', 'bug'], ['sad', 'not', 'hehe'], ['l', 'come', 'could', 'australia', 'far', 'away'], ['noth', 'wors', 'get', 'text', 'dog', 'abandon', 'town'], ['ftr', 'lt', 'miss', 'team', 'alreadi'], ['sorri', 'chang', 'plan', 'revis', 'monday', 'exam', 'park', 'one', 'friend'], ['littl', 'kid', 'annoy', 'hell', 'outa', 'activ', 'shout', 'attack', 'etc'], ['iphon', 'app', 'came', 'month', 'back', 'call', 'zemot', 'bump', 'domain', 'spot'], ['oh', 'god', 'look', 'quot', 'use', 'twitter', 'quot', 'hopeless'], ['know', 'twitter', 'depress', 'tonight'], ['serious', 'parent', 'non', 'stop', 'minniapoli', 'newport', 'week', 'weekend', 'san', 'diego', 'miss'], ['admit', 'grandma', 'hospit', 'last', 'one', 'pleas', 'pray'], ['yeah', 'tri', 'send', 'messag', 'also', 'tri', 'put', 'pic', 'not', 'happen', 'approv', 'summit'], ['not', 'bring', 'suck'], ['bye', 'selena', 'bad', 'not', 'get', 'talk'], ['junk', 'food', 'movi', 'tshirt', 'sweat', 'way', 'tonight', 'would', 'better', 'someon', 'hang'], ['hate', 'song', 'survey', 'alway', 'seem', 'make', 'cri'], ['let', 'know', 'soon', 'figur', 'sorri', 'mix', 'suppos', 'get', 'work', 'hour', 'ago'], ['time', 'get', 'readi', 'wrk', 'ahh', 'dnt', 'want', 'goo'], ['hate', 'bff', 'groundedd', 'boo'], ['damn', 'want', 'see', 'rest', 'saw', 'like', 'minut'], ['welcom', 'life'], ['well', 'even', 'breakdown', 'better', 'act', 'unfortun', 'britain', 'got', 'littl', 'talent'], ['lol', 'not', 'ever', 'forget'], ['start', 'min'], ['infam', 'awesom', 'eye', 'sore', 'though'], ['forgot', 'calcul', 'physic', 'oh', 'well', 'class', 'allmost'], ['fell', 'deep', 'crack', 'glacier', 'terribl'], ['dang', 'last', 'url', 'went'], ['dog', 'die', 'today', 'year', 'miss', 'much'], ['new', 'kitten', 'took', 'giant', 'wet', 'stinki', 'shit'], ['bore', 'not', 'want', 'stay', 'home', 'tonight', 'not', 'want', 'spend', 'money', 'blah'], ['cri', 'not', 'believ', 'lost', 'chat'], ['hair', 'hurt'], ['food', 'cheesecak', 'factori', 'travi', 'lost', 'passport', 'btwn', 'sd', 'lv'], ['oh', 'thank', 'put', 'follow', 'friday', 'new', 'follow', 'usual', 'tire'], ['tire', 'drive', 'realli', 'could', 'use', 'chauffeur'], ['saw', 'babi', 'dove', 'fall', 'tree', 'break', 'neck', 'die', 'tri', 'save', 'could', 'not', 'cruel', 'world'], ['movi', 'tym', 'sad', 'cri'], ['sound', 'like', 'scariest', 'zombi', 'dream', 'ever'], ['not', 'like', 'thing', 'get', 'confus', 'seem', 'happen', 'alot', 'late'], ['hey', 'fun', 'friend', 'clean'], ['guy', 'know', 'abil', 'read', 'time', 'tell', 'devic', 'fail'], ['forc', 'eat', 'red', 'hotdog', 'coz', 'starv', 'noth', 'els', 'breakfast', 'ick'], ['go'], ['feel', 'like', 'piec', 'garbag', 'see'], ['soo', 'jelous', 'right'], ['headach'], ['unfortun', 'not', 'take', 'repair', 'shop', 'replac'], ['thank', 'forev', 'curs', 'make', 'spend', 'hour', 'everytim', 'go', 'could', 'not', 'go', 'tan', 'today'], ['ugh', 'cri', 'write', 'rant', 'tumblr'], ['realli', 'wish', 'could'], ['not', 'though', 'lol', 'work', 'miss', 'blah', 'wut', 'cha'], ['sorri', 'mo', 'thought', 'work', 'tomorrow', 'go', 'casino', 'togeth'], ['friend', 'cancel', 'tomorrow', 'noth', 'make', 'sad', 'xx'], ['sad', 'daniel', 'leav', 'florida', 'gave', 'big', 'hug'], ['perform', 'lifebal', 'vienna', 'year', 'unfortun', 'not', 'get', 'chanc', 'see'], ['go', 'miranda', 'shop', 'centr', 'spend', 'time', 'famili', 'go', 'away', 'week', 'malaysia', 'go', 'miss'], ['aww', 'fine'], ['home', 'sick'], ['find', 'hardest', 'thing', 'christian', 'put', 'god', 'first', 'life', 'need', 'help'], ['sad', 'yo', 'hear', 'ashleycat'], ['twitter', 'almost', 'pass', 'bastard'], ['need', 'come', 'spend', 'time', 'roof', 'miss', 'amp', 'doubl', 'date', 'coupl', 'week'], ['go', 'kill', 'wast', 'hundr', 'download', 'realis', 'got', 'wrong', 'one'], ['sad', 'kid', 'ungrat', 'today'], ['guinea', 'pig', 'die', 'today'], ['got', 'crush', 'issu', 'tomorrow', 'friend', 'go', 'india', 'whole', 'summer', 'back', 'sad'], ['cri'], ['feel', 'dpress'], ['also', 'pop', 'phone', 'open', 'got', 'goddamn', 'dust', 'wore', 'clip', 'camera', 'panel', 'glue', 'shut'], ['lost', 'link', 'sent', 'pull', 'batteri'], ['lol', 'done', 'one', 'victim', 'lol'], ['stomach', 'hurt'], ['not', 'win', 'continu', 'tri', 'keep', 'give', 'away', 'fabul', 'watch', 'not', 'wait'], ['think', 'hate', 'not', 'realli', 'want', 'make', 'hard', 'like', 'cake', 'concert'], ['becom', 'one', 'pathet', 'girl', 'feel', 'lone', 'without', 'boyfriend', 'hahaha', 'miss', 'josey', 'alreadi'], ['put', 'origin', 'art', 'comic', 'album', 'realli', 'nice', 'except', 'show', 'much', 'like', 'cut', 'corner', 'finish'], ['yep', 'damn'], ['want', 'go', 'tonight', 'not', 'go', 'money', 'one', 'go', 'taker'], ['tvs', 'not', 'work', 'want', 'watch', 'vhit'], ['thought', 'like', 'name'], ['sadd', 'last', 'night', 'fl', 'go', 'back', 'ar', 'tomorrow'], ['woot', 'freak', 'hoo', 'though', 'mad', 'world', 'not', 'well', 'itun', 'top', 'chart'], ['sad', 'panda', 'hulu', 'not', 'eleph', 'show', 'skinnamarinkydinkydink', 'sing', 'along'], ['unfortun', 'heffa', 'decid', 'take', 'impromptu', 'mall', 'trip', 'without', 'tell'], ['miss'], ['found', 'link', 'stink'], ['jus', 'sittn', 'yo', 'boy', 'realli', 'gone', 'smh', 'yo', 'bout', 'week', 'sunday', 'von'], ['bad'], ['sad', 'think', 'know', 'exact', 'put', 'expir', 'drawer', 'thing', 'life', 'span', 'less', 'two', 'year'], ['callin', 'grimmi'], ['miss', 'nathan', 'bccg', 'alreadi', 'best', 'friend', 'tri', 'visit', 'head', 'back', 'tomorrow', 'afternoon'], ['teh', 'part', 'hes', 'liek', 'feel', 'girl', 'feel', 'soo', 'soori'], ['miss', 'nicc', 'today'], ['hair', 'earli', 'start', 'tomorrow', 'head', 'london', 'cloth', 'show', 'great', 'place', 'feel', 'fat', 'bright', 'side', 'motiv'], ['brother', 'week'], ['plus', 'janessa', 'hurt', 'feel'], ['bahah', 'sad', 'not'], ['know', 'funni', 'thing', 'everyon', 'pack', 'pack', 'go', 'mexico', 'not'], ['justin', 'warm', 'make', 'worri', 'high', 'fever', 'go', 'sleep'], ['heart', 'broke', 'littl', 'littl', 'mean', 'lot'], ['mom', 'season', 'weed', 'got', 'burnt', 'famili', 'friend', 'mobil', 'home'], ['not', 'bank', 'cash', 'shit', 'tom', 'thumb', 'four', 'bank', 'account', 'gone', 'negat'], ['chill', 'tv', 'quit', 'bore', 'moment'], ['glad', 'sam', 'good', 'mood'], ['enjoy', 'laker', 'game', 'guy', 'sinc', 'work'], ['worst'], ['think', 'plus', 'everyon', 'want', 'see', 'could', 'keep', 'go', 'obvious', 'not', 'hope', 'bounc', 'back'], ['wow', 'soo', 'hungov'], ['miss', 'home', 'farm'], ['not', 'make', 'shop', 'alway', 'tomorrow'], ['tryin', 'not', 'bore', 'today', 'not', 'seem', 'come', 'thing', 'say'], ['love', 'game', 'show', 'suupper', 'piss', 'got', 'cancel'], ['said', 'bum', 'miss', 'sigh', 'want', 'go', 'california'], ['stupid', 'bipolar', 'weather', 'ruin', 'day'], ['sorri', 'drace', 'suck', 'bad'], ['oh', 'stink'], ['heart', 'mela', 'much', 'cept', 'last', 'time', 'went', 'book', 'us', 'saturday', 'instead', 'friday', 'would', 'not', 'feed', 'us'], ['friday', 'made', 'miss', 'high', 'school'], ['know', 'asham', 'not', 'watch', 'singl', 'episod', 'new', 'gh', 'season', 'kept', 'fall', 'asleep', 'gave'], ['fail', 'second', 'year', 'med', 'school', 'not', 'know', 'say'], ['hi', 'daughter', 'youngest', 'turn', 'monday', 'time', 'go', 'sniffl', 'sniffl', 'sob', 'sob'], ['chillaxin', 'screw'], ['friend', 'mine', 'meet', 'today', 'not', 'wait', 'turn'], ['not', 'believ', 'tire', 'right', 'not', 'know', 'go', 'tonight', 'exhaaust'], ['shame', 'wisdom', 'come', 'age', 'age', 'destroy', 'youth'], ['think', 'pay', 'attent', 'type', 'thing', 'bout', 'hit', 'bush', 'pretend', 'purpl'], ['mess', 'miss', 'bra', 'strap'], ['plane', 'land', 'final', 'go', 'get', 'hour', 'late', 'stupid', 'rain'], ['okay', 'drive', 'know', 'know', 'correct', 'say'], ['final', 'chanc', 'show', 'genuin', 'love', 'not', 'depend', 'selfish', 'love', 'hope', 'heart', 'goe', 'sorri', 'pain'], ['bus', 'roll', 'along', 'faster', 'expect', 'might', 'make', 'home', 'mayb'], ['work', 'soonn', 'look', 'realli', 'dead', 'today'], ['well', 'look', 'like', 'go', 'anoth', 'night', 'without', 'snuggl', 'bug', 'miss', 'big', 'girl'], ['wow', 'one', 'love'], ['spill', 'everyth'], ['not', 'feel', 'good'], ['hahahaha', 'not', 'friend', 'sinc', 'sunday', 'lame'], ['hannah', 'montana', 'set', 'miss', 'tennesse', 'alot', 'today'], ['wait', 'dang', 'pizza', 'cook', 'almost', 'still', 'not', 'eaten', 'wifey', 'fail', 'mention', 'feel', 'like', 'crap'], ['take', 'caltrain', 'go', 'see', 'giant', 'cold', 'someon', 'smell', 'like', 'pee'], ['biglot', 'hous', 'jesus', 'amp', 'virgin', 'mari', 'ring', 'one', 'machin', 'rock', 'one', 'til', 'shit', 'broke'], ['argh', 'fail', 'make', 'sad'], ['token', 'not', 'work', 'day'], ['wrong', 'flickr', 'quilt', 'top', 'photo', 'show', 'click', 'sad', 'stori'], ['lmao', 'mess', 'go', 'atl', 'week'], ['hous', 'hunt', 'next', 'fun'], ['aww', 'homesick', 'feel', 'homesick', 'home', 'campp'], ['hope', 'yer', 'ok', 'hunni'], ['still', 'pic', 'sad'], ['slept', 'alarm', 'woke', 'instead', 'feel', 'like', 'complet', 'tool'], ['want', 'see', 'ephraim', 'zenh', 'tomorrow', 'lot', 'find', 'sitter', 'wtf', 'everyon', 'plan', 'saturday'], ['whore', 'never', 'know', 'said', 'cuz', 'not', 'love', 'twitter'], ['sorri', 'fell', 'asleep', 'first'], ['tri', 'listenin', 'music', 'half', 'hour', 'tri', 'readin', 'realli', 'bore', 'wide', 'awak'], ['took', 'shirt', 'back', 'cover', 'blister'], ['cool', 'aww'], ['go', 'bed', 'late', 'headach'], ['stuck', 'ladi'], ['feel', 'sick'], ['cancel', 'perform', 'letterman', 'sad', 'less', 'option'], ['even', 'town', 'jeremi', 'sad', 'carri', 'not', 'come'], ['would', 'nowher', 'go', 'one', 'go'], ['rachel', 'chelsey', 'left', 'jenni', 'stole', 'bike', 'make', 'muy', 'trist'], ['list', 'sad', 'song', 'sad'], ['still', 'rain', 'forget', 'sunshin', 'look', 'like'], ['watchin', 'greas', 'wait', 'hurri', 'come', 'talk', 'girl', 'ugh', 'seem', 'far', 'away'], ['oh', 'suck', 'tell', 'dh', 'act', 'like', 'grown', 'mayb', 'would', 'stress'], ['boo', 'use', 'live', 'upland', 'funn'], ['load', 'high', 'qualifi', 'stuff', 'load', 'still', 'use', 'snail', 'mail'], ['noth', 'wors', 'work', 'friday', 'night', 'wake', 'saturday', 'want', 'babe'], ['could', 'get', 'sack', 'soon', 'not', 'good'], ['think', 'world', 'hannah', 'montana', 'set', 'miss', 'tennesse', 'alot', 'today'], ['rememb', 'still', 'summer', 'project', 'never', 'end'], ['know', 'lot', 'comment', 'return', 'realli', 'busi', 'get', 'round', 'guy', 'sorri'], ['josi', 'surgeri', 'offici', 'unabl', 'procreat', 'way', 'poor', 'medic', 'babi'], ['gaah', 'rain', 'tomorrow'], ['saturday', 'worst', 'saturday', 'age'], ['riley', 'alphabet', 'fashion', 'show', 'today', 'forgot', 'camera', 'cute'], ['not', 'sound', 'fun'], ['oh', 'damn', 'suck'], ['hannah', 'montana', 'set', 'miss', 'tennesse', 'alot', 'today'], ['got', 'home', 'nice', 'parti', 'not', 'tire', 'yet'], ['not', 'make', 'pitch'], ['want', 'new', 'moon', 'ahh', 'go', 'crazi'], ['daang', 'sold'], ['not', 'want', 'work'], ['carnivalsofpari', 'think', 'still', 'bl', 'not', 'sure', 'hard', 'talk', 'anyon', 'anymor'], ['want', 'get', 'dress', 'go', 'one', 'go', 'mentor'], ['twitter', 'not', 'chang', 'anyth', 'twitter', 'heck', 'wrong'], ['starv', 'diet', 'kill', 'not', 'eat'], ['miss'], ['super', 'sad', 'bart', 'etc', 'hold'], ['home', 'lost', 'basebal', 'game', 'friggin', 'point', 'go', 'scrap'], ['not', 'want', 'senior', 'leav'], ['playin', 'citi', 'villain', 'wishin', 'buddi', 'playin'], ['lone'], ['terribl', 'day', 'six'], ['mom', 'want', 'lay', 'later', 'probabl', 'littl', 'sorri', 'sick'], ['least', 'posada', 'good', 'ab'], ['coupl', 'hour', 'got', 'sun', 'burn', 'realli', 'uncomfort'], ['hope', 'get', 'well', 'soon', 'lt'], ['follow', 'sad', 'lose', 'hope'], ['test', 'tomorrow', 'not', 'studi', 'go', 'bad'], ['congratul', 'guy', 'finish', 'month', 'earli', 'boo'], ['think', 'wear', 'bermuda', 'cinema', 'not', 'good', 'idea', 'outsid', 'humid', 'like', 'cwazi'], ['doubl', 'rainbow', 'organ', 'pretti', 'not', 'take', 'edg', 'groceri', 'tab'], ['took', 'properti'], ['ac', 'hous', 'broke'], ['pavement', 'boil', 'hot', 'dog', 'limp', 'guess', 'summer', 'offici'], ['life', 'suck', 'not', 'fun'], ['went', 'get', 'inflat', 'gas', 'went', 'anoth', 'cent', 'hit', 'tcot'], ['not', 'mood', 'crazii', 'crazii', 'high', 'upset', 'everyth', 'amp', 'everybodi'], ['gossip', 'fluffodil', 'latest', 'mad', 'night', 'teg', 'jack', 'lou', 'tess', 'frey', 'gender', 'war', 'sad', 'friend', 'also'], ['use', 'book', 'expo', 'canada', 'toronto', 'cancel', 'year', 'beatwittyparti', 'beatwittyparti'], ['nail', 'broke', 'haat'], ['well', 'first', 'tweet', 'today', 'fail', 'lol', 'back', 'sleep', 'bacon', 'egg', 'hard', 'choos'], ['girl', 'come', 'boyfriend', 'forget'], ['thank', 'point', 'crucial', 'problem', 'taken', 'care', 'cc'], ['pleas', 'ignor', 'cheesey', 'music'], ['victori', 'bulldog', 'celebr', 'white', 'chocol', 'cheesecak', 'nom', 'nom', 'nom', 'whatta', 'fattyy'], ['love', 'everi', 'littl', 'thing'], ['macbook', 'run', 'linux', 'parallel', 'imac', 'use', 'vmware', 'fusion', 'great', 'especi', 'quot', 'uniti', 'quot'], ['job', 'nice', 'day', 'not', 'better'], ['tweet', 'whore', 'tweet'], ['well', 'welcom', 'back', 'dark', 'side'], ['cat', 'enjoy', 'sunbeam', 'open', 'window', 'think', 'count'], ['susan', 'egan', 'love', 'yeah', 'said', 'would', 'pleasant', 'trip'], ['sike', 'sike', 'call', 'truce', 'still', 'bitch', 'peopl', 'still', 'go', 'air', 'though'], ['wait', 'email', 'probabl', 'never', 'arriv', 'ed', 'later', 'consti', 'studi', 'hopeless', 'bum'], ['happi', 'clean', 'squeaki', 'clean'], ['thank', 'thank', 'thought', 'cool', 'kid', 'hang', 'hehe', 'xoxo'], ['annoy', 'gear', 'take', 'hand'], ['want', 'semest', 'week', 'half', 'move', 'time'], ['yes', 'nba', 'song', 'great', 'got', 'old', 'funni', 'nba', 'cheerlead', 'remix', 'song', 'ohrwurm', 'day', 'quot', 'colorblind', 'quot'], ['thank', 'share'], ['great', 'chat', 'friend', 'total', 'put', 'mind', 'eas'], ['cheap', 'good', 'system'], ['oh', 'good', 'idea', 'put', 'ice', 'cream'], ['yay', 'moment', 'today', 'yay', 'hope'], ['sound', 'like', 'great', 'night', 'glad', 'success'], ['thank', 'god', 'camera', 'fix', 'want', 'new', 'ipod'], ['woop', 'bought', 'elliot', 'minor', 'album', 'itun', 'final', 'work'], ['point', 'point', 'yesterday', 'peopl', 'wait', 'til', 'midnight', 'kind', 'piss'], ['come', 'tri', 'find', 'fan'], ['watch', 'video', 'youtub', 'funni', 'david', 'oh', 'talent', 'cours'], ['thks', 'follow', 'tweet', 'return', 'love'], ['interest', 'generat', 'setup', 'script', 'uninstal'], ['morn', 'back', 'blighti', 'bill', 'hope', 'love', 'time', 'away'], ['want', 'hear', 'someth', 'funni', 'radio', 'right'], ['happi', 'woke', 'side', 'earth', 'wish', 'bit', 'late'], ['work', 'mama', 'sweetdream'], [], ['noth', 'better', 'go', 'chines', 'supperinn', 'fave', 'cousin'], ['feel', 'pretti', 'damn', 'gud', 'not', 'even', 'hangov', 'nice', 'feel'], ['ahh', 'gtg', 'pls', 'help', 'number', 'come', 'back', 'later', 'see', 'said', 'haha', 'plz', 'thank'], ['lol', 'well', 'thank'], ['not', 'bad', 'expect', 'could', 'done', 'better', 'today', 'great', 'show'], ['aww', 'boo', 'fuck', 'love', 'gir', 'thingss'], ['thankyou', 'short', 'stack', 'bring', 'second', 'sydney', 'show', 'go', 'thank', 'guy', 'good', 'fan'], ['final', 'gone'], ['hey', 'never', 'realiz', 'also', 'get', 'twitter', 'account', 'guid', 'truli', 'mani', 'time', 'lifesav'], ['good', 'job'], ['welcom'], ['love', 'go', 'one', 'new', 'fave', 'quot'], ['love', 'sunshin', 'happi', 'bring'], ['thank', 'bebeisi', 'right', 'name', 'chanv', 'elisabeth'], ['chem', 'not', 'better', 'physic', 'tire', 'hahaha', 'ntn', 'bbf', 'juga', 'ya', 'hihi', 'gue', 'sukanya', 'jun', 'pyo'], ['happi', 'birthday', 'cheer', 'pao'], ['aww', 'think', 'lot', 'glad', 'enjoy'], ['download', 'movi', 'quot', 'annual', 'academi', 'award', 'quot', 'cool', 'movi'], ['realli', 'smart'], ['thank', 'link', 'geoff'], ['aahh', 'shower', 'great'], ['awesom'], ['cri', 'tuesday', 'cos', 'find', 'econom', 'offic', 'cri', 'subject', 'lol'], ['hangin', 'home', 'watchin', 'twiligghhtt', 'readin', 'lol', 'school', 'sukk', 'today', 'bahaha'], ['yea', 'know', 'right', 'love', 'song'], ['bank', 'holiday', 'stupid', 'wait', 'not', 'bank', 'holiday', 'america', 'okay', 'keep', 'celebret'], ['hi', 'recov', 'parti', 'look', 'forward', 'excit', 'bank', 'holiday', 'around', 'diy', 'not', 'get', 'much'], ['birthday', 'well', 'happi', 'birthday'], ['say', 'got', 'card', 'today', 'eva', 'n', 'clara', 'thank', 'guy'], ['back', 'woo', 'want', 'press', 'releas'], ['anoth', 'one', 'pop', 'human', 'congrat', 'nana', 'wan', 'babi', 'iri', 'cuti'], ['tx', 'worth', 'wait', 'lol'], ['awesom', 'work', 'good', 'friend'], ['well', 'done', 'visteon', 'belfast', 'year', 'salari', 'paid', 'show', 'happen', 'stand'], ['not', 'worri', 'get', 'stamina', 'back', 'soon', 'kind', 'distanc', 'run', 'usual'], ['thank', 'learn', 'someth', 'new', 'today', 'enjoy'], ['possibl', 'phobia', 'phobia', 'afraid', 'look', 'list'], ['head', 'long', 'band', 'practic', 'last', 'one', 'first', 'show', 'saturday', 'night', 'hope', 'good', 'one'], ['thank', 'kno', 'peopl', 'alreadi', 'look', 'chest', 'ne', 'way', 'might', 'well', 'give', 'somethng', 'throw', 'lol'], ['dj', 'partypeopl', 'great', 'cc', 'kick', 'next', 'one', 'june'], ['fine', 'go', 'big', 'walk', 'today', 'mile'], ['wow', 'realli', 'sweet', 'assum', 'thank', 'much'], ['ok', 'david', 'talk', 'later', 'great', 'dayi', 'ay', 'ay', 'ay', 'ay'], ['know', 'work', 'bore', 'prefer', 'take', 'life'], ['aw', 'sound', 'amaz', 'think', 'work', 'thank', 'invit', 'though'], ['yay', 'excit'], ['mayb', 'hot', 'date', 'nice', 'littl', 'cesna'], ['cool', 'doown', 'patienc', 'virtu'], ['stop', 'follow', 'ama', 'realli', 'need', 'clean', 'break', 'anoth', 'note', 'kate', 'super', 'nice', 'right', 'work'], ['sound', 'great', 'look', 'forward'], ['want', 'share', 'follow', 'feel', 'inspir', 'long', 'day'], ['bye', 'great', 'time', 'whisk', 'away'], ['not', 'wait', 'love', 'script', 'honest', 'futur', 'career', 'script', 'writer', 'stock', 'twit'], ['not', 'mind', 'chang', 'profil', 'pic', 'pictur', 'uk', 'fun'], ['hey', 'good', 'see', 'follow', 'would', 'nice', 'photo'], ['woke', 'school', 'today', 'free'], ['got', 'brace', 'tighten', 'today', 'got', 'mcdonald', 'haha', 'sport', 'tomorrow', 'yay', 'yay', 'yay', 'netbal', 'tryout', 'wish', 'luck', 'make', 'team', 'l'], ['lot', 'usual', 'laundri', 'thank', 'god', 'clean', 'hous', 'prais', 'god', 'cut', 'hedg', 'thank', 'prais', 'god'], ['thank', 'sympathi', 'not', 'bad', 'hour', 'ago', 'start', 'think', 'appoint', 'tomorrow'], ['tafe', 'actual', 'quit', 'good'], ['true', 'form', 'bank', 'holiday', 'monday', 'look', 'like', 'might', 'raini', 'hope', 'hold', 'til', 'later', 'famili', 'amp', 'friend', 'plan', 'walk', 'picnic', 'today'], ['thank', 'follow', 'ad', 'twitter', 'page', 'comment', 'blog'], ['thank', 'soo', 'much', 'lil', 'mama', 'xoxo'], ['like', 'abl', 'say', 'truth', 'instead', 'magic', 'mysteri', 'tour', 'get', 'led'], ['lt', 'korn', 'guy', 'champion', 'world'], ['long', 'frisbe', 'golfer', 'quot', 'accident', 'quot', 'catch', 'one', 'back', 'head', 'friend'], ['ad', 'butt', 'name', 'phone', 'made', 'go', 'home', 'cold', 'love'], ['not', 'read', 'book', 'heard', 'feed', 'spay', 'love', 'great', 'motto', 'pet', 'owner', 'although', 'involv'], ['photo', 'great', 'night'], ['would', 'like', 'june', 'nineteenth', 'hurri', 'self', 'wait', 'impati', 'see', 'wes', 'carr'], ['listen', 'commentari', 'track', 'holiday', 'inn', 'never', 'thought', 'would', 'see', 'bing', 'crosbi', 'black', 'face', 'rest', 'movi', 'cute'], ['gt', 'quot', 'live', 'q', 'amp', 'quot', 'definit', 'best', 'part', 'twitter'], ['oh', 'hi', 'terri', 'good', 'good', 'gossip'], ['woohoo', 'well', 'done', 'start'], ['bank', 'holiday', 'mondaay', 'exam', 'tomorrow'], ['thank', 'good', 'read', 'blog', 'post'], ['hi', 'nice', 'meet', 'new', 'twitter', 'guess'], ['good', 'thought', 'regist', 'na'], ['also', 'brain', 'tumor', 'call', 'jefferi'], ['excit', 'lot', 'good', 'thing', 'happen', 'melbourn'], ['recov', 'mexican', 'fiesta', 'bit', 'much', 'good', 'time'], ['jealous', 'guess', 'walk', 'around', 'offic', 'tomorrow', 'malo'], ['new', 'babi', 'arriv', 'yesterday', 'fab', 'babi', 'boy', 'kilo', 'proud', 'happi'], ['spirit', 'uk', 'realli', 'lol', 'like', 'pic', 'way', 'xx', 'x'], ['dinner', 'amount', 'dinner', 'one', 'greater', 'say', 'afternoon', 'snack', 'pack', 'day', 'prob', 'ok'], ['glad', 'call', 'relationship', 'clear', 'happi', 'hear', 'voic', 'eventhough', 'absent', 'school'], ['awhh', 'age', 'not', 'matter', 'awesom', 'ladi'], ['hello', 'sound', 'good', 'count', 'follow'], ['yeah', 'suspicion', 'think', 'go', 'come', 'home', 'want', 'spend', 'ton', 'money', 'tool'], ['musicmonday', 'nicest', 'thing', 'kate', 'nash'], ['great'], ['good', 'luck', 'breakfast', 'search', 'us', 'go', 'bed', 'lol', 'goodnight', 'david'], ['look', 'forward', 'new', 'week', 'present', 'book', 'store', 'dillingen', 'today', 'interest', 'sale', 'seminar'], ['watch', 'jona', 'funni'], ['come', 'rochest', 'nikki', 'beer', 'hog', 'roast', 'alway', 'help'], ['make', 'feel', 'better', 'cocktail', 'honour', 'get', 'retort'], ['watch', 'movi', 'rock', 'babi', 'kitti', 'asleep', 'sling', 'hang', 'neck', 'cute'], ['nice', 'new', 'profil', 'pictur', 'glad', 'see', 'friend'], ['awoogahh', 'hehe', 'hope', 'get', 'decent', 'price', 'breakfast', 'real', 'quick', 'david'], ['would', 'hurt', 'touch', 'get', 'hit', 'not', 'not', 'month', 'would', 'not', 'hurt', 'na'], ['shrug', 'funni', 'plus', 'know', 'enjoy', 'tweet', 'whore', 'love'], ['morn', 'coffe', 'fresh', 'air'], ['welcom'], ['omg', 'mummi', 'bought'], ['hah', 'great', 'thank', 'wait', 'crazi', 'take'], ['weekend', 'also', 'great', 'two', 'friend', 'julia', 'four', 'day'], ['excit', 'thing', 'jay', 'room', 'arriv'], ['realli', 'realli', 'want', 'go', 'see', 'coralin'], ['care', 'eurovis', 'yes', 'vote', 'year'], ['happi', 'birthday', 'littl', 'sister', 'mine', 'also', 'good', 'night', 'priscilla'], ['want', 'honorari', 'filipino', 'follow', 'thank'], ['look', 'forward', 'coffe', 'drive', 'tomorrow', 'realli'], ['actual', 'use', 'standard', 'speaker', 'wire', 'standard', 'termin', 'solder', 'involv', 'anyth'], ['haha', 'good', 'bet'], ['clever', 'girl'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['oop', 'would'], ['consol', 'definit', 'one', 'hottest', 'gg', 'imho'], ['today', 'celebr', 'two', 'new', 'peopl', 'becom', 'australian', 'citizen', 'hope', 'good', 'dinner'], ['naw', 'miss', 'video', 'cool', 'look', 'sexi'], ['not', 'realli', 'injur', 'not', 'much', 'exercis', 'kg', 'come', 'alreadi', 'also', 'still', 'look', 'rent', 'place', 'fun', 'time'], ['prom', 'awesom'], ['good', 'boy', 'friend', 'like'], ['joey', 'get', 'new', 'lizard', 'fun', 'x'], ['wow', 'heheh', 'mode'], ['hope', 'train', 'rememb', 'way', 'go', 'bit', 'loopi', 'bank', 'holiday'], ['possess', 'beyond', 'certainti', 'made', 'rite', 'decis'], ['well', 'hope', 'good', 'weekend', 'even', 'good', 'day', 'work', 'alreadi', 'monday', 'far', 'good'], ['good', 'more', 'mr', 'bailey', 'birthday', 'today'], ['like', 'lott', 'lott', 'think', 'realli', 'hot', 'hot', 'good', 'night'], ['seen', 'doctor', 'today', 'everyth', 'fine', 'might', 'go', 'ultrasound', 'scan', 'precaut'], ['like', 'report', 'tester', 'new', 'packag', 'synolog', 'diskstat'], ['bruno', 'arghh', 'not', 'wait'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['thank', 'welcom', 'back'], ['thank', 'good', 'sir', 'surpris', 'good', 'afternoon', 'product'], ['welcom', 'home', 'glad', 'made', 'home', 'safe'], ['best', 'thing', 'life', 'free', 'x'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['cuddl', 'girl', 'cuddl', 'fun', 'soft'], ['good', 'take', 'rest'], ['not', 'get', 'urself', 'gin', 'whichev'], ['glad', 'like', 'done', 'load', 'arrang', 'one', 'could', 'find', 'blip'], ['fil', 'cool', 'peopl', 'like'], ['hey', 'thank', 'advic', 'amp', 'support'], ['sleepi', 'tabz', 'head', 'bed', 'fun', 'night', 'listen', 'next', 'episod', 'joss'], ['oh', 'see', 'like', 'morn', 'right', 'happi', 'breakfast', 'thumb'], ['tell', 'ill', 'beat', 'not', 'share'], ['aww', 'love', 'way', 'cute'], ['brilliant', 'sweeti', 'bless', 'joy'], ['hello', 'late', 'play', 'internet', 'love'], ['finish', 'studi', 'abnorm', 'psycholog', 'eek', 'still', 'two', 'day', 'fine'], ['ooh', 'coffe', 'great', 'idea', 'want', 'one'], ['lol', 'highlight'], ['touch', 'hand', 'video', 'simpli', 'amaz', 'love'], ['brave', 'standbi', 'line', 'theview', 'bright', 'amp', 'earli', 'today', 'hope', 'hear', 'book', 'amp', 'hope', 'get', 'time', 'charm'], ['know', 'would', 'make', 'realli', 'tire', 'put', 'sleep', 'would', 'sleep', 'good', 'lmao'], ['omg', 'never', 'would', 'believ', 'ahaha', 'love', 'felt', 'like', 'movi', 'real'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['sound', 'pretti', 'cool', 'great', 'job', 'man'], ['haha', 'cours', 'favorit', 'album', 'time'], ['lol', 'made', 'huge', 'mess', 'school', 'shirt', 'use', 'charcoal', 'stick', 'art'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['haha', 'hey', 'check', 'love', 'tweet'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['sunday', 'relax', 'enjoy', 'beauti', 'weather', 'good', 'nite'], ['late', 'news', 'much', 'need', 'tweet'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['yeah', 'great', 'outsid', 'without', 'amp', 'cold', 'air', 'love', 'sunni', 'day'], ['one', 'look', 'not', 'know', 'yet', 'follow', 'anyway', 'good', 'guy'], ['year', 'move', 'ibm', 'compat', 'would', 'love', 'desk', 'call', 'techi'], ['ohmygosh', 'know', 'would', 'make', 'night', 'sure', 'lol', 'goodnight'], ['not', 'ever', 'turn', 'part', 'brain', 'talk', 'crap', 'fun', 'come'], ['gave', 'great', 'smile', 'nice', 'way', 'end', 'day', 'right'], ['love', 'night', 'famili', 'guy', 'bed'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['want', 'say', 'best', 'screen', 'name', 'ever'], ['still', 'want', 'smartcar', 'not', 'wonder', 'design', 'ever'], ['love', 'worship', 'paper', 'fantast', 'day', 'lord', 'good', 'constant', 'surpris'], ['ah', 'bank', 'holiday', 'shift', 'work', 'fun'], ['lol', 'could', 'written', 'would', 'good', 'monday', 'week', 'might', 'catch', 'x'], ['want', 'leave', 'gurante', 'not', 'find', 'nobodi', 'els', 'like', 'mee'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['excel', 'never', 'know', 'lmao'], ['night', 'night', 'dolli', 'al', 'amaz'], ['go', 'eat', 'chip', 'anybodi', 'want', 'hahaha'], ['finish', 'watch', 'episod', 'amp', 'rubi', 'metaprogram', 'screencast', 'lot', 'cool', 'tip', 'great', 'need', 'code', 'practic', 'master'], ['man', 'behind', 'awesom', 'macarena', 'vid', 'great', 'work', 'love'], ['wish', 'ya', 'belgian', 'time', 'differ', 'suck', 'take'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['yeah', 'prom', 'night', 'craft', 'good', 'movi'], ['fantast', 'love', 'thing', 'krautrock'], ['like', 'support', 'friend', 'sad', 'friend', 'though'], ['thank', 'end', 'go', 'makino', 'chaya'], ['ah', 'haha', 'excit', 'ever', 'come', 'australia', 'definit', 'go', 'movi', 'night', 'fyi'], ['excit', 'hust', 'let', 'know', 'want', 'go', 'tattoo'], ['milk', 'gran', 'torino', 'bolt', 'bride', 'war', 'new', 'town', 'yeah', 'got', 'damn', 'love', 'longhaul'], ['watch', 'quot', 'know', 'quot', 'lovin'], ['funni', 'time', 'nebal', 'plc', 'score', 'game'], ['wow', 'not', 'realis', 'hami', 'lol', 'thank', 'comment', 'blog', 'dude'], ['soo', 'wake', 'way', 'back', 'sb', 'good', 'night', 'america'], ['lol', 'got', 'use', 'talkin', 'ya'], ['new', 'van', 'nice', 'one'], ['lol', 'know', 'funni', 'ahaha'], ['watch', 'yes', 'man', 'good'], ['perfect', 'day', 'throw', 'back', 'head', 'kiss', 'good', 'bye', 'love', 'cheer'], ['top', 'word', 'tweet', 'hug', 'good', 'peopl', 'fun', 'realli', 'quit', 'nice'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['may', 'fourth', 'happi', 'star', 'war', 'day'], ['love', 'find', 'new', 'follow'], ['good', 'morn', 'fella', 'joy', 'work', 'today', 'plan'], ['hey', 'good', 'daughter', 'still', 'asleep', 'son', 'draw', 'better', 'feed', 'v', 'soon'], ['probabl', 'get', 'chilli'], ['oh', 'ok', 'kool', 'keep', 'inform', 'bout', 'check', 'page', 'nice'], ['engag', 'may', 'best', 'guy', 'could', 'not', 'happier', 'love', 'jay'], ['love', 'session', 'king', 'queen'], ['thought', 'sever', 'time', 'got', 'good', 'friend'], ['omgsh', 'follow', 'gt', 'gt', 'paramor', 'lt', 'lt'], ['saw', 'none', 'baddi', 'best'], ['hey', 'girl', 'new', 'follow', 'think', 'awesom', 'gotten', 'chanc', 'get', 'close', 'donni', 'cool'], ['thankyou'], ['trust', 'matt', 'life', 'pictur', 'funn', 'night', 'though'], ['favorit', 'thing', 'fuzzbal', 'swine', 'flu'], ['wish', 'could', 'last', 'night', 'sound', 'like', 'rock', 'not', 'wait', 'see', 'pix', 'vid'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['morn', 'hope', 'r', 'well', 'bed', 'soon'], ['best', 'show', 'ever'], ['look', 'photo', 'shoot', 'myspac', 'pic', 'see', 'love'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['monday', 'morn', 'bath', 'soo', 'relax', 'ladi', 'luxuri', 'would', 'start', 'everi', 'day', 'like'], ['love', 'find', 'region', 'group', 'twitter', 'glad', 'could', 'connect', 'new', 'peopl'], ['realli', 'love', 'pictur'], ['love', 'continu', 'delight', 'us', 'amber', 'great', 'job', 'back', 'video', 'kudo'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['ha', 'fine', 'posit', 'amp', 'aha', 'know', 'huh', 'wht', 'long', 'convers', 'remeb', 'allyson', 'even', 'lnger', 'one', 'x'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['fun', 'blatant', 'ignor', 'advic'], ['well', 'uhm', 'guess', 'pretti', 'not', 'lol', 'still', 'sound', 'good'], ['play', 'around', 'amp', 'amp', 'fun', 'littl', 'kid', 'right', 'hahahahaha'], ['awesom', 'thank'], ['lol', 'hell', 'yes', 'keen', 'go', 'ski', 'trebl', 'cone', 'sometim', 'winter'], ['busi', 'alway', 'hope', 'great', 'time', 'travel', 'go', 'welcom', 'back'], ['get', 'self', 'nice', 'cup', 'tea', 'turn', 'music'], ['factori', 'ng', 'elmer', 'hihihi', 'sorri', 'corni', 'baka', 'si', 'ate', 'rubi', 'alam'], ['work', 'realli', 'hard', 'sometim', 'need', 'break', 'haha', 'let', 'know', 'need', 'help', 'anythin'], ['good', 'price', 'bulk', 'sms', 'premium', 'sms'], ['eminem', 'freak', 'awsom', 'go', 'back', 'seam', 'like', 'someth', 'big', 'insid', 'not', 'alien'], ['thank', 'daxx', 'god', 'bless', 'brother'], ['ah', 'hate', 'happen', 'race', 'eras', 'ms', 'week', 'go'], ['haha', 'see', 'go', 'wear', 'blue', 'heey', 'watch', 'jona', 'hahaha', 'not', 'watch', 'ep', 'yet', 'hope', 'show', 'soon', 'p'], ['good', 'morn', 'nice', 'see'], ['thank', 'alot'], ['got', 'twitter', 'palm', 'lt'], ['aw', 'welcom'], ['hehe', 'right', 'not', 'daft', 'may', 'good', 'month', 'french', 'contract'], ['happi', 'meal', 'toy'], ['oh', 'total', 'work'], ['happi', 'final', 'may', 'indi', 'horror', 'yet', 'still', 'remain', 'held', 'captiv', 'indi', 'spirit'], ['bright', 'school'], ['good', 'luck', 'excit'], ['amanda', 'peet', 'lot', 'like', 'love', 'love', 'classic', 'realli'], ['yeah', 'surrous', 'win'], ['sexxi', 'silli', 'weekend', 'bff', 'fun', 'time', 'haha'], ['nice', 'back'], ['green', 'day', 'boulevard', 'broken', 'dream', 'hinder', 'lip', 'angel', 'howi', 'day', 'collid', 'nice', 'song'], ['ito', 'en', 'tea', 'appl', 'delici', 'look', 'like', 'need', 'go', 'quihot', 'buy', 'goodnight'], ['rice', 'crispi', 'morn', 'bring', 'back', 'good', 'memori'], ['new', 'job', 'today', 'wish', 'luck', 'peep'], ['happi', 'birthday', 'hope', 'well', 'great', 'birthday', 'day'], ['invit', 'join', 'group', 'second', 'life', 'call', 'quot', 'ballist', 'autist', 'quot', 'cute', 'name'], ['thank'], ['birthday', 'boy', 'ipod', 'touch', 'dsi', 'sort', 'think', 'would', 'happi', 'ball', 'boot', 'age'], ['safe', 'ride', 'coast', 'not', 'go', 'even', 'though', 'windi', 'smile', 'cuz', 'know', 'better'], ['night', 'owl', 'alway', 'time', 'enjoy', 'scifi', 'show'], ['enjoy', 'time'], ['yee', 'haha', 'funniest', 'thing', 'dude', 'not', 'ball', 'bring', 'hot', 'gfs', 'along', 'watch', 'get', 'murk'], ['work', 'surpris', 'happi', 'thing', 'consid', 'ahh', 'loveli'], ['wow', 'easi', 'thank'], ['work', 'short', 'love', 'one', 'secondari', 'charact'], ['uhh', 'congrat', 'two', 'year', 'anniversari'], ['morn', 'hope', 'everyon', 'great', 'bank', 'holiday'], ['fighter', 'christina', 'aguilera', 'love', 'song'], ['lol', 'love', 'macbook', 'oh', 'imac', 'not', 'decid', 'love', 'ok', 'quot', 'imac', 'trump', 'quot', 'macbook'], ['took', 'ic', 'photo', 'look', 'good'], ['love', 'hot', 'heater', 'cold', 'warm', 'bodi', 'bed', 'day', 'yep'], ['guess', 'need', 'get', 'iphon', 'sure', 'look', 'bad', 'ass'], ['not', 'believ', 'monday', 'alreadi', 'week', 'vancouv', 'alreadi', 'gone', 'good', 'weekend'], ['lay', 'bed', 'one', 'spot', 'smell', 'like', 'vanilla', 'awesom'], ['cure', 'le', 'hangov', 'epic', 'night', 'bruis', 'batter', 'hectic', 'session', 'pretti', 'satisfi', 'thank', 'much'], ['get', 'fab', 'portrait', 'readi', 'upload', 'today'], ['feel', 'good', 'win', 'nice', 'softbal', 'champ', 'bring', 'season'], ['not', 'worri', 'happi', 'ryan'], ['thank', 'new', 'follow', 'well', 'went', 'strip', 'club', 'tonight', 'follow', 'tomorrow', 'much', 'love'], ['wow', 'trick', 'hoppusday', 'hype', 'today'], ['wahahahaha', 'want', 'naa', 'na', 'guess', 'hahahaha', 'yes', 'know', 'hahahaha', 'lol', 'narn', 'haha', 'joke'], ['got', 'school', 'detent', 'lunch', 'time', 'not', 'go', 'get', 'school'], ['go', 'get', 'tan', 'white'], ['rain', 'stuck', 'insid', 'work', 'today', 'would', 'probabl', 'peed', 'sunni', 'outsid', 'ok', 'rain'], ['wish', 'would', 'get', 'follow'], ['head', 'dinner', 'minut', 'not', 'wait', 'food'], ['bore', 'vector', 'shit', 'work', 'class'], ['good', 'tip', 'boss', 'would', 'read', 'exact', 'suppos', 'would', 'know', 'project'], ['taylor', 'swift', 'quot', 'belong', 'quot', 'amaz', 'love', 'mv'], ['hope', 'nice', 'relax', 'day', 'hope', 'well', 'wish', 'best'], ['finish', 'upload', 'latest', 'chap', 'final', 'watch', 'new', 'happyslip', 'vid'], ['thank', 'messag', 'work', 'see', 'repli'], ['chillin', 'christina', 'diana'], ['not', 'believ', 'spend', 'mani', 'mani', 'thousand', 'perfect', 'wed', 'make', 'happi', 'happi', 'coupl', 'make', 'perfect', 'wed'], ['happi', 'star', 'war', 'day', 'may', 'nice', 'get', 'holiday', 'celebr', 'fb'], ['think', 'pretti', 'much', 'figur', 'ad', 'box', 'helsinki', 'group', 'see', 'tweet'], ['thank', 'ver', 'much', 'compliment', 'level', 'best', 'know', 'not', 'let', 'mother'], ['especi', 'pink', 'one', 'lol', 'beauti', 'creatur'], ['newsread', 'fill', 'blog', 'yay', 'keep', 'blog', 'site', 'love', 'read'], ['haha', 'good'], ['good', 'hear', 'feel', 'though', 'scene', 'better', 'shown', 'tv'], ['thank', 'messag', 'work', 'see', 'repli'], ['love', 'girl', 'rock'], ['long', 'weekend', 'look', 'forward', 'end', 'may'], ['home', 'good', 'night', 'world'], ['think', 'way', 'promot', 'indi', 'design', 'benefit', 'moi', 'thought', 'indi', 'say'], ['sound', 'like', 'nice', 'weekend', 'ladi'], ['goodmorn', 'tweedl', 'happi', 'mood', 'think', 'alway', 'past', 'weekend', 'lol', 'vid', 'weeknd', 'come', 'soon'], ['school', 'today', 'teacher', 'cancel', 'lesson', 'chillin'], ['went', 'eastgarden', 'saw', 'lot', 'hillsong', 'pastor', 'go', 'nick', 'dinner', 'not', 'wait', 'talk', 'soon'], ['aww', 'kitti', 'best'], ['go', 'talk', 'ya', 'later', 'ishi', 'goodnight', 'kid'], ['nice', 'weather', 'today', 'alex'], ['come', 'back', 'drom', 'camp', 'cell', 'fone', 'recept', 'happi', 'back', 'qld', 'littl', 'bit', 'tire'], ['not', 'one', 'surpris', 'freetd', 'not', 'quot', 'work', 'quot', 'get', 'right', 'eventu'], ['good', 'morn', 'univers', 'today'], ['past', 'experi', 'redhead', 'eg', 'discrimin', 'even', 'general', 'info', 'bout', 'ginger', 'societi', 'help'], ['dammit', 'let', 'us', 'privat', 'session'], ['omg', 'slept', 'like', 'last', 'think', 'die', 'someth', 'remind', 'catcher'], ['hey', 'nice', 'pic'], ['hope', 'everyth', 'work', 'school', 'keep', 'updat', 'good', 'day'], ['bummer', 'yo', 'start', 'final', 'guess', 'see', 'around', 'second', 'week', 'june'], ['think', 'like'], ['not', 'wait', 'amp', 'amp', 'not', 'wait', 'see', 'concert', 'experi', 'live', 'uk', 'trailer', 'cinema', 'yesterday'], ['bore', 'hope', 'wlan', 'go', 'today'], ['wow', 'not', 'tell', 'cool', 'though', 'yet', 'see', 'one'], ['jersey', 'weather', 'good', 'chariti', 'drive'], ['monday', 'morn', 'lie', 'bed', 'instead', 'work', 'great', 'bank', 'holiday', 'requir'], ['night', 'night', 'twitter', 'love', 'phone', 'sleep'], ['love', 'joan', 'river', 'say', 'famili', 'first'], ['go', 'bed', 'night', 'tweeter'], ['heey', 'ice', 'winner'], ['took', 'endors', 'spot', 'thank', 'endors'], ['dude', 'saw', 'twitter', 'profil', 'long', 'time', 'love', 'background', 'way', 'way', 'cool'], ['final', 'leav', 'place', 'woohoo', 'school', 'time'], ['makeup', 'year', 'long', 'tyra', 'stole', 'away', 'us'], ['ha', 'would', 'point', 'ironi', 'last', 'spell', 'mistak', 'swear'], ['blue', 'oyster', 'cult', 'love', 'night', 'friend', 'around'], ['convert', 'armin', 'imagin', 'concert', 'iphon', 'fun', 'fun'], ['stuck', 'boo', 'jeez', 'shoot'], ['good', 'song'], ['iphon', 'owner', 'not', 'realli', 'choic', 'media', 'player', 'use', 'fyi', 'appl', 'make', 'terribl', 'window', 'softwar'], ['go', 'fun', 'night', 'help', 'host'], ['dustbin', 'babi', 'not', 'wait', 'x'], ['miss', 'se', 'asia', 'come', 'visit', 'us', 'time'], ['love', 'sex', 'magix', 'cool', 'great', 'rhythm'], ['yes', 'live', 'milwauke', 'would', 'love', 'attend', 'close', 'talk'], ['wolverin', 'hot', 'say', 'go', 'watch'], ['wow', 'heather'], ['aw', 'wish', 'ireland'], ['journey', 'wow', 'becam', 'cooler', 'hehe', 'possibl'], ['happi', 'star', 'war', 'day', 'may', 'lil', 'old', 'bro', 'home', 'play', 'lego', 'dozen', 'stormtroop'], ['nice', 'pair', 'shoe', 'check', 'nike', 'shoe', 'worth', 'buy'], ['vote', 'board', 'month', 'may', 'licens', 'member', 'good', 'luck', 'everybodi'], ['thank', 'hint'], ['without', 'tweet', 'feel', 'lost', 'hit', 'someth'], ['love', 'song', 'first', 'heard', 'video', 'gave', 'goosebump', 'thank', 'share'], ['back', 'athen', 'great', 'time', 'budapest'], ['wow', 'quit', 'long', 'time', 'studi', 'good', 'luck', 'job', 'hunt', 'also', 'mac', 'user', 'imac', 'side', 'hehe'], ['yaayi', 'not', 'wait', 'today', 'girl', 'got', 'get', 'dress', 'earli', 'go', 'earli'], ['run', 'earl', 'grey', 'lemon', 'tea', 'instead', 'whb'], ['good', 'morn'], ['move', 'new', 'apart', 'excit'], ['del', 'new', 'blogsit', 'yahoo', 'excit', 'bring', 'go', 'del'], ['offici', 'celebr', 'tweet', 'wow', 'proud', 'great'], ['watch', 'kunguma', 'poovum', 'konjuma', 'puravum', 'like', 'much', 'excel', 'cinematographi'], ['good', 'idea', 'remov', 'old', 'receipt', 'tissu', 'paper', 'nonsens', 'take', 'pic'], ['good', 'morn', 'world'], ['hey', 'wanda', 'great', 'tweet', 'mani', 'thank', 'info', 'dobro', 'fantast', 'sound', 'son', 'hous', 'fav', 'mine'], ['love', 'first', 'monday', 'may', 'bank', 'holiday'], ['cours', 'would'], ['alreay', 'feel', 'hang', 'soo', 'worth'], ['design', 'galor', 'yayi', 'progress', 'beyond', 'imagin', 'get', 'flatti', 'sort', 'internet', 'send', 'order'], ['nice', 'leav', 'offic', 'sun', 'still'], ['brian', 'teach', 'soccer', 'lot', 'fun'], ['road', 'trip', 'ftw', 'play', 'train', 'today', 'good'], ['follow', 'guy', 'could', 'shifti', 'worth', 'follow', 'regardless'], ['rain', 'fine', 'rain', 'know', 'fine', 'rain', 'wet'], ['morn', 'ali', 'big', 'thank', 'yesterday', 'love', 'alway', 'xx', 'bike', 'today', 'not', 'forget', 'get', 'helmet', 'ok'], ['oh', 'see', 'daili', 'life', 'shot', 'interest', 'well'], ['oh', 'gaha', 'cours', 'not', 'offend', 'would', 'would', 'love', 'play', 'day'], ['absolut', 'legend', 'love', 'love', 'love'], ['total', 'owe', 'week', 'duti', 'appreci', 'not', 'jill', 'town'], ['lmao', 'true'], ['may', 'happi', 'star', 'war', 'day', 'twirp', 'rofl'], ['spent', 'last', 'year', 'larg', 'ambival', 'dev', 'practic', 'feel', 'care', 'factor', 'return', 'look'], ['love', 'show'], ['thank', 'quick'], ['hehe', 'never', 'thorw', 'shoe', 'listen', 'varsiti', 'fanclub', 'surpris', 'surpris', 'sway', 'sway', 'babi', 'awesom'], ['not', 'believ', 'not', 'follow', 'anatomi', 'prac', 'tmw', 'tonight', 'structr', 'lwr', 'limb'], ['good', 'luck'], ['come', 'merci', 'alway', 'inspir', 'sinc', 'teenag'], ['thankyou', 'short', 'stack', 'bring', 'second', 'sydney', 'show', 'go', 'thank', 'guy', 'good', 'fan'], ['could', 'not', 'see', 'one', 'probabl', 'blind', 'link'], ['thank', 'vanilla', 'cake'], ['eat', 'hawain', 'pizza', 'breakfast', 'bit', 'cold'], ['control', 'tweet', 'post', 'facebook', 'use', 'hashtag', 'check', 'awesom', 'easi', 'app'], ['also', 'not', 'drive', 'part', 'could', 'afford', 'laptop', 'also', 'live', 'roommat', 'would', 'save', 'even'], ['second', 'episod', 'sonni', 'wac', 'new', 'zealand', 'tonight', 'still', 'amaz', 'ili', 'xx'], ['hectic', 'day', 'travel', 'pj', 'uniten', 'back', 'pj', 'work', 'cc', 'offic'], ['awesom', 'band'], ['inher', 'humil'], ['hi', 'name', 'chelsea', 'respect', 'opinion', 'come', 'dwts', 'great'], ['pleasur', 'anytim'], ['friend', 'sit', 'search', 'pictur', 'googl', 'haha', 'friend', 'found', 'pictur', 'father', 'haha'], ['ok', 'day', 'old', 'love', 'diagram', 'mainstream', 'adopt', 'curv', 'quot', 'everyon', 'quot'], ['wash', 'cloth', 'type', 'xd', 'woo'], ['happi', 'star', 'war', 'day', 'may', 'via', 'nige', 'goth'], ['direct', 'quot', 'want', 'invest', 'quot', 'question', 'big', 'chees'], ['morn', 'first', 'tea', 'day', 'record', 'voiceov', 'documentari', 'modern', 'druidri', 'good', 'time'], ['thank', 'follow', 'love', 'energi', 'site', 'spaz', 'not', 'help', 'drawn'], ['not', 'like', 'term', 'quot', 'partner', 'quot', 'come', 'relationship', 'busi', 'like', 'ugli', 'word', 'day'], ['sun', 'back', 'could', 'kind', 'weather', 'last', 'januari', 'februari', 'like', 'jacket'], ['hahaha', 'nonsens'], ['total', 'waitin', 'somethin', 'new', 'thought', 'provok'], ['manag', 'breath', 'sinc', 'get', 'news'], ['chiangmai', 'month', 'last', 'year', 'loy', 'krathong', 'best', 'festiv', 'ever'], ['ish', 'okay', 'love'], ['nice', 'photoshop', 'effect'], ['bore'], ['hah', 'thank'], ['haha', 'best', 'thing', 'offic', 'birthday', 'hey'], ['strawberri', 'afternoon', 'snack', 'love', 'strawberri', 'go', 'make', 'strawberri', 'smoothi', 'tonight', 'gym'], ['glad', 'not', 'go'], ['bright'], ['romant', 'hope', 'amaz', 'paparazzi', 'not', 'follow', 'need', 'privaci', 'doug', 'xoxo'], ['thank'], ['await', 'watch', 'lfctv', 'liverpool', 'vs', 'newcastl', 'game', 'yesterday'], ['cool', 'thank', 'respons', 'check', 'firefox'], ['heheheh', 'oh', 'love', 'purat', 'english', 'soo', 'much'], ['listen', 'ftsk', 'stop', 'bordum', 'haha', 'day', 'finish', 'cri', 'harold', 'ha', 'xx'], ['like', 'cheerio', 'scone', 'morn'], ['kati', 'malamut', 'dog', 'weight', 'well', 'tall', 'quit', 'good'], ['read', 'angel', 'amp', 'demon', 'think', 'oh', 'beauti', 'sunni', 'weather', 'provenc'], ['loss', 'like', 'get', 'unexpect', 'graduat', 'good', 'way'], ['dream', 'give', 'rise', 'realiti', 'said', 'would', 'not', 'walk', 'dream', 'fli', 'dream', 'believ', 'achiev'], ['yay', 'eat', 'proper', 'food'], ['oh', 'thank', 'thank', 'hope', 'video', 'onlin'], ['morn', 'happi', 'star', 'war', 'day', 'may'], ['star', 'war', 'day', 'may'], ['bingley', 'scene', 'toward', 'end', 'endear'], ['upload', 'lot', 'photo', 'priceless', 'memori'], ['chill', 'home'], ['week', 'final', 'rain', 'not', 'quit', 'enough', 'yet', 'seem', 'come', 'garden', 'happi'], ['script', 'amaaz', 'rusti', 'halo', 'favourit'], ['got', 'twilight', 'board', 'game', 'today', 'good', 'old', 'ebay'], ['great', 'avatar'], ['thank'], ['woken', 'bacon', 'egg', 'sandwich', 'bed', 'man', 'good', 'housem'], ['found', 'old', 'familiar', 'feel'], ['may', 'sound', 'stupid', 'bought', 'mask'], ['thank', 'see', 'back', 'smile'], ['copi', 'amp', 'past', 'fuck', 'cunt', 'tosser', 'piss', 'flap', 'time'], ['thank', 'folow'], ['meant', 'look', 'like', 'tiger', 'stupid', 'predict', 'text'], ['thank', 'way'], ['woke', 'end', 'got', 'bore'], ['aww', 'love'], ['aww', 'cute', 'smile'], ['greaat', 'mine', 'please'], ['like', 'light', 'wall', 'amp', 'shatter', 'great', 'work', 'germani', 'must', 'get', 'know', 'soon', 'possibl'], ['good', 'luck', 'haha', 'love', 'charact', 'bring', 'win', 'movi'], ['jus', 'excit', 'c', 'name'], ['tink', 'whatev', 'f', 'k', 'mean', 'jkuk', 'girl', 'show', 'us', 'love', 'xx'], ['send', 'photo', 'man', 'ili', 'favourit'], ['jonathan', 'tri', 'stay', 'realli', 'not', 'wait', 'till', 'timezon', 'much', 'easier'], ['nice', 'big', 'music', 'fanci', 'dream', 'land'], ['done', 'good', 'nite'], ['make', 'dinner', 'yummi'], ['hey', 'nice', 'see', 'saturday', 'glad', 'thing', 'go', 'well'], ['cuppa', 'chill', 'lovebank', 'holiday', 'monday'], ['thank', 'soo', 'much', 'snoopi', 'love', 'bit', 'perfect', 'fit', 'got', 'morn', 'peac'], ['bodi', 'tom', 'novi', 'voodoo', 'child', 'rogu', 'trader', 'good', 'memori', 'song'], ['event', 'write', 'song', 'finish', 'tmnt', 'vs', 'mmpr', 'song', 'excit', 'record', 'wednesday'], ['yeah', 'give', 'someth', 'useless', 'crib'], ['need', 'stop', 'take', 'photo', 'peopl', 'camera', 'luckili', 'photo', 'deliv'], ['urg', 'play', 'wow', 'wait', 'week', 'til', 'dad', 'til', 'mcfli', 'excit', 'l'], ['happi', 'birthday', 'mee', 'happi', 'birthday', 'mee'], ['thank', 'follow', 'look', 'forward', 'tweet'], ['hope', 'not', 'come', 'piggi', 'flu', 'eye', 'red', 'neck', 'longer', 'hold', 'heavi', 'head', 'time', 'sleep', 'sogni'], ['lol', 'make', 'cooki', 'hit'], ['glad', 'like', 'post', 'look', 'back', 'end', 'sub', 'blog', 'automat', 'send', 'url', 'verifi'], ['not', 'burn', 'egg', 'blast', 'food', 'great', 'weekend', 'awesom', 'carn', 'asada'], ['not', 'find', 'stuff', 'amus'], ['oh', 'good', 'review'], ['left', 'work', 'inventori', 'way', 'easi', 'got', 'put', 'highschool', 'music', 'cd', 'amaz', 'goodnight', 'goodnight', 'everyon'], ['woohoo', 'congrat', 'friend', 'boyfriend'], ['tut', 'tut', 'not', 'charg', 'fun', 'thr', 'new', 'palm', 'pre', 'charg', 'platform', 'look', 'nifti', 'though'], ['oh', 'yeaah', 'still', 'bffs', 'aha'], ['fulli', 'inspir', 'write', 'song'], ['releas', 'hope'], ['cool', 'not', 'wait', 'dustbin', 'babi'], ['hope', 'great', 'certain', 'spent', 'enough', 'time', 'studi'], ['super', 'happi', 'new', 'interest', 'rate', 'whoop', 'whoop'], ['work', 'resum', 'listen', 'rain', 'enjoy', 'circus', 'boy'], ['yeah', 'lookout', 'tweet', 'happi', 'tweet'], ['ah', 'good', 'deal', 'hope', 'find', 'new', 'music'], ['andrew', 'idea', 'rest', 'think', 'ben', 'princeton', 'could', 'fun', 'lol', 'go', 'late'], ['soo', 'week', 'evil', 'laugh'], ['thank', 'ad', 'befriend', 'uh', 'oh', 'never', 'mind', 'thank'], ['realli', 'suck', 'feel', 'bad', 'least', 'woke', 'eight'], ['pool', 'parti', 'sherraton', 'n', 'brodi', 'blast', 'friend', 'made', 'even', 'bbqd', 'home', 'great', 'convers', 'funki', 'n', 'lift', 'day'], ['realli', 'like', 'pink', 'saw', 'live', 'new', 'advert'], ['omedetou', 'truli', 'excit', 'expect', 'news', 'decis', 'decis', 'pleas', 'let', 'know', 'soon'], ['thank'], ['may', 'fourth', 'happi', 'star', 'war', 'day'], ['jame', 'not', 'take', 'bad', 'pic', 'coloss', 'loveli', 'wonder', 'spelt', 'coloss', 'right'], ['go', 'home', 'seen', 'new', 'twitter', 'design', 'not'], ['yay', 'joss', 'come', 'saturday'], ['thank', 'like', 'joe', 'cloth', 'rip', 'kevin', 'scream', 'quot', 'quot', 'xd'], ['hope', 'fab', 'time', 'saw', 'twitpic', 'love', 'wore', 'dress', 'great', 'pic'], ['noth', 'wrong', 'samantha'], ['haha', 'nice', 'pic', 'look', 'abit', 'like', 'school'], ['oh', 'right', 'sorri', 'get', 'ya', 'still', 'email', 'wow', 'cool'], ['yessir', 'right'], ['would', 'love', 'come', 'visit', 'korea', 'next', 'flight'], ['noth', 'like', 'parantha', 'breakfast'], ['haha', 'hope', 'great', 'laugh', 'laughter', 'best', 'medicin'], ['sound', 'like', 'best', 'sort', 'work', 'jenni', 'seem', 'love', 'nice', 'hear', 'meet', 'flesh'], ['come', 'leav', 'gretel', 'alon', 'like', 'logi'], ['ohh', 'forgot', 'tell', 'last', 'night', 'alton', 'tower', 'touch', 'shark', 'amaz', 'nt', 'massiv', 'one', 'though'], ['drink', 'cordial', 'yes', 'bore'], ['forgot', 'lumpia', 'pancit', 'fridg', 'last', 'night', 'yay'], ['finish', 'capit', 'transact', 'exam', 'anoth', 'monkey', 'climb', 'back', 'look', 'forward', 'glorious', 'mood', 'tomorrow'], ['break', 'phone', 'call', 'plenti', 'catch', 'movi', 'doo'], ['bet', 'great', 'bag', 'not', 'wait'], ['get', 'canada', 'not', 'wtf', 'serious', 'not', 'allow', 'cross', 'border'], ['boy', 'stupid', 'throw', 'rock'], ['get', 'hair', 'cut', 'tomorrow', 'later', 'today', 'say', 'excit', 'swag', 'alreadi', 'jus', 'turn'], ['listen', 'lili', 'allen', 'last', 'album', 'quit', 'good'], ['good', 'luck', 'go', 'sleep', 'work', 'stupid', 'paper', 'worri', 'not', 'alon', 'readi', 'record', 'album'], ['hey', 'lui', 'thank', 'flash', 'prof', 'code', 'thank', 'cough'], ['thank', 'pp'], ['want', 'convers', 'use', 'list', 'not', 'convinc', 'char', 'less', 'repli', 'convers'], ['good', 'morn', 'lincolnshir', 'could', 'use', 'exercis', 'also'], ['sometim', 'long', 'weekend', 'need', 'good', 'convers', 'thank', 'bro'], ['wear', 'lot', 'white'], ['song', 'suggest', 'anyth', 'veronica', 'first', 'album', 'secret', 'life', 'would', 'good', 'choic'], ['anyon', 'drive', 'newish', 'diesel', 'car', 'advic', 'pros', 'con', 'not', 'interest', 'old', 'diesel', 'car', 'need', 'recent', 'model', 'experi', 'eg', 'suv'], ['nice', 'must', 'see'], ['hope', 'great', 'weekend', 'congratul'], ['gud', 'nite', 'catch', 'tomorrow'], ['fast', 'amp', 'furious', 'excel', 'movi', 'andi', 'great', 'guy', 'time', 'lol'], ['may'], ['made', 'offici', 'unavail', 'best', 'friend'], ['sherrieshepherd', 'gave', 'link', 'give', 'twitter', 'tip', 'hope', 'help'], ['oh', 'happi', 'judd', 'day', 'haha', 'judday'], ['haha', 'nice', 'need', 'iphon'], ['noth', 'import', 'like', 'look', 'like', 'old', 'hairstyp', 'actual'], ['saw', 'start', 'follow', 'welcom', 'akl'], ['ha', 'ha', 'thank'], ['great', 'idea'], ['heyi', 'nat', 'twitter', 'twitter', 'twitter', 'get', 'use', 'hahaha', 'love', 'youu'], ['andi', 'said', 'hour', 'hope', 'actual'], ['not', 'cri', 'see', 'tomorrow', 'muah'], ['new', 'supernatur', 'tonight'], ['fun'], ['sorri', 'tripl', 'twitter', 'post', 'troubl', 'account', 'tri', 'not', 'clutter', 'twitterspher'], ['exact', 'silent', 'treatment', 'great', 'tortur', 'method'], ['go', 'act', 'school', 'yayay'], ['thank', 'feel', 'happi', 'make', 'day', 'great', 'one', 'enjoy', 'fullest', 'n', 'fun', 'alway'], ['anyon', 'need', 'help', 'imag', 'let', 'know', 'convers', 'forum', 'link'], ['heh', 'thank', 'ador', 'plug', 'cough', 'info', 'cough', 'cough'], ['today', 'noth', 'not', 'sure', 'though'], ['today', 'jon', 'doe', 'play', 'moho', 'ia', 'excit', 'go', 'funni', 'carri', 'equip', 'backlin'], ['cont', 'bastard', 'version', 'french', 'fun', 'believ'], ['rachmaninoff', 'make', 'happi', 'panda'], ['let', 'us', 'hope', 'retir', 'not', 'cancel', 'reason'], ['relax', 'movi', 'treat'], ['still', 'love', 'marki', 'mark'], ['massiv', 'headach', 'want', 'eat', 'nacho'], ['first', 'day', 'work', 'not', 'excit', 'lay', 'place', 'everyth', 'well', 'job'], ['dsi', 'latest', 'nintendo', 'ds', 'camera', 'stuff', 'built', 'gadget', 'hous', 'luckili', 'get', 'blackberri', 'free', 'work'], ['come', 'bulgaria', 'great', 'fan'], ['thank'], ['wow', 'wow', 'hope', 'get', 'sort', 'gut', 'near', 'futur'], ['yess', 'awesome', 'follow', 'love', 'molli', 'hahah', 'chat', 'us'], ['adob', 'effect', 'ms', 'sql', 'would', 'nicer', 'sleep'], ['bag', 'look', 'stylish', 'congrat'], ['lol', 'great'], ['thank', 'tweetstat', 'confirm', 'long', 'suspect', 'twitter', 'keep', 'way', 'late'], ['organis', 'day', 'indulg', 'amp', 'luxuri', 'pamper', 'day', 'finger', 'cross', 'like', 'surpris'], ['grab', 'least', 'hour', 'half', 'sleep', 'girl', 'get', 'life'], ['congrat', 'first', 'person', 'say', 'today'], ['thank', 'follow'], ['morn', 'kik', 'enjoy', 'breakfast'], ['legal', 'student', 'twitter', 'would', 'love', 'coupl', 'refer', 'case', 'inolv', 'bias', 'juri', 'juri', 'nullif', 'etc'], ['thank'], ['way', 'inconveni'], ['go', 'knit', 'felt', 'heart', 'toy', 'mum', 'mother', 'day', 'great', 'not', 'realli', 'love', 'anyth', 'give', 'love', 'ya', 'mummi'], ['humbl', 'best', 'go', 'work', 'paintbal', 'day', 'soon', 'fuel', 'strip', 'doubt'], ['sorri', 'disappoint', 'not', 'big', 'nascar', 'fan', 'still', 'decent', 'redneck'], ['yah', 'feel', 'better', 'beaut', 'day', 'sophi', 'razz', 'skateboard', 'park', 'yrs', 'char', 'happi', 'school'], ['heheh', 'hello', 'good', 'see', 'twitter'], ['tire', 'friendster', 'account'], ['yaawwnn', 'thank', 'bank', 'holiday', 'let', 'us', 'see', 'today', 'prepar', 'us'], ['old', 'blue', 'slow', 'code', 'nowaday', 'laptop', 'borrow', 'work', 'let', 'us', 'loung', 'brows'], ['best', 'job', 'world', 'amp', 'yes', 'australia'], ['new', 'project', 'go', 'incred', 'well', 'not', 'tire', 'today', 'think', 'get', 'monday', 'perman'], ['thank', 'tweetstat', 'confirm', 'long', 'suspect', 'twitter', 'keep', 'way', 'late', 'ht'], ['like'], ['mani', 'weirdo', 'one'], ['feel', 'consider', 'better', 'hour', 'sleep', 'still', 'not', 'right', 'though'], ['hello', 'love', 'follow', 'love', 'peac', 'hous', 'lolz', 'need', 'weather'], ['haha', 'good', 'slight', 'geeki', 'funni', 'x'], ['studio', 'sound', 'import', 'oh', 'mildura', 'total', 'bore', 'byee'], ['jip', 'good', 'one'], ['yogurt', 'home', 'ladi', 'mona', 'fone', 'w', 'song', 'yoplait', 'lookin', 'forward', 'hrs', 'w', 'tmorrow', 'amp', 'rehears', 'gnight'], ['excit', 'summer', 'steve', 'winwood', 'eric', 'clapton', 'eagl', 'death', 'metal', 'ahh', 'dead', 'weather'], ['kiss', 'kiss', 'stu', 'deezi', 'bed', 'sweet', 'dream', 'madam', 'hehe', 'xxoxo'], ['appl', 'fritter', 'like', 'perfect', 'not', 'think'], ['egg', 'today', 'shame', 'look', 'forward', 'egg', 'bacon', 'sandwich'], ['come', 'sydney', 'cool', 'meet', 'id', 'love', 'meet', 'favourit', 'comedian'], ['haha', 'glad', 'everyth', 'good', 'happi', 'alway', 'woohoo'], ['back', 'work', 'audit', 'away', 'time', 'make', 'hard', 'decis', 'happi'], ['houstatlantavega', 'sooner', 'later', 'novemb', 'night', 'success', 'last', 'hour', 'heavenn'], ['watch', 'coralin', 'last', 'night', 'realli', 'good', 'anim', 'excel', 'creativ', 'inspir'], ['tweet', 'sometim', 'tomorrow', 'anoth', 'busi', 'day', 'goodnight', 'hooker', 'chicki', 'lol'], ['twitter', 'seat', 'exam', 'hall', 'start', 'pray', 'seat', 'bless', 'oh', 'wisdom', 'flow', 'whee'], ['anywher', 'not', 'long', 'superman', 'good', 'sweet'], ['morn', 'world', 'healthyliv', 'updat', 'weight', 'morn', 'go', 'right', 'direct'], ['sweet'], ['home', 'time', 'long', 'moon', 'tonight', 'gba', 'bhb', 'tuesday', 'oh', 'drummer', 'boy', 'niight'], ['monday', 'good'], ['well', 'actual', 'went', 'got', 'driver', 'licens', 'would', 'not', 'worri', 'bus', 'shit', 'haha'], ['love', 'head', 'heel', 'one', 'fave', 'movi', 'look', 'stun', 'last', 'night'], ['may', 'happi', 'star', 'war', 'day'], ['relax', 'like', 'translat', 'swedish', 'got', 'take', 'look', 'next', 'comment'], ['hope', 'know', 'woo', 'haha', 'time', 'excit', 'lol'], ['agre', 'redesign', 'site', 'look', 'great', 'comput', 'amp', 'phone'], ['still', 'like', 'coldplay', 'said', 'one', 'fav', 'cds', 'r', 'one', 'fav', 'band'], ['oh', 'ok', 'thank'], ['brain', 'go', 'explod', 'minut', 'full', 'number', 'cliimb', 'climb', 'mt', 'number'], ['write', 'real', 'look', 'paper', 'letter', 'not', 'done', 'one', 'long', 'time', 'sad', 'realli'], ['digiqom', 'welcom', 'new', 'team', 'member', 'compani', 'today'], ['yes', 'secur', 'masculin'], ['may'], ['twitter', 'like', 'boss', 'thank', 'savv'], ['wish', 'babe', 'would', 'ball'], ['aha', 'bet', 'cute', 'wear', 'nu', 'time', 'cn', 'show', 'mine', 'cn', 'show'], ['hope', 'good', 'flight'], ['yeah', 'least', 'tri', 'good', 'night', 'amp', 'visit', 'chiro', 'tomorrow'], ['oh', 'birthday', 'happi', 'birthday', 'andr', 'michell'], ['yeah', 'quick', 'use', 'addi', 'bought', 'sat', 'make', 'even', 'smoother'], ['break', 'leg', 'not', 'real', 'say', 'p', 'quot', 'good', 'luck', 'quot'], ['hope', 'see', 'besti', 'today'], ['happi', 'star', 'war', 'day', 'may', 'fourth'], ['bank', 'holiday', 'bliss', 'jeremi', 'kyle', 'without', 'even', 'bother'], ['sweet', 'dream'], ['actual', 'realli', 'like', 'merlin', 'last', 'night', 'part', 'bit', 'eh', 'part', 'chick', 'sing', 'like', 'whoa'], ['safe', 'flight', 'home', 'jade', 'xx'], ['job', 'still', 'wait', 'friend', 'thank', 'ask', 'need', 'littl'], ['actual', 'great', 'start', 'day', 'hope', 'continu', 'get', 'new', 'american', 'overs', 'bed', 'even'], ['well', 'hate', 'leav', 'must', 'sleep', 'hope', 'chat', 'later', 'enjoy', 'li', 'l', 'night', 'owl'], ['unload', 'leopard', 'tank', 'next', 'offic', 'window', 'hope', 'not', 'piss', 'anyon'], ['ohh', 'grandpa', 'stabl', 'not', 'kno', 'detail', 'til', 'tomorrow', 'visit', 'keep', 'fam', 'goodnit'], ['happi', 'star', 'war', 'day', 'may'], ['rain', 'pretti', 'nice', 'meter', 'cobbl', 'way'], ['dad', 'take', 'school', 'amp', 'pick', 'tomoz', 'plus', 'drama', 'almost', 'day', 'score', 'bludg', 'day'], ['glad', 'cos', 'would', 'not', 'lose', 'fan', 'anyway', 'get', 'see', 'guy', 'saturday', 'even', 'leicest', 'better', 'good'], ['muhahaha', 'join', 'tweet', 'cult', 'lol', 'heya', 'way', 'twitterif', 'good', 'iphon', 'app', 'use'], ['thank'], ['thank'], ['yahoo', 'volleybal', 'hike', 'eat', 'fish', 'eye', 'wit', 'sleep', 'beach', 'jump', 'rock', 'amp', 'hang', 'jurass', 'park', 'film'], ['look', 'feedback', 'often', 'serious', 'crazier', 'topic', 'better'], ['greatest', 'friend', 'entir', 'world'], ['hey', 'fellow', 'graduat'], ['chees', 'counter', 'go', 'thank'], ['not', 'happi', 'enjoy', 'cos', 'thought', 'like', 'see', 'yaya', 'hav', 'follow', 'woop'], ['ha', 'know', 'right'], ['saw', 'tv', 'best', 'job', 'world', 'good', 'luck'], ['java', 'concurr', 'practic', 'probabl', 'best', 'java', 'book', 'ever', 'bought', 'recip', 'interrupt', 'block', 'io', 'op'], ['skimchamp', 'taxi', 'servic', 'best', 'land'], ['thank'], ['pleas', 'not', 'chang', 'anyth', 'site', 'love', 'alway', 'love', 'even', 'pleas', 'pretti', 'pleas'], ['studi', 'day', 'finish', 'care', 'plan', 'hungri', 'hell', 'go', 'treat', 'burrito', 'good', 'day', 'work'], ['youu', 'aass', 'aass', 'lool'], ['go', 'lazi', 'day', 'today'], ['brecki', 'good', 'morn', 'x'], ['regard', 'knowledg', 'like', 'littl', 'robot', 'movi', 'quot', 'short', 'quot', 'alway', 'cri', 'quot', 'imput', 'imput', 'quot'], ['yes', 'yes', 'especi', 'wine', 'mushroom', 'umm', 'love', 'mushi'], ['gun', 'rose', 'babi', 'yay', 'hopin', 'would'], ['hehe', 'nice'], ['cinema', 'tonight', 'half', 'price', 'monday'], ['roflmao', 'funni', 'web', 'portal'], ['eat', 'tito', 'home', 'made', 'ice', 'cream', 'yum'], ['humm', 'ador', 'mark', 'hoppusday', 'go', 'throw', 'hoppusday', 'nice', 'hoppusday', 'peopl'], ['today', 'quiz', 'time', 'goat', 'game', 'show', 'play', 'prize', 'plus', 'tommi', 'free', 'drink', 'today', 'x'], ['not', 'see', 'could', 'possibl', 'anoth', 'choic'], ['hello', 'michael', 'nice', 'day'], ['hope', 'someth', 'right', 'influx', 'review', 'year', 'old', 'fan', 'fic', 'tell', 'love', 'style', 'write', 'hp'], ['look', 'delish', 'want', 'welcom', 'back', 'seattl'], ['want', 'welcom', 'back', 'plurk'], ['yeah', 'xd', 'close', 'alreadi', 'xd', 'talk', 'anyth', 'love', 'gurrl'], ['great', 'weekend', 'even', 'though', 'site', 'not', 'move', 'plenti', 'thing', 'learn', 'keep', 'faith', 'look', 'futur'], ['weirdest', 'dream', 'ever', 'not', 'see', 'owi', 'credo', 'brighi', 'hate', 'guy'], ['would', 'appreci', 'would', 'big', 'tim', 'kaul', 'fan', 'ya', 'know'], ['pack', 'gym', 'bag', 'gym', 'bit', 'squee', 'happiest', 'whem', 'go'], ['would', 'awesom', 'lol'], ['mention', 'twitter', 'group', 'follow', 'would', 'grate'], ['lol', 'minut', 'slow', 'sec', 'fun', 'tear', 'old', 'poster', 'put', 'new', 'one'], ['follow', 'tomorrow', 'sleep', 'well'], ['awesom', 'lucki'], ['welcom', 'everyon', 'live', 'twitter'], ['scrub', 'tonight', 'woo'], ['caww', 'sound', 'good', 'hope', 'right'], ['yeah', 'realli', 'fascin', 'paper', 'not', 'credit', 'goe', 'discoveri'], ['home', 'sweet', 'home', 'lt', 'go', 'see', 'hannah', 'montana', 'movi', 'today', 'lt', 'dd'], ['r', 'random', 'thing', 'mind', 'chennai', 'heat', 'get', 'assur', 'b', 'often'], ['rachel', 'allen', 'date', 'bar', 'easi', 'make'], ['one', 'reason', 'thought', 'quot', 'kid', 'quot', 'quot', 'nah', 'let', 'us', 'get', 'piano', 'quot', 'poor', 'bugger'], ['oh', 'yea', 'pain', 'went', 'littl', 'bit', 'laugh', 'hard', 'good', 'nice'], ['happi', 'star', 'war', 'day', 'quot', 'may', 'quot', 'read'], ['look', 'absolut', 'beauti', 'eleg'], ['thank', 'follow'], ['thnx', 'follow'], ['ja', 'deze', 'interessant', 'text', 'messag', 'limit', 'charact'], ['oh', 'realli', 'hope', 'good', 'one', 'tri', 'get', 'attent'], ['oh', 'gosh', 'cute'], ['much', 'welcom'], ['morn', 'babe', 'plan', 'overdo', 'today', 'lol', 'hope', 'rest', 'amp', 'put', 'feet', 'xx'], ['lol', 'simpson', 'quot', 'first', 'day', 'new', 'school', 'lisa', 'fun', 'bart', 'not', 'quot'], ['go', 'look', 'refriger', 'tast', 'snack', 'eat'], ['studi', 'spite', 'whatev', 'wonder', 'unforgett', 'weekend', 'dc'], ['love', 'vintag', 'book', 'shop', 'morn'], ['anoth', 'water', 'leak', 'appart', 'good', 'side', 'get', 'meet', 'girl', 'previous', 'amp', 'next', 'floor'], ['oh', 'whoop', 'bad'], ['aww', 'preciat', 'love', 'hunni'], ['hey', 'guy', 'ask', 'item', 'guy', 'put', 'talent', 'show', 'big', 'fan', 'whoo'], ['bom', 'dia', 'good', 'morn', 'guten', 'morgen', 'return', 'twitter'], ['know', 'love'], ['back', 'origin', 'surpris', 'good'], ['drill', 'sergeant', 'voic', 'everybodi', 'wake', 'fuck', 'flick', 'everyon', 'light', 'est', 'rise', 'shine', 'beetch', 'lol', 'jk'], ['oo', 'yay', 'follow', 'want', 'help'], ['haha', 'need', 'get', 'better', 'shape', 'first', 'cagebal', 'thursday', 'dead', 'sofa', 'whole', 'even'], ['morn', 'everon', 'sing', 'tuck', 'turn', 'light', 'kept', 'safe', 'sound', 'night'], ['life', 'know', 'not', 'exist', 'anymor'], ['morn', 'hope', 'good', 'day', 'despit', 'revis'], ['one', 'fan', 'vip', 'one', 'winner', 'twist', 'vid', 'het', 'si', 'weer', 'een', 'raar', 'gelopen', 'chao'], ['dump', 'worri', 'stress', 'fire', 'fun', 'profound', 'free'], ['welcom', 'dk', 'jaoo'], ['love', 'listen', 'peopl', 'practis', 'piano', 'downstair'], ['music', 'alway', 'noon', 'els', 'understand', 'agre', 'import', 'singl', 'song', 'chang', 'whole', 'day'], ['wow', 'good', 'mac', 'xp', 'via', 'parallel', 'ever', 'need', 'tester'], ['ahahahaha', 'love', 'twilight', 'not', 'liee', 'know', 'love', 'robert', 'pattinson'], ['aah', 'well', 'friend', 'wonder', 'great', 'weather', 'good'], ['art', 'thou', 'miss'], ['go', 'bodi', 'pump', 'yoga', 'go', 'enjoy', 'love', 'bbq', 'famili', 'love', 'may', 'day', 'holiday'], ['cos', 'not', 'ipod', 'touch', 'yet', 'not', 'mean', 'not', 'look', 'app', 'soo', 'cool', 'twitter', 'school', 'awesom'], ['ha', 'good', 'morn', 'may', 'fourth'], ['celebr', 'fact', 'norwich', 'citi', 'got', 'releg', 'yesterday', 'seem', 'like', 'aw', 'nice', 'mr', 'fri', 'footbal', 'rival'], ['cute', 'fun', 'watch'], ['watch', 'persepoli', 'broken', 'english', 'also', 'nice', 'sunday'], ['wave', 'back', 'good', 'day'], ['final', 'found', 'perfect', 'matt', 'lcd', 'cleaner', 'screen', 'cleaner', 'ftw'], ['yay', 'final', 'made', 'sale', 'galleri', 'realli', 'help', 'artist'], ['lalaland', 'like', 'song', 'much', 'anyhoo', 'grr', 'cold', 'thank', 'good', 'though', 'sore', 'throat', 'gone'], ['ohh', 'love', 'glad', 'great', 'time'], ['awesom', 'effort', 'even', 'not', 'luck', 'tassi'], ['birthday', 'today', 'wish', 'good', 'one', 'asshol', 'sleepytim'], ['went', 'piggi', 'bank', 'man', 'hell', 'lot', 'money', 'easili', 'live', 'next', 'week'], ['aww', 'use', 'littl', 'not', 'much', 'haa', 'lazi', 'shiit'], ['thankyou', 'much', 'rock'], ['haha', 'love', 'soulja', 'boy', 'new', 'song'], ['hey', 'mia', 'total', 'ador', 'music', 'cd'], ['wellington', 'monet', 'exhibit', 'casual', 'bump', 'wayn', 'bradi', 'hotel', 'lobbi', 'mega', 'excit'], ['seem', 'nice', 'generous', 'know', 'stuff'], ['love', 'johnni', 'deep', 'look', 'public', 'enemi', 'l', 'catch', 'film', 'show', 'hk'], ['listen', 'music', 'text', 'umm', 'msn', 'lol', 'bit', 'bore', 'lol', 'garth', 'brook', 'woo', 'love', 'hehe', 'lt'], ['well', 'good', 'luck'], ['thank', 'follow', 'wish', 'ya', 'best'], ['oh', 'not', 'love', 'vodafon', 'seri', 'ad', 'best', 'picturis', 'ever'], ['happi', 'birthday', 'husband'], ['googl', 'amp', 'look', 'lot', 'site', 'check', 'first', 'excit'], ['yup', 'get', 'better'], ['thank', 'follow'], ['oh', 'wow', 'fast', 'life', 'go', 'month', 'ya', 'xd'], ['good', 'night'], ['thank', 'know'], ['enjoy', 'coffe', 'miss', 'petit', 'puce', 'adica', 'puricel', 'franceza'], ['cool', 'love'], ['gave', 'kiss', 'flirt', 'cours', 'like'], ['nick', 'cute', 'tiger', 'costum', 'ahaha', 'made', 'day'], ['eat', 'one', 'big', 'subway', 'cooki', 'glass', 'warm', 'milk', 'yum'], ['hahaha', 'not', 'even', 'notic', 'name', 'lice'], ['see', 'morn', 'rush', 'forum', 'shoutbox', 'overheat', 'bcoz', 'campaign', 'fli', 'skirt'], ['would', 'advis', 'watch', 'cinema', 'sure', 'effect', 'worth', 'unless', 'monster', 'tv', 'home'], ['pleasur', 'murray'], ['greet', 'joan', 'want', 'say', 'still', 'miss', 'wake', 'pleasant', 'person', 'amp', 'face', 'hug', 'angel'], ['realli', 'good', 'bank', 'hoilday'], ['hell', 'unlucki', 'come', 'next', 'week'], ['okay', 'fun', 'eat', 'lol', 'rememb', 'shaun', 'love', 'haha'], ['haha', 'chocol', 'alway', 'knew', 'heart', 'stomach', 'wait', 'till', 'tri', 'truffl'], ['enter', 'two', 'month', 'period', 'awesom', 'see', 'flip', 'side'], ['haha', 'hell', 'ya', 'id', 'love', 'find', 'boy', 'toke', 'sexi', 'bike'], ['sure', 'want', 'know', 'make', 'want', 'run', 'news', 'happi', 'star', 'war', 'day'], ['wow', 'thank', 'lot', 'not', 'believ', 'not', 'think', 'xd'], ['thank', 'ill', 'cross', 'finger', 'rain', 'stop'], ['went', 'see', 'wolverin', 'husband', 'work', 'today', 'pretti', 'good'], ['heyi', 'birthday', 'happi', 'birthday'], ['interest', 'day', 'good', 'overal'], ['got', 'home', 'school', 'fun', 'oh', 'way', 'music', 'school'], ['oh', 'make', 'sens', 'well', 'offici', 'first', 'celebr'], ['jason', 'mraz', 'still', 'serenad', 'read', 'quot', 'judici', 'supervis', 'execut', 'action', 'commonwealth', 'caribbean', 'quot', 'bbl'], ['mom', 'nurs', 'practition', 'amp', 'spent', 'entir', 'life', 'devot', 'field', 'good', 'one', 'deserv', 'recogn', 'follow'], ['watch', 'youtub', 'hilari', 'laugh', 'trough', 'serious', 'guy', 'funni', 'greet', 'germani'], ['use', 'inde', 'esp', 'newbi', 'like'], ['happi', 'star', 'war', 'day'], ['relax', 'fragranc', 'soo', 'latest', 'love', 'still', 'lavend', 'amp', 'chamomil', 'basic', 'one', 'tri', 'find', 'flower', 'scent'], ['time', 'low', 'mean', 'fuck', 'much', 'hope', 'get', 'see', 'june', 'would', 'awesom', 'gaskarth', 'amaz'], ['amaz', 'alic', 'made', 'thank', 'everyth', 'face', 'charact'], ['happi', 'birthday'], ['good', 'day', 'thanx', 'follow'], ['weather', 'love', 'head', 'home', 'via', 'supermarket', 'plan', 'spend', 'qualiti', 'time', 'knit', 'tonight'], ['good', 'morn', 'friend', 'happi', 'may', 'bank', 'holiday'], ['post', 'world', 'pinhol', 'day', 'love', 'pictur'], ['dear', 'oh', 'dear'], ['clear', 'busi', 'take', 'care', 'sure', 'fine', 'take', 'one', 'know', 'one'], ['miss', 'know', 'must', 'feel', 'tire', 'give', 'massag', 'tonight'], ['happiest', 'place', 'earth'], ['hey', 'great', 'gig', 'exchang', 'track', 'via', 'ze', 'emay', 'lost', 'loop', 'right', 'still', 'write', 'xx'], ['happi', 'judday', 'everyon'], ['got', 'great', 'expect', 'tomorrow', 'go', 'awesom'], ['heey', 'good', 'luck', 'unair', 'sweet'], ['helloo', 'star', 'war', 'day', 'cool', 'lool', 'wen', 'go', 'cnaterburi', 'x'], ['ok', 'well', 'pic', 'take', 'unlucki', 'lmao'], ['good', 'morn', 'twitter', 'hope', 'mean', 'busi', 'day'], ['play', 'cool', 'new', 'websit', 'hope', 'readi', 'soon'], ['welliti', 'think', 'go', 'clean', 'room', 'gay', 'need', 'read', 'good', 'book', 'sens', 'sensibl', 'come', 'beat', 'lili'], ['know', 'appeal', 'knit', 'believ', 'know'], ['wake', 'week', 'funni', 'deathcab', 'make', 'think', 'amp', 'use', 'calendar', 'track', 'work', 'hour'], ['nice', 'recolour', 'page', 'nobodi', 'buy', 'word', 'love'], ['dear', 'god', 'pleas', 'let', 'wake', 'tomorrow', 'lol', 'got', 'plan', 'tonight', 'let', 'us', 'pick', 'hero', 'night', 'grow', 'get', 'job', 'etc', 'lolz'], ['hahaha', 'nien', 'soo', 'smart', 'lmao', 'think', 'good', 'lookin', 'whts', 'gurli', 'come', 'home', 'weekend'], ['inde', 'nice', 'week'], ['good', 'luck', 'mine', 'day', 'today'], ['oh', 'must', 'get', 'lol', 'mum', 'still', 'not', 'convinc'], ['welcom'], ['haha', 'love', 'two', 'girl'], ['bevvi', 'day'], ['thank', 'tip', 'compani', 'laptop', 'aim', 'anoth', 'solut', 'actual'], ['feel', 'waay', 'cruisey', 'relax', 'monday', 'even', 'oh', 'wait', 'wine', 'dinner'], ['woke', 'rememb', 'school', 'life', 'good', 'xx'], ['sound', 'like', 'kind', 'day'], ['graandma', 'house', 'have', 'leav', 'lt'], ['put', 'radio', 'cup', 'tea', 'shower', 'sure', 'fine', 'dandi', 'thank'], ['welliti', 'think', 'go', 'clean', 'room', 'gay', 'need', 'read', 'good', 'book', 'sens', 'sensibl', 'come', 'beat', 'lili'], ['guess', 'coupl', 'see', 'ceremoni', 'valid', 'valid', 'communiti', 'damn'], ['agre', 'total', 'think', 'though', 'take', 'point', 'everton', 'liverpool', 'beat', 'man', 'citi', 'happi', 'day'], ['everybodi', 'awak', 'well', 'not', 'everybodi', 'know', 'mean', 'friend', 'haha', 'fun', 'aim'], ['cower', 'failur', 'mean', 'compli', 'stand', 'instead'], ['insomnia', 'finest', 'go', 'bed', 'fulli', 'awak', 'grr', 'anyon', 'want', 'call', 'mee'], ['enjoy', 'peg', 'bag', 'adapt', 'design', 'tote', 'bag', 'bit', 'cuter', 'normal'], ['hello', 'everybodi', 'back', 'job', 'back', 'children', 'camp', 'someon', 'look', 'sis', 'pupil', 'total', 'exhaust'], ['best', 'friend', 'come', 'excit'], ['omg', 'star', 'war', 'day', 'may', 'fourth', 'everyon', 'call', 'watch', 'least', 'film', 'tonight'], ['thank', 'chu', 'ch', 'c', 'v', 'hik', 'ch', 'c', 'ph', 'h', 'c', 'ph', 'c', 'p', 'ki', 'n', 'th', 'c', 'c', 'g', 'p'], ['lol', 'lt', 'spongebob'], ['refer', 'not', 'dress', 'either', 'sound', 'like', 'lh', 'good', 'fopp', 'buy'], ['sound', 'good', 'yeah', 'turn', 'tomorrow', 'definit', 'parti'], ['hey', 'thank', 'mate', 'cool', 'coz', 'watch'], ['small', 'thing', 'life', 'count', 'like', 'blur', 'photograph', 'googl', 'streetview', 'keep', 'follow'], ['fair', 'enough', 'actual', 'not', 'give', 'mad', 'max', 'fine'], ['abbrevi', 'not', 'bulki'], ['ahh', 'ok', 'rememb', 'film', 'never', 'saw', 'though', 'check', 'thank'], ['got', 'twitter', 'yayi', 'xx'], ['sir', 'everyth', 'great'], ['congratul', 'great', 'funki', 'site', 'waaw'], ['yummi', 'curri', 'save', 'pleas', 'lol'], ['oh', 'use', 'kde', 'made', 'fail'], ['lol', 'glad', 'see', 'not', 'one'], ['lol', 'awesom', 'random', 'follow'], ['huge', 'fan', 'take', 'sinc', 'babi', 'yeah', 'month', 'realli', 'feel', 'like', 'month'], ['fine', 'thank', 'day', 'took', 'advantag', 'gt', 'tire', 'wait', 'see', 'pic', 'read', 'blog'], ['teacher', 'made', 'lamest', 'joke', 'today', 'darth', 'vader', 'birthday', 'cuz', 'may', 'lol', 'love', 'happi', 'star', 'war', 'day', 'everyon'], ['breakfast', 'want', 'food', 'lol', 'tweet', 'breakfast', 'loold'], ['great', 'shot', 'yesterday', 'edit', 'pic'], ['brilliant', 'thank', 'not', 'sure', 'browni', 'point', 'get', 'though'], ['rock', 'week', 'not', 'think', 'danni', 'go', 'go', 'home', 'week', 'never', 'bottom', 'three', 'realli', 'good', 'singer'], ['final', 'pic', 'see', 'ya', 'like', 'hrs', 'haha'], ['hey', 'momma', 'cherri', 'site', 'still', 'activ', 'would', 'love', 'go', 'one', 'day'], ['lololol', 'love', 'kenan', 'kel', 'rock', 'soo', 'hard', 'watch'], ['ok', 'good', 'day'], ['hahahahahahahaha', 'hope', 'hope', 'like'], ['not', 'worri', 'great', 'job', 'quit', 'nice', 'way', 'spend', 'day'], ['lok', 'ef', 'jummi'], ['think', 'cute', 'everi', 'night', 'okay'], ['hit', 'view', 'myspac', 'thank', 'everyon'], ['thank', 'hope', 'great', 'day'], ['not', 'get', 'impati', 'alreadi', 'sin', 'strawberri', 'milk', 'sugar'], ['download', 'bonni', 'clyde', 'beyonc', 'old', 'fav'], ['shini', 'could', 'marri', 'would', 'ps', 'good'], ['could', 'bare', 'speak', 'probabl', 'think', 'weirdo', 'lool', 'say', 'sorri', 'pleas', 'x', 'lt'], ['thank', 'twitter'], ['yes', 'finish', 'tonight', 'still', 'food', 'great', 'discuss'], ['tri'], ['lol', 'like', 'polar', 'opposit', 'ben', 'mayb', 'get', 'well'], ['bass', 'love'], ['oh', 'great', 'hope', 'blast'], ['love', 'happi', 'birthday', 'said', 'sound', 'like', 'mixtur', 'john', 'lennon', 'chrissi', 'hynd', 'jani', 'joplin'], ['end', 'work', 'thank', 'god', 'accomplish', 'number', 'thing'], ['creat', 'monster', 'bwahaha', 'oh', 'got', 'babi', 'home', 'safe', 'sound'], ['wow', 'effect', 'thank', 'updat'], ['everyth', 'fault', 'x'], ['congrat', 'new', 'phone'], ['meant', 'not', 'lazi', 'work', 'prove'], ['lol', 'go', 'homework', 'kind', 'got', 'distract', 'goodnight'], ['haha', 'pretti', 'good', 'make', 'someth', 'chicken', 'yum'], ['either', 'way', 'alway', 'tend', 'make', 'followfriday', 'list', 'sweeti', 'rock', 'much'], ['nickchien', 'happi', 'break', 'twitter', 'virgin', 'two'], ['wait', 'last', 'video', 'render', 'watch', 'episod'], ['current', 'goal', 'lose', 'pound', 'next', 'tuesday', 'come', 'soo', 'readi', 'gatlinburg'], ['thank', 'hun', 'great'], ['soo', 'much', 'hope', 'well'], ['anxious', 'await', 'game', 'yes', 'final', 'got', 'tix', 'game', 'amp', 'yeahh'], ['final', 'get', 'sleepi', 'right', 'sky', 'brighten', 'figur'], ['actual', 'start', 'quit', 'like', 'lili', 'allen', 'music', 'honest'], ['found', 'one', 'great', 'thing', 'live', 'switzerland', 'delici', 'bread', 'sometim', 'littl', 'thing', 'make', 'differ'], ['hey', 'good', 'morn', 'guy'], ['trend', 'topic', 'happi', 'star', 'war', 'day'], ['thank', 'yay', 'guild'], ['love', 'way', 'sky', 'look', 'cloud', 'would', 'mean', 'ultra', 'hot', 'outsid'], ['hmph', 'nowher', 'near', 'effect', 'min', 'ago', 'wonder', 'coincid', 'follow', 'pleas', 'report', 'find'], ['bor', 'everyon', 'doingn', 'check', 'link', 'profil'], ['enjoy', 'new', 'car'], ['blockbust', 'week', 'new', 'zealand', 'quot', 'wolverin', 'quot', 'tomorrow', 'follow', 'quot', 'star', 'trek', 'quot', 'thursday'], ['lol', 'thanx'], ['hahahahaha', 'day'], ['usual', 'choic', 'lucki', 'food', 'love', 'general', 'healthi', 'except', 'ice', 'cream'], ['good', 'morn', 'howev', 'night', 'time', 'bed', 'hug', 'great', 'day'], ['thank', 'dear', 'neighboor', 'also', 'gave', 'coffe', 'need', 'best'], ['walah', 'still', 'not', 'get', 'full', 'idea'], ['worri', 'thank', 'googl', 'noth', 'not', 'find'], ['never', 'seen', 'x', 'men', 'film', 'suppos', 'good', 'thought', 'not'], ['ohh', 'someon', 'like', 'play', 'food', 'heehe'], ['glad', 'break', 'twitter', 'virgin', 'two'], ['eek', 'come', 'soo', 'excit', 'see', 'thursday'], ['reckon', 'could', 'live', 'yogurt', 'week', 'good', 'select', 'flavor'], ['gdnight', 'tweeter', 'night', 'sleep', 'tight', 'not', 'steal', 'blanket', 'otay', 'love', 'yous'], ['goodmorn', 'world'], ['chill', 'home'], ['love', 'weekend', 'away', 'kit', 'coti', 'relax', 'well', 'rest', 'readi', 'week', 'ahead', 'back', 'nnc', 'two', 'week'], ['complex', 'much', 'consid', 'day', 'like', 'today', 'monday', 'brain', 'back', 'tomorrow'], ['teehe', 'good', 'show', 'anyway'], ['still', 'thank', 'pray', 'ahahaha', 'watch', 'britney', 'record', 'school', 'today', 'good', 'day'], ['good', 'us', 'peopl', 'think', 'look', 'forward', 'hope', 'batteri', 'amp', 'laptop', 'recharg', 'soon'], ['welcom', 'thank', 'invit', 'us', 'talk', 'like', 'becom', 'parent', 'one', 'realli', 'prepar'], ['new', 'french', 'girl', 'twitter', 'speak', 'english', 'bad'], ['oh', 'beauti', 'happi', 'great', 'time', 'heartz'], ['congratul'], ['heyahh', 'thought', 'wer', 'cumin', 'london', 'till', 'love', 'taylorr'], ['london', 'wow', 'near'], ['hypnotyst', 'hmm', 'bewar'], ['glad', 'feel', 'abit', 'better', 'think', 'mine', 'might', 'near', 'gone', 'xd'], ['tri', 'learn', 'oral', 'exam', 'distract'], ['not', 'swine', 'flu', 'hope', 'take', 'care', 'health', 'mate', 'tell', 'busi'], ['andrew', 'long', 'fun', 'day'], ['must', 'love', 'sydney', 'not', 'leav', 'us', 'sydney', 'kid', 'xx'], ['sure', 'jont', 'not', 'mind', 'share'], ['hey', 'like', 'fob', 'follow', 'love', 'talk', 'look', 'frine', 'follow'], ['sit', 'outsid', 'laptop', 'kind', 'nice'], ['aww', 'wonder', 'hate', 'us', 'later', 'lol'], ['haha', 'boat', 'yesterday', 'pick', 'time'], ['love', 'make', 'soo', 'happi'], ['aww', 'hee', 'nice', 'done', 'weekend', 'guest', 'approv', 'lot'], ['well', 'work', 'not', 'quit', 'readi', 'post', 'public', 'still', 'beta', 'test', 'cool', 'new', 'script', 'code'], ['snuggl', 'bed', 'read'], ['hope', 'feel', 'better', 'soon', 'littl', 'magic', 'girl'], ['appreci', 'uni', 'email', 'help'], ['happi', 'provid', 'backup', 'support', 'murder', 'rampag'], ['follow', 'chester', 'bennington', 'awesom'], ['good', 'morn', 'earli', 'feel', 'enthus', 'design', 'life', 'thank', 'manic', 'phrase'], ['omg', 'taylor', 'london', 'near', 'scotland', 'pleas', 'come', 'visit', 'glasgow'], ['woo', 'fight', 'goo', 'vicki'], ['everyon', 'love', 'sarah', 'not', 'tweeter', 'today', 'show', 'could', 'not', 'stop', 'rave', 'beauti'], ['must', 'miss', 'amp', 'guess', 'scare', 'amp', 'sorri'], ['good', 'day'], ['mm', 'hot', 'chocol', 'ugboot', 'topgear', 'life', 'good'], ['good', 'morn', 'everyon', 'back', 'work', 'not', 'abl', 'chat', 'tonight', 'hope', 'everyon', 'great', 'day'], ['shut'], ['yeah', 'thought', 'awesom', 'glad', 'see', 'charact', 'like', 'gambit', 'brought', 'back', 'fold'], ['aww', 'tom', 'made', 'smile', 'love', 'much', 'xd'], ['hey', 'thank', 'follow'], ['mean', 'famous', 'congrat'], ['thank', 'photo', 'look', 'great', 'comment', 'soon', 'possibl'], ['aww', 'thanx', 'andi'], ['wake', 'vega', 'good'], ['thank', 'new', 'follow'], ['love', 'color', 'horsi'], ['ok', 'back', 'later', 'great', 'time', 'regardless', 'weather', 'ps', 'bb', 'away'], ['get', 'back', 'english', 'minor', 'exam', 'soon', 'dum', 'dum', 'dum', 'duum', 'margret', 'burp', 'comp', 'haha'], ['thank', 'god', 'sport', 'not', 'take', 'offenc', 'joke', 'unlik', 'three', 'good', 'friend', 'stop', 'talk'], ['much', 'welcom'], ['check', 'idestroy', 'sale', 'sale', 'good'], ['cook', 'dad', 'lot', 'fun', 'kitchen', 'togeth'], ['wish', 'could', 'work', 'like', 'dude'], ['download', 'movi', 'quot', 'jackass', 'quot', 'cool', 'movi'], ['hi', 'michael', 'wow', 'thank', 'kind', 'word', 'must', 'find', 'love', 'connect', 'bg', 'alon'], ['haha', 'wow', 'song', 'call', 'twitter', 'lmao', 'okay'], ['love', 'twitter', 'post', 'mwaha', 'x'], ['think', 'malibu', 'drink', 'let', 'us', 'hit', 'bottl', 'woop', 'woop', 'xx'], ['yes', 'babe', 'welcom'], ['yay', 'joy', 'depart'], ['good', 'morn', 'way', 'public', 'holiday', 'uk', 'love', 'dinner', 'tonoght', 'special', 'peopl'], ['fli', 'nz', 'great', 'way', 'get', 'result', 'aggreg'], ['greg', 'show', 'friend', 'audioboo', 'everyon', 'seem', 'love', 'ta', 'headzup', 'bro', 'need', 'get', 'iphon', 'roll', 'june'], ['rockstar', 'photograph', 'shoot', 'went', 'great', 'tonight', 'littl', 'differ', 'usual', 'stuff', 'nice'], ['emili', 'ahahha', 'scare', 'would', 'work'], ['get', 'fix', 'year', 'worth', 'thing'], ['wonder', 'earth', 'new', 'tool'], ['oh', 'not', 'spoil', 'fun', 'lol'], ['ah', 'say', 'nicest', 'thing'], ['slept', 'like', 'log', 'last', 'night', 'full', 'energi'], ['hahah', 'okay', 'thank', 'short', 'explan'], ['lol', 'sure', 'would', 'kick', 'azz', 'version', 'ever', 'heard'], ['not', 'supposs', 'support', 'local', 'economi', 'lol', 'good', 'congrat'], ['good', 'day'], ['excit', 'week'], ['happi', 'judday', 'carri'], ['lt', 'blackberri'], ['good', 'good'], ['talent', 'sam'], ['thank', 'man', 'not', 'wait'], ['good', 'stuff', 'not', 'wait', 'result'], ['hope', 'wish', 'come', 'true', 'someday'], ['wahey', 'fanci', 'meet', 'thank', 'tweet', 'great', 'twitter', 'togeth'], ['heyi', 'alway', 'look', 'nice', 'want', 'come', 'friend', 'parti', 'june', 'long', 'weekend', 'sydney'], ['not', 'impress', 'almost', 'alway', 'rain', 'bank', 'holiday', 'stil', 'free', 'day', 'colleg'], ['tweet', 'guilt', 'trip', 'not', 'stop', 'huh', 'felt', 'bad'], ['man', 'kickin', 'top', 'hat', 'left', 'invit', 'blue', 'jam', 'session', 'put', 'street', 'musician', 'harpmanhatt'], ['hurtl', 'headlong', 'day', 'spanish', 'art', 'view', 'tomorrow', 'revis', 'extra', 'free'], ['lol', 'thank', 'much', 'hope', 'great', 'day'], ['yay', 'got', 'stuff', 'perfect', 'tast', 'like', 'banana', 'appl'], ['understand'], ['not', 'think', 'like', 'roy', 'william', 'dissect', 'frog', 'still', 'aliv', 'gt', 'look', 'like', 'chachi', 'happi', 'day'], ['afternoon', 'offic', 'cubicl', 'move', 'not', 'system', 'yippi', 'mine', 'one', 'te', 'surviv', 'quot', 'good', 'quot', 'system'], ['ahh', 'other', 'like', 'hoppusday', 'etc', 'spazz'], ['like', 'one', 'actual', 'know', 'shizz', 'dum', 'diggin'], ['portug', 'spain', 'sore', 'throat', 'scari'], ['oh', 'love', 'well', 'mcr', 'song', 'great', 'happi', 'star', 'war', 'day', 'yaa', 'xd'], ['hey', 'chiclit', 'happen', 'tri', 'promot', 'busi', 'realli', 'hard'], ['serious', 'increas', 'good', 'night', 'stoke', 'life', 'could', 'not', 'happier', 'goodnight'], ['well', 'pray'], ['best', 'day', 'ever', 'birthday'], ['look', 'forward', 'yummi', 'dinner', 'mizz', 'kate', 'jone', 'even'], ['hehe', 'wonder', 'wtf', 'star', 'war', 'day', 'top', 'trend', 'topic', 'get', 'may', 'fourth', 'also'], ['appl', 'keyboard', 'realli', 'cool', 'want', 'one', 'use', 'doctor'], ['go', 'town', 'later', 'get', 'birthday', 'present', 'ipod', 'touch', 'nice', 'think'], ['mani', 'mani', 'thank', 'school', 'wee'], ['not', 'good', 'enough'], ['morn', 'look', 'forward', 'nice', 'bbq', 'today', 'everyon', 'follow', 'pleas'], ['chill', 'boy', 'gone', 'time', 'relax'], ['roflmao', 'feel', 'inspir', 'go', 'start', 'huge', 'bonfir'], ['love', 'sugar', 'puff', 'play', 'amaz', 'dog', 'jack'], ['star', 'war', 'gay', 'boo', 'want', 'jobe', 'hand', 'act', 'high', 'school', 'lol'], ['haha', 'go', 'martin', 'fix', 'ski', 'like', 'million', 'time'], ['thank', 'love', 'birthday', 'messag'], ['teddi', 'chuck', 'time'], ['juz', 'curious'], ['morn', 'hope', 'love', 'holiday', 'monday', 'whatev', 'goin'], ['video', 'funni', 'sign', 'vote', 'x'], ['woo', 'two', 'day', 'till', 'awesom', 'gig', 'one', 'day', 'till', 'uni', 'finish', 'day', 'gig'], ['not', 'dig', 'emo', 'shit', 'like', 'song', 'sorri', 'emo'], ['love', 'smell', 'procrastin', 'morn', 'oder'], ['not', 'know', 'p', 'end', 'wake', 'mysteri', 'world'], ['happi', 'star', 'war', 'one', 'fourth'], ['star', 'war', 'gay', 'boo', 'want', 'job', 'hand', 'act', 'high', 'school', 'lol'], ['haha', 'check', 'site', 'got', 'good', 'one'], ['check', 'oceanup', 'quot', 'miley', 'cyrus', 'justin', 'gaston', 'fight', 'lunch', 'quot', 'ok', 'justin', 'whatev', 'happen'], ['time'], ['hey', 'noth', 'wrong'], ['think', 'come', 'back', 'brisban', 'australia', 'love'], ['hungri', 'go', 'eat', 'catch', 'guy', 'later', 'amp', 'peopl', 'hurt', 'sardon', 'quot', 'wait', 'hit', 'back'], ['britt', 'came', 'way', 'say', 'fourth', 'work', 'done'], ['fickl', 'seem', 'appropri', 'twitter', 'user'], ['give', 'manicur', 'pedicur', 'ahh', 'miss', 'nice', 'pretti', 'nail'], ['better', 'light', 'would', 'enhanc', 'photo', 'nice', 'angl', 'though'], ['folio', 'work', 'keep', 'get', 'distract', 'deb', 'pic'], ['not', 'prob', 'hun'], ['back', 'wingman', 'great', 'weekend'], ['finish', 'watch', 'movi', 'like', 'realli', 'not', 'anyth', 'ten', 'give', 'cool'], ['cute', 'time'], ['mee', 'look', 'amaze'], ['listen', 'litl', 'hyperbirdi', 'terror', 'world', 'sinc', 'let', 'us', 'cook'], ['feel', 'stupid', 'say', 'not', 'know', 'twitter', 'one', 'pleas', 'help', 'peopl', 'pleas', 'not', 'laugh', 'ok', 'laugh'], ['yeah', 'shit', 'tire', 'headach', 'play', 'game', 'rygbi', 'ill', 'right', 'xx', 'lt'], ['easi', 'tri', 'learn', 'serious', 'new', 'word'], ['imho', 'soft', 'best', 'keep', 'chao', 'straight'], ['awh', 'tom', 'realli', 'cute', 'love', 'guy', 'realli', 'care', 'fan', 'x'], ['good', 'raini', 'morn'], ['welcom', 'twitter', 'friend'], ['cute', 'pictur', 'not', 'get', 'fat', 'lick', 'bbqs', 'must', 'found', 'chop', 'someon', 'els'], ['congrat', 'hughesi', 'holli', 'safe', 'arriv', 'rafferti', 'david', 'hugh', 'hope', 'well', 'xoxo'], ['haha', 'like', 'actual', 'say', 'thank', 'bot', 'never', 'look', 'like'], ['good', 'lad', 'wore', 'phil', 'known', 'year', 'seem', 'like', 'minut', 'haha', 'ok', 'hayley'], ['aus', 'zimmermann', 'illionar', 'dhini', 'gail', 'sorronda', 'romanc', 'born', 'lisa', 'ho', 'cassett', 'tutu', 'balmain', 'ispir'], ['wed', 'could', 'not', 'perfect'], ['go', 'bed', 'talk', 'ya', 'later', 'goodnight', 'birdi', 'lol'], ['hope', 'iv', 'play', 'like', 'time', 'kind', 'sick', 'hehe'], ['seesmic', 'desktop', 'seem', 'pretti', 'good', 'nice', 'find'], ['love', 'look', 'fabul', 'nice', 'learn', 'someth', 'new'], ['excel', 'analog'], ['mm', 'best', 'delici', 'chocol', 'pancak', 'tea', 'break', 'oh', 'thank', 'god', 'herhsey', 'chocol', 'syrup'], ['bank', 'holiday', 'monday', 'rock', 'particular', 'follow', 'kind', 'sunday'], ['oh', 'good', 'cake'], ['happi', 'star', 'war', 'day', 'may', 'fourth'], ['worri'], ['holi', 'kraut', 'not', 'stay', 'late', 'book', 'done', 'author', 'box', 'tuck'], ['happi', 'bank', 'holiday', 'monday', 'tweeterama', 'spend', 'day', 'yoga', 'ocd', 'attack'], ['hello', 'taylor', 'miss', 'month', 'lt'], ['flippin', 'sweet', 'dude', 'thank', 'share'], ['day', 'go', 'happi', 'birthday'], ['not', 'sure', 'fan', 'week', 'wow', 'guess', 'soon', 'overtak', 'malaysian', 'page'], ['lisa', 'roger', 'carpool', 'alltim', 'fave', 'good', 'work'], ['saw', 'not', 'surpris', 'bad', 'back', 'moan', 'back'], ['good', 'morn', 'quot', 'return', 'willen', 'island', 'spring', 'definit', 'sprung', 'quot', 'enjoy'], ['haappi', 'bank', 'holiday', 'week', 'aah'], ['not', 'let', 'sun', 'catch', 'cri', 'oh', 'cool'], ['oh', 'happi', 'day', 'nice', 'weather', 'smile', 'happi', 'babi', 'icecream', 'later'], ['ah', 'good', 'glad', 'use'], ['scari', 'reflect', 'thought', 'go', 'wizz', 'pant'], ['hee', 'hee', 'holiday', 'gutter', 'tri', 'get', 'week', 'least', 'welcom', 'lol', 'xx'], ['uft', 'tutor', 'lil', 'sis', 'cute', 'even', 'though', 'eighth', 'grader', 'p'], ['good', 'morn', 'noth', 'particular', 'meet', 'peopl', 'drink', 'even', 'monday'], ['look', 'good', 'want', 'one'], ['photo', 'call', 'hope'], ['umm', 'get', 'readi', 'help', 'mum', 'give', 'gj', 'present', 'get', 'could', 'wait', 'peopl', 'arriv', 'parti'], ['haha', 'happi', 'star', 'war', 'day', 'quot', 'may', 'quot', 'clever'], ['morn', 'world', 'hello', 'bank', 'holiday', 'cold', 'grey', 'raini', 'feel', 'like', 'colour', 'thank', 'might'], ['got', 'tattoo', 'fix', 'today', 'not', 'hurt', 'much', 'thank', 'god', 'not', 'wait', 'get', 'next', 'one'], ['yay', 'slowli', 'rest', 'grade', 'come', 'hope', 'readi', 'constant', 'tweet'], ['heloo', 'wos', 'work', 'pretti', 'hope', 'alright', 'certain', 'individu', 'not', 'ruin'], ['day', 'cellstorm', 'like'], ['yay', 'go', 'taylor', 'swift', 'come', 'australia'], ['ask', 'creat', 'fake', 'competet', 'declar', 'winner', 'gift', 'return', 'ticket', 'courtesi', 'produc'], ['fantast', 'pick', 'hooker'], ['right', 'turn', 'octob', 'think', 'pretti', 'much', 'make', 'us', 'awesom'], ['congrat', 'drep', 'good', 'luck', 'sa', 'interview'], ['hope', 'review', 'site'], ['hi', 'cs', 'welcom', 'twittervers', 'help', 'anyth', 'ask'], ['yay', 'final', 'get', 'trip', 'away', 'home', 'excit', 'go', 'shop', 'bit'], ['oh', 'nice', 'hope', 'wonder', 'relax', 'day'], ['eat', 'cracker', 'yummi', 'unsalt', 'one', 'cours', 'salt', 'caviar'], ['way', 'happi', 'star', 'war', 'day', 'may', 'fourth', 'know', 'total', 'dork'], ['ok', 'friend', 'dye', 'hair', 'black', 'scari', 'know', 'ill', 'tri', 'post', 'pic', 'tonight', 'not', 'tomorrow', 'verdict'], ['good', 'luck', 'well', 'best', 'wish'], ['hope', 'not', 'hot', 'summer', 'littl', 'one', 'today', 'good'], ['thank', 'ask', 'sarah', 'glad', 'tomorrow', 'holiday', 'korea', 'rest', 'right', 'rain'], ['mount', 'dish', 'conquer', 'dish', 'land'], ['haha', 'good', 'phone', 'convers', 'cat', 'ladi', 'go', 'homeless', 'not', 'tell', 'coffe', 'come', 'tomorrow'], ['oh', 'cool', 'alpha', 'come', 'featur', 'want', 'request'], ['kudo', 'love', 'homemad', 'french', 'toast'], ['morn', 'welcom', 'new', 'follow'], ['camb', 'better', 'sure', 'ee', 'week', 'meet', 'sunday'], ['thank', 'much', 'dear', 'damali', 'prayer', 'work', 'much', 'better', 'god', 'will', 'rest', 'lot', 'xoxo'], ['happi', 'birthday', 'better', 'get', 'birthday', 'greet', 'stranger', 'littl', 'kid', 'lt'], ['thank', 'keep', 'updat', 'turn'], ['happi', 'star', 'war', 'day', 'may', 'fourth'], ['welcom'], ['final', 'manag', 'catch', 'boyfriend', 'skype', 'soo', 'happi'], ['ooh', 'sound', 'yummi', 'get', 'chanc', 'take', 'pic', 'pleas', 'add', 'websit', 'not', 'mani', 'pie'], ['answer', 'prayer', 'caught', 'surpris', 'lord', 'amaz'], ['dow', 'futur', 'point', 'night', 'trade', 'look', 'like', 'may', 'good', 'start', 'far'], ['simpl', 'know', 'use', 'hahaa', 'glad', 'okay', 'x', 'x', 'x'], ['hey', 'like', 'love', 'icar', 'rock', 'youtub', 'account', 'gt'], ['enjoy', 'afternoon', 'tea', 'friend', 'cake', 'delicaci', 'equal', 'sweet', 'time'], ['listen', 'man', 'not', 'move', 'lt', 'love', 'connect', 'gw', 'dutch', 'might', 'art', 'later'], ['wish', 'sunni', 'day', 'might', 'bother', 'get', 'outta', 'bed', 'blue'], ['safer', 'say', 'cube', 'sphere', 'roll', 'buddi', 'awesom', 'time', 'esp', 'one'], ['yay', 'bank', 'holiday'], ['hee', 'love'], ['wtf', 'get', 'hm', 'tm', 'today', 'revis', 'revis', 'revis'], ['shoutout', 'holland', 'pleas', 'got', 'lot', 'fan'], ['thank', 'love', 'tattoo', 'special', 'xx', 'feet', 'one', 'beauti', 'xx'], ['oh', 'star', 'trek', 'go', 'alreadi', 'woo'], ['take', 'take', 'face', 'robbi'], ['lil', 'cuz', 'come', 'round', 'today', 'aww', 'haha'], ['hello', 'thankyou', 'alway', 'seem', 'make', 'differ', 'someon', 'life', 'everyday'], ['not', 'broken', 'monday', 'mean', 'monday', 'fix'], ['use', 'newsfir', 'work', 'like', 'charm'], ['done', 'posit', 'affirm', 'back', 'japanes', 'yay', 'bank', 'holiday', 'monday'], ['good', 'job', 'logi', 'year', 'hell', 'funni', 'right', 'baggin', 'logi', 'tradit', 'aussi'], ['thank', 'first', 'follow'], ['oo', 'explan', 'thank', 'god', 'would', 'forev', 'love', 'good', 'night', 'mare', 'though'], ['make', 'enjoy'], ['good', 'thank', 'may', 'need', 'advic', 'soon', 'play', 'new', 'font'], ['aww', 'cuut', 'newborn', 'fun'], ['quit', 'like', 'god', 'save', 'king'], ['not', 'cute', 'go', 'daddi'], ['big', 'welcom', 'twitterlandz', 'grrl', 'realli', 'wish', 'could', 'made', 'betti', 'show', 'glad', 'hear', 'success'], ['problem', 'box', 'undernourish', 'profession'], ['salut', 'chapel', 'hill', 'north', 'carolina', 'sy'], ['thank', 'followfriday', 'see', 'us', 'south', 'african', 'holiday', 'fri'], ['haha', 'way', 'cool', 'good', 'morn'], ['final', 'finish', 'tec', 'recip', 'card', 'feel', 'somewhat', 'accomplish'], ['welcom'], ['final', 'go', 'bed', 'everybodi', 'whatev', 'bless'], ['good', 'work', 'done'], ['drive', 'come', 'across', 'aggress', 'drive', 'behaviour', 'anoth', 'driver', 'chase', 'car', 'tell', 'driver', 'drive'], ['tom', 'saw', 'guy', 'look', 'like', 'campus', 'today', 'soo', 'ador', 'quot', 'still', 'cuter', 'haha'], ['good', 'one'], ['palm', 'itchi', 'not', 'mean', 'someth', 'come', 'great', 'deal', 'money'], ['extrem', 'happi', 'see', 'new', 'track', 'quot', 'awaken', 'quot', 'featur', 'indivib'], ['plant', 'flover', 'school', 'garden', 'yr', 'mucki', 'great', 'fun'], ['alway', 'welcom', 'sweeti', 'hug'], ['play', 'fontstruct', 'upload', 'dafont', 'download', 'amp', 'top', 'categori', 'wtf', 'moment'], ['love', 'macaramb'], ['good', 'morn'], ['keep', 'work', 'lol', 'good', 'idea'], ['aha', 'brother', 'wallpap', 'phone', 'dolli', 'sheep', 'aha', 'lole'], ['hi', 'john', 'thank', 'share', 'quot', 'soo', 'true'], ['thank', 'check'], ['jona', 'brother', 'live', 'parti', 'rock', 'hard', 'love', 'song'], ['kuala', 'lumpur', 'know', 'vanish', 'haha', 'broke', 'last', 'boyfriend', 'back'], ['glad', 'like', 'gmail', 'visual', 'peopl', 'like', 'asthet', 'right', 'not'], ['enjoy', 'bank', 'holiday', 'meet', 'real', 'estat', 'agent', 'offer', 'amsterdam', 'apart', 'rent'], ['rofl', 'hahaha', 'let', 'tell', 'salman', 'munir'], ['watch', 'new', 'advert', 'youtub', 'love', 'quot', 'hey', 'jude', 'quot'], ['yeah', 'well', 'deadlin', 'hour', 'architectur', 'oh', 'well', 'mm', 'coffe', 'sound', 'like', 'good', 'idea'], ['geek', 'build', 'photoblog', 'theme'], ['lose', 'mani', 'taiwanes', 'drama', 'not', 'good', 'xd', 'wu', 'chun', 'ee'], ['chillax', 'realli', 'yeah', 'man', 'hehe'], ['omg', 'miss', 'bus', 'walk', 'mile', 'coffe', 'went', 'see'], ['googl', 'quot', 'engag', 'ring', 'quot', 'amp', 'exact', 'ring', 'result', 'sigh', 'love'], ['yup', 'work', 'away', 'hard', 'busi', 'busi', 'busi'], ['put', 'societ', 'general', 'china', 'interest', 'stuff', 'away', 'much', 'got', 'fix'], ['bodi', 'not', 'itch', 'anymor'], ['happi', 'star', 'war', 'day', 'may'], ['love', 'fact', 'bank', 'holiday', 'monday', 'stay', 'bed'], ['itali', 'greec', 'love', 'italian', 'men', 'hehe'], ['bet', 'never', 'look', 'back', 'week', 'long', 'school', 'trip'], ['look', 'miss', 'coupl', 'hour', 'sorri', 'let', 'know', 'next', 'time'], ['near', 'accord', 'stat', 'ff', 'adopt', 'rate', 'amaz'], ['got', 'home', 'bought', 'twiggi', 'toothbrush', 'promis', 'make', 'teeth', 'cleaner'], ['nice'], ['love', 'song', 'like', 'movi'], ['well', 'yeah', 'hormon', 'thing', 'basic', 'given', 'thought', 'misbehav', 'specif', 'upset', 'mom'], ['aha', 'mean', 'take', 'look', 'look', 'cool', 'could', 'get', 'pool'], ['realli', 'best', 'night', 'ever'], ['littl', 'lift', 'tonight', 'would', 'much', 'appreci'], ['go', 'near', 'hive', 'tame'], ['net', 'net', 'net', 'hmm', 'bad', 'weather', 'weird', 'summer'], ['haha', 'photo', 'funni', 'hope', 'not', 'disturb', 'passeng', 'much', 'flight'], ['happi', 'star', 'war', 'day'], ['hurray', 'quot', 'quot', 'start', 'today', 'mean', 'work', 'pm', 'instead', 'august', 'yay'], ['congratul', 'icehockey', 'victori', 'switzerland'], ['go', 'line', 'rest', 'day', 'made', 'progress', 'game', 'weekend', 'may', 'not', 'like'], ['thank', 'much'], ['quot', 'complet', 'black', 'book', 'quot', 'arriv', 'look', 'forward', 'entertain', 'tv', 'night', 'dvd'], ['love', 'monday', 'mani', 'reason'], ['star', 'war', 'day', 'not', 'know', 'thing', 'may', 'forc', 'lt'], ['creat', 'busi', 'us', 'franc', 'look', 'quiet', 'easi'], ['reason', 'wonder', 'love'], ['ken', 'wilber', 'realist', 'expect', 'integr', 'wisdom', 'interest', 'not', 'mind', 'video', 'qualiti'], ['haha', 'would', 'cool', 'brianna', 'fli', 'haha'], ['video', 'myspac', 'run', 'lot', 'hahaha', 'vote'], ['good', 'see', 'not', 'lost', 'sens', 'humour', 'get', 'well', 'soon'], ['hungov', 'crazi', 'night', 'also', 'bad', 'book', 'mother'], ['welcom', 'sinc', 'seem', 'interest', 'chees', 'hard', 'suggest', 'follow'], ['hope', 'today', 'flow', 'lot', 'nice', 'thing', 'happen', 'work', 'come', 'home', 'happi'], ['impress'], ['call', 'high', 'five', 'not', 'miss', 'hotshot', 'xd'], ['good', 'morn', 'guy', 'experiment', 'chemistri', 'test', 'morn', 'wish', 'luck'], ['good', 'question', 'nepal', 'pm', 'declar', 'resign', 'actual', 'resign', 'two', 'differ', 'thing'], ['good', 'know', 'not', 'alon', 'confus'], ['listen', 'simpli', 'awesom', 'ratatat', 'bank', 'holiday', 'monday', 'bbq', 'later'], ['great', 'new', 'directori', 'babysitterdirectori', 'come', 'soon', 'directori', 'twist', 'reveal', 'next', 'week'], ['seem', 'like', 'win', 'win', 'situat'], ['okayi', 'read', 'feel', 'special', 'haha'], ['cri', 'babi', 'jane', 'joplin', 'munsay', 'music', 'not', 'know', 'wich', 'shit', 'day', 'today'], ['cute', 'watch', 'matt', 'play', 'wii', 'work'], ['not', 'want', 'leav', 'secret', 'know', 'australia', 'twenti', 'time', 'better', 'america'], ['haha', 'sound', 'like', 'lizzi', 'l', 'got', 'sister', 'older', 'like', 'argh', 'time'], ['wow', 'see', 'obsess'], ['aww', 'post', 'pic', 'bet', 'look', 'dead', 'nice'], ['ok', 'ginorm', 'cup', 'coffe', 'monday', 'look', 'much', 'better'], ['cool', 'use', 'live', 'hous', 'left', 'place', 'alway', 'someth', 'go', 'p'], ['good', 'morn', 'happi', 'monday', 'everyon'], ['burn', 'time', 'wacha'], ['question', 'charact', 'one', 'histori', 'great', 'unansw', 'would', 'say'], ['nice', 'skillz', 'nick', 'x', 'love', 'alway', 'marjori', 'amp', 'jemimah', 'sydney', 'australia'], ['omg', 'himym', 'one', 'best', 'show', 'earth'], ['soon', 'hope', 'realli', 'need', 'finish', 'clone', 'project', 'get', 'done'], ['sip', 'oj', 'sun', 'san', 'pedro', 'la', 'soberana', 'sunni', 'smiley', 'nita', 'garlic', 'tomato', 'past', 'delici', 'yummi'], ['ok', 'nice', 'one', 'cheer', 'boss', 'like', 'lack', 'fcs', 'today'], ['musicmonday', 'agre', 'excus', 'tweet', 'music', 'hour', 'end'], ['garden', 'make', 'pictur', 'weed', 'sweep', 'weather', 'nice', 'see', 'peopl'], ['ooh', 'cut', 'like'], ['think', 'way', 'god', 'work', 'tremend', 'amaz', 'made', 'possibl', 'get', 'card', 'holder', 'lost', 'back'], ['nice', 'gimmeh', 'nice', 'stuff'], ['yes', 'think', 'safe', 'say', 'popular', 'level', 'today', 'alway'], ['pretti', 'well', 'wide', 'awak'], ['get', 'readi', 'start', 'work', 'work', 'not', 'bad', 'great', 'one', 'everybodi'], ['back', 'weekend', 'getaway', 'energ', 'anoth', 'week', 'bring', 'lol'], ['congrat', 'everi', 'day', 'sinc', 'one', 'month'], ['hey', 'david', 'wonder', 'receiv', 'letter', 'song', 'malaysia', 'pleas', 'repli', 'nice', 'day'], ['happi', 'bank', 'holiday', 'monday', 'twitter', 'bath', 'time', 'spring', 'clean', 'movi', 'marathon', 'lazi', 'day'], ['way', 'mani', 'peopl', 'inde', 'recogn', 'chines', 'guy', 'lol'], ['see', 'later', 'love', 'ladi', 'good', 'amp', 'love', 'million', 'xx'], ['littl', 'thing', 'make', 'love'], ['compliment', 'taken', 'thank', 'key'], ['market', 'whn', 'goe', 'lower', 'also', 'problem', 'goe', 'like', 'wild', 'bull', 'also', 'problem'], ['sound', 'good'], ['hilari'], ['hi', 'charli', 'thank', 'follow', 'nice', 'know', 'anoth', 'ollmann', 'new', 'world'], ['quiz', 'feliza', 'bug', 'us', 'get', 'annoy'], ['kat', 'stewart', 'great', 'job', 'great', 'charact', 'not', 'watch', 'underbelli', 'victoria'], ['get', 'excit', 'thorp', 'park', 'tomorrow'], ['happi', 'bank', 'holiday'], ['go', 'run', 'gym', 'get', 'workout', 'realli', 'big', 'pile', 'mulch', 'arriv', 'around', 'excit', 'mulch'], ['great', 'time', 'boston', 'thank', 'babi', 'girl'], ['proud', 'serious', 'think', 'join', 'next', 'year', 'got', 'get', 'train'], ['nah', 'alter', 'forev', 'enjoy'], ['love', 'birdi', 'nest', 'though', 'alreadi', 'got', 'us', 'anoth', 'kind'], ['yay', 'good', 'back'], ['happi', 'star', 'war', 'day', 'everyon', 'say', 'may'], ['morn', 'world', 'rain', 'revis', 'not', 'seem', 'tough'], ['may', 'back', 'good', 'day', 'byee', 'xx'], ['good', 'night'], ['damn', 'straight', 'know', 'game', 'heard', 'track', 'know', 'rock'], ['great', 'honey', 'base', 'recip', 'amp', 'kid', 'download', 'join', 'fun', 'honey', 'week'], ['whew', 'thassa', 'relief'], ['realli', 'good', 'interview', 'read', 'realli', 'enjoy', 'x'], ['set', 'new', 'comput', 'love', 'norton', 'ghost'], ['well', 'not', 'look', 'fab', 'even', 'say'], ['good', 'big', 'cousin', 'take', 'littl', 'cousin', 'see', 'hannah', 'montana', 'movi', 'next', 'weekend'], ['tri', 'think', 'someth', 'calm', 'peac', 'relax', 'beach'], ['happi', 'star', 'war', 'day', 'may', 'fourth'], ['thank', 'deari', 'follow', 'dome'], ['thank', 'xo'], ['present', 'went', 'well', 'yes', 'also', 'met', 'buch', 'cool', 'peopl', 'check', 'portfolio', 'nice', 'project'], ['not', 'love', 'bank', 'holiday'], ['need', 'yummi', 'breakfast', 'shift'], ['know', 'cat', 'could', 'famili', 'mikesh', 'cute'], ['day', 'frisbe', 'three', 'night', 'parti', 'sprain', 'ligament', 'not', 'imagin', 'better', 'long', 'weekend'], ['download', 'movi', 'notori', 'cool', 'movi'], ['not', 'wait', 'hear', 'evp', 'cuut', 'pictur'], ['cool', 'good', 'back', 'train'], ['love', 'music', 'especi', 'fight', 'awsom', 'song', 'far'], ['woo', 'come', 'nottingham', 'point', 'lovelovelov', 'lt'], ['goodnight', 'magic', 'pretti', 'world'], ['came', 'back', 'bishopstorford', 'went', 'aunt', 'wed', 'parti', 'way', 'fun', 'got', 'see', 'cousin', 'year'], ['pleasur', 'bojan'], ['total', 'agre'], ['dinner', 'done', 'shower', 'done', 'time', 'chill', 'block', 'chocol'], ['thank', 'twitpic', 'sure', 'made', 'laugh'], ['might', 'cute', 'littl', 'pictur', 'book', 'call', 'quot', 'littl', 'book', 'bore', 'quot'], ['great', 'bout', 'call', 'love', 'life', 'god', 'sake'], ['thank', 'ff', 'wink'], ['mahalo', 'great', 'show', 'aloha', 'thank', 'makin', 'kauai', 'enjoy', 'safe', 'trip'], ['hey', 'suck', 'anybodi', 'bore', 'common', 'answear'], ['ahh', 'ikr', 'cuteset', 'thing', 'ever', 'plus', 'remind', 'twilight', 'good', 'loov', 'much'], ['saw', 'pic', 'remind', 'anna', 'king', 'cuut', 'littl', 'fella'], ['got', 'ya', 'would', 'not', 'bad', 'though', 'right'], ['kind', 'excit', 'go', 'school', 'today', 'not', 'know', 'hope', 'good', 'day'], ['love', 'life'], ['product', 'day'], ['hear', 'name', 'thank', 'ankit', 'get', 'parlour', 'hokeypokeybandra'], ['thankyou', 'lt', 'iloveyoutwoo'], ['love', 'new', 'hr', 'monitor'], ['get', 'cold', 'got', 'coffe', 'break', 'minut', 'ago', 'enjoy', 'drink'], ['final', 'done', 'project', 'haha', 'goodnight', 'lt'], ['congratul', 'two', 'ador', 'beauti', 'ring'], ['bad', 'homi'], ['hahah', 'way', 'lazi', 'check', 'phone', 'oo', 'michel', 'wtach', 'recruit'], ['goodmorn', 'thank', 'much', 'kind', 'sun', 'go', 'paint', 'outsid'], ['diggin', 'moustachio', 'look', 'good', 'daddio'], ['yep', 'noth', 'better'], ['help', 'make', 'twitter', 'account'], ['alreadi', 'back', 'shop', 'nice', 'monday', 'roast'], ['done', 'final', 'yay', 'relax', 'well', 'one', 'day', 'haha'], ['yep', 'hope', 'lame', 'attempt', 'space', 'help', 'hinder', 'lol', 'know', 'tomorrow', 'guess'], ['give', 'first', 'hug'], ['love', 'twilight'], ['may', 'today', 'round', 'weekend', 'one', 'session', 'happi', 'fintster'], ['good', 'morn', 'miamiadc', 'weekend', 'great', 'monday', 'also', 'great', 'hope', 'wonder', 'day'], ['colleen', 'realli', 'sincer', 'hope', 'get', 'better', 'soon'], ['watch', 'hill', 'arghh', 'love', 'itt', 'makin', 'r', 'liam', 'watch', 'haha', 'girl', 'aloud', 'dayss', 'not', 'waitt', 'see', 'cheryl', 'x'], ['thank'], ['hey', 'love', 'hope', 'good', 'day', 'thank', 'awsom', 'night', 'teach', 'put', 'togeth'], ['haha', 'nice', 'wheel', 'victoria', 'peddl', 'thank', 'boy', 'get', 'free', 'ride'], ['yay', 'good', 'enjoy', 'break', 'probabl', 'need', 'hectic', 'weekend', 'take', 'care', 'hun', 'xx'], ['kind', 'cute', 'honest'], ['hate', 'love', 'present', 'got', 'cancel', 'got', 'went', 'work', 'today', 'pitch'], ['app', 'final', 'face', 'truth', 'lack', 'time', 'never', 'abl', 'achiev', 'goal', 'life'], ['happi', 'star', 'war', 'day', 'may', 'fourth'], ['love', 'pb', 'amp', 'banana', 'sandwich', 'still', 'fav', 'mine'], ['go', 'relax', 'hot', 'bath', 'goodnight', 'twit', 'amp', 'not', 'worri', 'andi', 'love', 'twitter', 'hehe'], ['alway', 'amus'], ['yep', 'tomorrow', 'night', 'saw', 'ad', 'squeal', 'love', 'season'], ['ever', 'mention', 'nice', 'awesom', 'dude'], ['woke', 'bank', 'holiday', 'monday', 'colleg', 'got', 'text', 'tom', 'via', 'jason', 'mobil', 'earlier', 'today', 'hope', 'turn'], ['go', 'good', 'week'], ['cheer', 'aptism', 'link'], ['mint', 'choc', 'ice', 'cream', 'whilst', 'good'], ['ha', 'ha', 'thank', 'not', 'drag', 'mountain', 'today'], ['soo', 'intrigu', 'want', 'tri', 'weekend', 'kaya', 'lang', 'baka', 'maaddict', 'ako'], ['good', 'episod', 'top', 'gear', 'tonight'], ['said', 'til', 'later', 'enjoy', 'day', 'everyon'], ['thank', 'ennio'], ['quot', 'pack', 'angri', 'eye', 'incas', 'quot'], ['oo', 'thank', 'danger', 'radio', 'link', 'love', 'test', 'go'], ['bout', 'go', 'bed', 'pretti', 'good', 'day', 'monday'], ['lloovve', 'icar'], ['welcom'], ['french', 'not', 'teacher', 'one', 'hour', 'left', 'til', 'school', 'end'], ['not', 'chanc', 'watch', 'get', 'hold', 'thank', 'tip'], ['appreci', 'kind', 'word', 'glad', 'word', 'reson'], ['feel', 'happi', 'despit', 'amount', 'work', 'need', 'today', 'happi', 'time'], ['eat', 'breakfast', 'get', 'readi', 'go', 'school'], ['bought', 'tv', 'tuner', 'laptop', 'deserv', 'present'], ['cool', 'thing', 'success', 'entrepreneur', 'pleas', 'share'], ['namast', 'hooray', 'monday', 'undaunt', 'wakeup', 'consid', 'london', 'feel', 'justifi', 'bright', 'side', 'everyth'], ['comput', 'hopeless', 'everyth', 'els'], ['idiotat', 'cool', 'th', 'nks', 'follow', 'techyuppi', 'idiot'], ['work', 'cool', 'gang'], ['knew', 'go', 'kind', 'parti', 'would', 'stuck', 'dick', 'mash', 'potato'], ['hmm', 'wrong', 'link', 'ignor', 'tweet'], ['yes', 'beauti', 'fortun', 'live', 'thick', 'relax'], ['grin', 'like', 'cheshir', 'cat', 'hell', 'made', 'day'], ['morn', 'bless', 'day'], ['well', 'alright', 'dollhous', 'still', 'frick', 'awesom', 'elisha', 'perform', 'last', 'week', 'episod', 'sold', 'final'], ['win'], ['lmao', 'yes', 'get', 'excit', 'lol'], ['aww', 'happi', 'birthday'], ['problem', 'think', 'great', 'thing', 'reflect'], ['goodmorn', 'peopl', 'earth'], ['hello', 'hope', 'flu'], ['funni', 'fill', 'speak', 'cheer'], ['go', 'picnic', 'dad', 'atleast', 'persaud', 'idea', 'walk', 'amp', 'cycl', 'yum', 'special', 'k'], ['aw', 'okay', 'tht', 'happen', 'wid', 'glad', 'thts', 'not', 'helpin', 'lol', 'thnx', 'postin', 'wmiad', 'love'], ['saw', 'tweet', 'minut', 'go', 'lunch', 'decid', 'skip', 'today', 'thank', 'save', 'money', 'speedi', 'recoveri'], ['well', 'best', 'luck'], ['got', 'follow', 'feel', 'special'], ['alphonso', 'milkshak', 'morn', 'lassi', 'afternoon', 'fresh', 'nimbupaani', 'fun'], ['nope', 'not', 'comin', 'gurl'], ['good', 'morn'], ['funni'], ['oh', 'ok', 'wed', 'heap', 'nice', 'big', 'fan', 'qld'], ['thank', 'everyon', 'twitter', 'still', 'newbi', 'friend', 'would', 'like', 'invit', 'pleas', 'help', 'girl'], ['not', 'think', 'ever', 'laugh', 'hard'], ['welcom', 'back', 'chica', 'hope', 'nice', 'break'], ['hope', 'day', 'nice', 'sun', 'upon', 'us'], ['realli', 'brave', 'ladi', 'walkin', 'around', 'lion', 'book', 'suggest'], ['thank', 'mate', 'came', 'board', 'twitter', 'tweet', 'sound', 'great'], ['book', 'ticket', 'london', 'thursday', 'exict'], ['pleasur', 'wari', 'girli', 'marshmallow', 'lol', 'might', 'save', 'life'], ['mm', 'yummi', 'look', 'like', 'invit'], ['aw', 'poor', 'eek', 'lol', 'rain', 'tri', 'get', 'kid', 'excit', 'afraid'], ['help', 'caramel', 'digest'], ['congratul', 'love', 'japanes', 'children', 'happi', 'kodomo', 'hi'], ['defin', 'tomorrow'], ['pacquiao', 'fight', 'fun', 'home', 'wif', 'fam', 'melissa', 'sat', 'today', 'mission', 'ikea', 'srsli', 'differ', 'freeway', 'ge', 'burbank'], ['definit', 'blast', 'past'], ['monday', 'end', 'weekend', 'not', 'escap', 'wish', 'good', 'week'], ['fun', 'friend'], ['poor', 'bank', 'holiday', 'monday', 'today'], ['love', 'new', 'hairdo', 'haha', 'live', 'ny', 'yeah', 'realli', 'hott'], ['haha', 'yeah', 'meant', 'mall'], ['truli', 'impress', 'not', 'come', 'close', 'take', 'argument', 'whether', 'web', 'need', 'sub', 'new', 'level', 'though'], ['hand', 'relax', 'bit'], ['come', 'vietnam', 'make', 'live', 'show', 'miley', 'much', 'fan', 'love', 'viet', 'nam'], ['ugh', 'look', 'like', 'work', 'good', 'luck'], ['oh', 'snap', 'kind', 'nut', 'right', 'told', 'least', 'thank', 'babe'], ['spend', 'qualiti', 'time', 'fender', 'tele', 'love'], ['well', 'tell', 'fashion', 'tip', 'need', 'woman', 'heheh'], ['thank'], ['love', 'video', 'da', 'funk', 'daft', 'punk'], ['hope', 'today', 'work', 'favor'], ['hahahahaha', 'look', 'realli', 'good', 'pictur'], ['yeah', 'peep', 'good', 'day', 'catchup', 'everyon'], ['jimmi', 'eat', 'world', 'initi', 'favorit', 'band'], ['put', 'saucepan', 'full', 'water', 'cooker', 'heat', 'style', 'scrabbl', 'best'], ['monday', 'go', 'extrem', 'well', 'not', 'expect'], ['haha', 'philippin', 'want', 'follow'], ['iowa', 'like', 'sometim', 'get', 'frustrat'], ['never', 'better', 'thank'], ['yeah', 'great', 'think', 'hear', 'year', 'come'], ['beauti', 'morn', 'time', 'get', 'enjoy', 'sun'], ['oh', 'snap', 'kind', 'nut', 'right', 'told', 'least', 'thank', 'babe'], ['thank', 'info'], ['oh', 'said', 'hug', 'dad', 'left', 'around', 'morn', 'woke', 'empti', 'hous', 'pretti', 'scare'], ['agre', 'come', 'canberra', 'raddest'], ['watch', 'origin', 'wolverin', 'total', 'love', 'haha'], ['oh', 'god', 'yeah', 'cake', 'look', 'delish', 'hope', 'share', 'haha'], ['know', 'feel', 'good', 'morn', 'mate'], ['thank', 'greedi', 'look', 'full', 'fledg', 'widget', 'la', 'twitter', 'like', 'share', 'within', 'nv', 'much', 'expect'], ['typic', 'overcast', 'bank', 'holiday', 'monday', 'glad', 'went', 'beach', 'saturday'], ['thank', 'alot', 'hope', 'help', 'spread', 'word', 'get', 'peopl', 'involv', 'alreadi', 'make', 'real', 'differ'], ['internet', 'draw', 'back', 'blackberri', 'file', 'could', 'take', 'hour', 'draw', 'prep', 'done'], ['happi', 'star', 'war', 'day', 'lol', 'may', 'forc', 'strong'], ['oh', 'god', 'oh', 'god', 'oh', 'god', 'new', 'supernatur', 'start', 'tonight', 'new', 'sam', 'dean', 'oh', 'god', 'not', 'breath', 'lt', 'lt'], ['well', 'like', 'call', 'success'], ['think', 'thumb', 'button', 'cri', 'river'], ['finish', 'watch', 'masterchef', 'surpris', 'perhap', 'good'], ['thank'], ['fight', 'club', 'anniversari', 'nice', 'tattoo'], ['great', 'local', 'stop', 'ask', 'direct', 'even', 'better', 'know', 'answer'], ['thank', 'love', 'video', 'not', 'need', 'download', 'not', 'offer', 'everyth', 'want', 'tri'], ['oh', 'love', 'one', 'thing', 'mum', 'great', 'sound', 'yummi', 'makin', 'hungri', 'lol'], ['haha', 'might', 'good', 'luck', 'take', 'well', 'hope', 'get', 'put', 'name'], ['hope', 'knew', 'due', 'tuesday'], ['dh', 'finish', 'make', 'giant', 'trio', 'candi', 'bar', 'thank', 'heaven', 'work', 'mate', 'treat', 'tomorrow'], ['real', 'geek', 'talk', 'feel'], ['cool', 'look', 'forward', 'frequent', 'tweet'], ['oo', 'enjoy', 'thank', 'look'], ['think', 'big', 'quot', 'size', 'think', 'determin', 'size', 'result', 'quot', 'bob', 'proctor', 'great', 'advic'], ['look', 'great', 'love', 'way', 'bottom'], ['oh', 'like', 'amaz', 'weekend', 'sunshin', 'amp', 'white', 'wine', 'back', 'rehears', 'regim', 'nice'], ['pretti', 'fun', 'way', 'write', 'resign'], ['anoth', 'week', 'begin', 'one', 'got', 'better', 'last'], ['nice', 'wed', 'ring', 'shini'], ['miss', 'daddi', 'mommi'], ['hi', 'everybodi', 'lunch', 'break', 'work', 'enjoy', 'nice', 'cup', 'coffe'], ['ohh', 'right', 'turn', 'curv', 'right', 'angl', 'like', 'better', 'curvey', 'thank', 'let', 'know', 'though'], ['wow', 'car', 'awesom', 'fun', 'alex'], ['morrn', 'time', 'school', 'time', 'learn'], ['listen', 'teddi', 'picker', 'saw', 'grab', 'not', 'seem'], ['thank', 'glad', 'agre', 'wth', 'follow', 'not', 'polici'], ['happi', 'star', 'war', 'day', 'go', 'make', 'pasta', 'get', 'shower', 'dress', 'watch', 'film', 'like', 'day', 'day'], ['much', 'better', 'think'], ['anoth', 'great', 'song', 'sing', 'along'], ['hey', 'tom', 'plan', 'make', 'concert', 'denmark', 'year', 'pleas', 'repli', 'xx'], ['wikileak', 'geht', 'wieder', 'super', 'wikileak', 'onlin'], ['good', 'morn'], ['wack', 'friend', 'raid', 'kitchen', 'rene', 'love', 'bound', 'badluck', 'debbi', 'psycho', 'korean', 'friend', 'lt'], ['great', 'vinyl'], ['school', 'not', 'bank', 'holiday', 'x'], ['oh', 'oh', 'go', 'shop', 'best', 'friend', 'today', 'yaay', 'go', 'much', 'fun', 'need', 'get', 'alot', 'new', 'cloth'], ['right', 'aah', 'love', 'demi', 'lovato'], ['yes', 'ubook', 'lenovo', 'final', 'arriv'], ['appar', 'starwar', 'day', 'today', 'like', 'shame', 'revis', 'though'], ['good', 'see', 'hear', 'well', 'andi'], ['bank', 'holiday', 'brunch', 'fixin', 'absolut', 'fantast'], ['mo', 'nudg', 'better', 'watch'], ['nugget', 'bit', 'jack', 'told', 'not', 'poke', 'poor', 'hamster'], ['glad', 'got', 'safe', 'amp', 'saw', 'daughter', 'enjoy', 'time'], ['jazz', 'band', 'freakin', 'kick', 'ars', 'good', 'job', 'team'], ['think', 'tania', 'cute', 'nice', 'love', 'lt'], ['rcb', 'trash', 'mumbai', 'indian', 'feel', 'bad', 'mumbai', 'indian', 'not', 'know', 'hit'], ['fell', 'austin', 'taura', 'hanafiah', 'even', 'morre', 'shoott', 'guy', 'not', 'look', 'yumm', 'hahaha'], ['may', 'hahahaha', 'neverr', 'get', 'old'], ['back', 'wonder', 'vacat', 'perfect', 'weather', 'back', 'raini', 'realiti'], ['back', 'long', 'island', 'today', 'spend', 'weekend', 'manchest', 'hope', 'great', 'week', 'ahead'], ['tri', 'minna', 'edit', 'quick', 'sorri'], ['cheer', 'buttercup', 'rain', 'go', 'away', 'heart', 'alway', 'mend', 'actual', 'bet'], ['congratul', 'two', 'well', 'suit', 'love', 'day', 'x'], ['happi', 'star', 'war', 'day', 'everyon'], ['realli', 'excit', 'not', 'wait'], ['go', 'relax', 'chill', 'tonight', 'back', 'work', 'tomorrow', 'week', 'least', 'fun', 'time', 'girlfriend'], ['thank', 'agre'], ['thank', 'look'], ['yay', 'not', 'eurovis', 'fan', 'twitter'], ['oo', 'love', 'bank', 'holiday', 'x'], ['happi', 'star', 'war', 'day'], ['manag', 'find', 'place', 'combin', 'fun', 'pleasur', 'save', 'took', 'plan', 'though'], ['hahahaha', 'train', 'want', 'wild', 'ride'], ['yay', 'smokefre', 'well', 'done'], ['thanx', 'tom', 'love', 'great', 'day'], ['order', 'pizza', 'pizza', 'girl', 'sing', 'love', 'new', 'song', 'excit', 'new', 'song', 'jb', 'paranoid', 'day'], ['bought', 'pink', 'ipod', 'nano', 'day', 'ago', 'deliv', 'week', 'yay', 'amp', 'hope', 'get', 'ear', 'pierc', 'week', 'xd'], ['think', 'confus', 'not', 'believ', 'mani', 'peep', 'know', 'heart'], ['omg', 'meant', 'lt', 'perfect', 'wolverin', 'sir', 'hehe'], ['oh', 'god', 'bless'], ['aww', 'sweet'], ['waitin', 'skool', 'bus', 'soo', 'tire', 'nd', 'still', 'soo', 'much', 'b', 'lazi', 'nd', 'sleep', 'sinc', 'cnt', 'ill', 'sing', 'fav', 'song'], ['thank', 'feedback', 'everyon'], ['rode', 'jeep', 'home', 'mentor', 'heard', 'stori', 'fineart', 'pretti', 'cool'], ['skip', 'school', 'way', 'often', 'rather', 'proud', 'actual'], ['not', 'got', 'virgin', 'yet', 'not', 'sure', 'honest', 'thank', 'anyway'], ['star', 'war', 'day', 'may', 'brilliant'], ['miss', 'dear'], ['wonder', 'piec', 'cake', 'lunch', 'els', 'could', 'want'], ['excit', 'visit', 'twin', 'best', 'friend', 'dinner', 'star', 'gaze', 'movi', 'cool'], ['goodnight', 'lolsz'], ['clear', 'cathol', 'wholeheart', 'agre', 'quot', 'quot', 'ambigu', 'tcot', 'hhrs'], ['hate', 'donat', 'toward', 'car', 'fund'], ['not', 'wait', 'see', 'tonit', 'hilari'], ['wow', 'join', 'photographi', 'scene', 'pretti', 'recent', 'larg', 'format', 'make', 'even', 'interest'], ['woo', 'great', 'subject', 'month', 'use', 'sparkler'], ['like', 'not', 'seen', 'clip', 'though', 'pretti', 'cool'], ['lol', 'thought', 'pretti', 'funni'], ['half', 'solut', 'not', 'address', 'intrus', 'process', 'thank'], ['thank', 'messag', 'awesom', 'love', 'new', 'singl', 'xoxo'], ['think', 'go', 'start', 'write', 'proper', 'blog', 'anyon', 'recommend', 'good', 'blog', 'host', 'thingi'], ['hi', 'thank', 'follow', 'teach', 'chines', 'lesson', 'youtub', 'pls', 'feel', 'free', 'look'], ['oohh', 'understand', 'never', 'get', 'sick', 'mom', 'side', 'guess', 'dad', 'like'], ['jealous'], ['next', 'time', 'go', 'onlin', 'show', 'club', 'owner', 'ean', 'golden', 'video', 'hahaha', 'fan', 'mention'], ['good', 'morn', 'world', 'haha', 'fun', 'movi', 'last', 'night', 'school', 'hmm', 'new', 'shoe', 'make', 'better'], ['ooh', 'lol', 'not', 'know', 'fun', 'princess'], ['itsur', 'dear', 'post', 'present', 'swine', 'flu', 'yest', 'got', 'download', 'day', 'feel', 'great'], ['sorri', 'feel', 'bad', 'hope', 'get', 'better', 'soon', 'know', 'plagu', 'not', 'getcha'], ['zeb', 'nap', 'hour', 'alreadi', 'today', 'asleep', 'must', 'grow', 'fast'], ['lmao', 'listen', 'great', 'bob', 'marley', 'wow', 'hes', 'awesom'], ['ohh', 'not', 'log', 'piti', 'great'], ['mom', 'like', 'milow', 'version', 'ayo', 'technolog', 'good', 'thing', 'not', 'clue'], ['hmm', 'interest', 'choic'], ['never', 'ever', 'smoke', 'around'], ['go', 'bubbl', 'bath', 'alway', 'relax'], ['hahahah', 'thank', 'feel', 'love'], ['hi', 'thank', 'follow', 'teach', 'chines', 'lesson', 'youtub', 'pls', 'feel', 'free', 'look'], ['love', 'game', 'xx'], ['thank', 'support'], ['not', 'worri', 'noon', 'got', 'one', 'next', 'question', 'start', 'minut', 'get', 'think', 'cap'], ['hope', 'moment', 'inspir', 'polit', 'journey', 'back', 'home', 'best'], ['bom', 'dia', 'frioo', 'que', 'good', 'luck', 'first', 'day', 'ju'], ['happi', 'birthday', 'let', 'us', 'know', 'get', 'old', 'boy'], ['hi', 'thank', 'follow', 'teach', 'chines', 'lesson', 'youtub', 'pls', 'feel', 'free', 'look'], ['wow', 'earli', 'best', 'convers'], ['thank', 'soo', 'much', 'lil', 'sis', 'gone', 'us', 'bird', 'park'], ['love', 'walk', 'morn', 'missus', 'drizzl', 'not', 'matter'], ['aww', 'way', 'make', 'feel', 'special'], ['done', 'book', 'sign', 'manchest', 'nice', 'peopl', 'enjoy', 'week'], ['thank', 'approv', 'applic', 'twa', 'forum', 'honey', 'keep', 'good', 'work'], ['aunti', 'dian', 'win', 'quot', 'day', 'quot', 'hes', 'incred', 'hulk', 'quot'], ['miss', 'get', 'togeth', 'everyth', 'settl', 'week', 'congrat', 'hous'], ['ahahahahahahahaha', 'pleas', 'eat', 'head', 'xx'], ['unhook', 'pt', 'home', 'sleep', 'sleep', 'good'], ['like', 'spirit', 'night', 'ooh', 'night', 'grand', 'ere', 'springsteen'], ['hahaha', 'tv', 'not', 'realli', 'thing', 'music', 'girl'], ['yum', 'yum', 'love', 'wallpap', 'matter'], ['goodmorn', 'everyon'], ['blip', 'not', 'misconstru', 'qs', 'last', 'night', 'convers', 'song', 'realli', 'love', 'amp', 'rock', 'morn'], ['might', 'child', 'never', 'one', 'alreadi', 'apologis'], ['got', 'awesom', 'hair', 'cut', 'todayi', 'look', 'hott', 'haha', 'homework'], ['tracki', 'dak', 'one', 'good', 'thing', 'weather', 'get', 'colder', 'porridg'], ['oh', 'ate', 'pizza', 'last', 'night', 'stupid', 'feel', 'closer', 'somehow'], ['good', 'know', 'pln', 'earthday', 'not', 'happen', 'neck', 'wood'], ['sound', 'like', 'challeng', 'see', 'would', 'use', 'abl', 'explicit', 'schedul', 'thread'], ['awe', 'thank', 'much', 'neither', 'need', 'sick', 'friday', 'prayer', 'request'], ['must', 'agre', 'like', 'blackberri'], ['thank', 'hope', 'good', 'week'], ['sat', 'play', 'quick', 'hand', 'poker', 'first', 'hand', 'flush', 'done', 'today'], ['watch', 'miss', 'piec', 'coz', 'theme', 'song', 'lost', 'without'], ['bake', 'win', 'thank'], ['aww', 'man', 'suck', 'big', 'time', 'look', 'way', 'give', 'someth', 'look', 'forward', 'nice', 'long', 'ride'], ['yep', 'quarter', 'til', 'go', 'tri', 'sleep', 'headach', 'subsid', 'take', 'easi', 'teddi'], ['one', 'told', 'mutual', 'admir', 'societi', 'meet', 'morn', 'lol', 'hi', 'boy'], ['think', 'right', 'lol', 'pleas', 'follow', 'much', 'appreci'], ['love'], ['finish', 'wander', 'girl', 'nth', 'time', 'hilda', 'gallar', 'truli', 'kindr', 'soul'], ['get', 'readi', 'school', 'absolut', 'wonder', 'day'], ['updat', 'latest', 'version', 'adium', 'great', 'app'], ['birthday', 'girl', 'bless', 'live', 'anoth', 'year', 'amp', 'celebr', 'love', 'one'], ['happi', 'star', 'war', 'day'], ['happi', 'star', 'war', 'day', 'may'], ['good', 'morn'], ['given', 'way', 'kunal', 'khemu', 'etc', 'starrer', 'turn', 'high', 'probabl', 'rather'], ['good', 'sentenc'], ['good', 'morn', 'took', 'longest', 'shower', 'ever', 'taken', 'life', 'like', 'min', 'shower', 'woah', 'lol'], ['hope'], ['fine', 'look', 'set', 'neighbour', 'must', 'say', 'lot', 'compliment', 'shower', 'upon', 'header', 'graphic'], ['saaf', 'mee', 'fuck', 'epic', 'time', 'last', 'night', 'old', 'friend', 'new', 'friendship', 'good', 'way', 'kick', 'month'], ['wolverin', 'boss', 'serious', 'fuck'], ['said', 'anyon', 'could', 'quot', 'write', 'one', 'quot', 'special', 'select', 'cours', 'chosen', 'outstand'], ['love', 'idea', 'give', 'year', 'theme', 'year', 'new', 'begin'], ['love', 'day', 'school', 'gt', 'studyin', 'quiet'], ['like', 'optim'], ['interest', 'wknd', 'sleep', 'saturday', 'amp', 'product', 'sunday'], ['basket', 'case', 'mine', 'miss', 'go', 'listen', 'shit', 'load'], ['hope', 'amaz', 'day', 'today', 'monkey', 'deserv', 'cheat', 'dew', 'amp', 'look', 'pictur', 'lol', 'happi', 'birthday', 'lt'], ['yup', 'slowli', 'recov', 'suck', 'not', 'eat', 'stuff', 'crave', 'right', 'gum', 'not', 'take', 'trip'], ['song', 'slap', 'face'], ['work', 'happi', 'job', 'radio', 'not', 'anyth', 'physic', 'exhaust'], ['final', 'birthday', 'lt', 'not', 'wait', 'fuck', 'ruin'], ['incredili', 'love', 'read', 'tweet', 'entertain', 'keep'], ['coach', 'say', 'come', 'along', 'way', 'faster', 'alot', 'peopl', 'oh', 'yeah', 'man', 'ohh', 'sore'], ['welcom'], ['lol', 'joyologist', 'love', 'much', 'better', 'happi', 'freak', 'not', 'stop', 'smile', 'enjoy', 'monday'], ['lot', 'peopl', 'follow', 'unfollow', 'lot', 'yer', 'kind', 'bore', 'not', 'realli', 'help'], ['nice', 'one'], ['bed', 'go', 'dream', 'world', 'liquor', 'store', 'get', 'blown'], ['hello', 'soo', 'awesom', 'not', 'ever', 'stop', 'haha', 'make', 'fall', 'chair', 'laugh', 'x'], ['oh', 'good', 'luck', 'movi'], ['lucki', 'face', 'south', 'hear', 'see', 'reflect', 'phillip', 'point'], ['unpack', 'new', 'toy', 'arriv', 'studio', 'right', 'call', 'tc', 'final', 'not', 'wait', 'check', 'sound'], ['okaii', 'cool', 'not', 'wait', 'seri', 'begin', 'guna', 'awesom', 'x'], ['thank', 'much', 'belat', 'followfriday', 'shout', 'payingitforward'], ['like', 'posit', 'may', 'not', 'chang', 'carrer', 'crazyb', 'dog', 'ladi', 'not', 'math', 'test', 'x'], ['good', 'morn', 'tweeti', 'world', 'great', 'day', 'everyon'], ['wow', 'realli', 'pretti', 'talent', 'ladi', 'impress'], ['love', 'nose', 'kiss'], ['thank', 'messag', 'awesom', 'love', 'new', 'singl', 'xoxo'], ['agre'], ['know', 'could', 'not', 'rememb'], ['eat', 'toast', 'butter'], ['good', 'one', 'might', 'think', 'year', 'nanowrimo', 'competit'], ['star', 'warz', 'day', 'hot', 'topic', 'man', 'wait', 'star', 'trek'], ['feel', 'today', 'go', 'amaz'], ['other', 'job', 'like', 'avail', 'sound', 'like', 'great', 'experi', 'direct', 'messag', 'know', 'other'], ['would', 'amaz', 'could', 'meet', 'us', 'germani', 'germani', 'twice'], ['oh', 'kind'], ['aww', 'rusk', 'good', 'tummi', 'ach', 'though', 'p', 'tri', 'fennel', 'camomil', 'tea', 'work', 'obvious', 'tri'], ['problem'], [], ['chequ', 'cash', 'tomorrow', 'not', 'get', 'bank', 'idea', 'feel', 'safe', 'get', 'though', 'woo'], ['great', 'stuff', 'not', 'wait', 'hear'], ['mani', 'thanx', 'guy'], ['haha', 'thank', 'inan', 'grin', 'grade', 'student', 'realli', 'fascin', 'semest'], ['thank', 'robban'], ['love', 'job'], ['thank', 'man', 'realli', 'appreci', 'kind', 'word'], ['learn', 'learn', 'learn', 'togeth'], ['happi', 'star', 'war', 'day', 'everyon', 'everyon', 'raini', 'bank', 'holiday', 'head', 'soon', 'coffe', 'mum', 'shop'], ['good', 'morn', 'twitter', 'communiti', 'got', 'finish', 'eat', 'delici', 'stack', 'pancak', 'courtesi', 'mom', 'bisquick'], ['thank', 'like', 'pleas', 'leav', 'comment', 'subscrib', 'chicago', 'anoth', 'great', 'music', 'thank', 'support'], ['go', 'buy', 'wacom', 'today', 'good', 'time'], ['score', 'two', 'day', 'get', 'food', 'stamp', 'good', 'want', 'safeway', 'pizza'], ['would', 'prefer', 'quot', 'observ', 'insight', 'quot', 'call', 'see', 'ice', 'cream', 'fanci', 'tonight'], ['watch', 'australia', 'last', 'night', 'got', 'say', 'bloodi', 'fantast', 'film', 'ad', 'bonus', 'hugh', 'jackman', 'definit', 'got', 'see', 'movi'], ['yeahh', 'not', 'know', 'like', 'owen', 'anymor', 'though', 'kind', 'lost', 'respect', 'episod', 'record'], ['great', 'stuff', 'websit', 'today'], ['supernatur', 'ten', 'count'], ['good', 'morn', 'want', 'breakfast'], ['yum', 'thank', 'get', 'dress', 'wait', 'wash', 'finish', 'hang', 'text', 'set'], ['masson', 'give', 'link', 'quit', 'handi'], ['sweet', 'everyday', 'hero', 'friend'], ['congratul', 'hope', 'amaz', 'day'], ['well', 'thank'], ['heh', 'aye', 'investig', 'proper', 'first', 'ask', 'seem', 'like', 'not', 'obvious', 'thing', 'though'], ['hmm', 'admit', 'good', 'episod', 'man', 'bag', 'rather', 'fetch'], ['need', 'know', 'cautious', 'cautious', 'good'], ['open', 'facebook', 'account', 'littl', 'confus', 'not', 'realli', 'get', 'twitter', 'seem', 'much', 'better'], ['yeah', 'big', 'chill', 'good', 'food', 'good', 'music', 'great', 'weather', 'cool', 'day', 'bro'], ['happi', 'star', 'war', 'day'], ['love', 'music', 'good', 'recommend', 'someon', 'know', 'stuff'], ['happi', 'birthday', 'whore'], ['school', 'time', 'not', 'much', 'week', 'day', 'school', 'time', 'nyc', 'not', 'wait', 'last', 'day', 'school'], ['think', 'left', 'confer', 'feedback', 'sheet', 'bag', 'oop', 'say', 'excel', 'everyth', 'found'], ['yay', 'sing', 'loud', 'wed', 'fall', 'boy', 'time', 'low', 'cobra', 'starship', 'friday', 'win'], ['glad'], ['welcom'], ['thank'], ['cook', 'microwav', 'pizza', 'yummi'], ['school', 'blow', 'look', 'nice', 'today', 'thoughh'], ['love', 'alex', 'parde', 'colour', 'pictur', 'differnt'], ['hey', 'babe', 'love', 'yoouu', 'gt', 'lt', 'rp', 'time'], ['would', 'welcom'], ['awesom', 'take', 'look', 'home'], ['haha', 'not', 'know', 'work', 'blip', 'apart', 'obvious', 'thank', 'reblip', 'song', 'nice', 'day', 'xx'], ['awesom', 'let', 'see', 'done'], ['noth', 'like', 'alon', 'time', 'handheld', 'devic'], ['think', 'would', 'look', 'cute', 'beani', 'hat'], ['haha', 'problem', 'fun', 'not'], ['mm', 'holiday', 'commerci', 'realli', 'nice'], ['life', 'would', 'suck', 'without', 'kelli', 'clarkson'], ['thank', 'blast'], ['heir', 'draft'], ['way', 'way', 'way', 'earli'], ['goodmorn', 'world'], ['good', 'morn'], ['like', 'rio', 'ferdinand', 'wear', 'england', 'jersey'], ['congratu', 'sweeti'], ['aww', 'jon', 'ryan', 'bob', 'greta', 'one', 'pictur', 'ador', 'brighten', 'morn', 'ty', 'jon', 'walker'], ['soon', 'new', 'job', 'start', 'happi'], ['read', 'somewher', 'restor', 'name', 'hope', 'happen', 'soon'], ['wrong', 'thanx', 'awesom'], ['thank', 'follow', 'doug', 'like', 'hat'], ['thank', 'darl', 'girl', 'xx'], ['feel', 'funni', 'hmmp', 'better', 'amaz', 'fuck', 'day', 'not', 'love', 'know', 'sammi', 'rovin', 'got', 'text', 'tweet', 'lt'], ['yay', 'love', 'host', 'money', 'breakfast', 'jenna', 'lee', 'amaz', 'pretti', 'sexi', 'jenna', 'lee', 'yay'], ['waitin', 'dr', 'dee', 'lunch', 'beauti', 'ladi', 'gym', 'yeah', 'need', 'loos'], ['good', 'morn', 'twitterland', 'happi', 'monday'], ['discov', 'tv', 'guy', 'realli', 'good', 'love', 'music'], ['good', 'morn', 'sinc', 'quiet'], ['ooh', 'good', 'start', 'hardest', 'one', 'go', 'day', 'lock', 'door', 'leav', 'food', 'toilet', 'x'], ['great', 'weekend', 'stuttgart', 'wonder', 'peopl', 'nice', 'discuss', 'lot', 'fun', 'togeth', 'strong'], ['congratul', 'wootwoo', 'great', 'game', 'kayo'], ['still', 'grench', 'paper', 'still', 'get', 'distract'], ['anoth', 'hd', 'lectur', 'gob', 'smack', 'good', 'present'], ['love', 'cheesey', 'one', 'cool', 'orign', 'one', 'skip', 'brother', 'got', 'tri', 'c', 'haha'], ['know', 'test', 'exam', 'subject', 'except', 'english', 'damn', 'davi'], ['love', 'abl', 'run', 'tongu', 'along', 'teeth'], ['got', 'babi', 'g', 'wach', 'zi', 'ladi', 'gaga', 'wear', 'eh', 'eh', 'film', 'clip', 'pink', 'love', 'kay', 'thank', 'heap', 'win', 'olivia'], ['anoth', 'nice', 'day', 'work', 'goderich', 'today', 'walk', 'amp', 'enjoy', 'weather'], ['got', 'alot', 'runnin', 'around', 'today', 'get', 'job', 'app', 'complet', 'file', 'glad', 'got', 'job'], ['rearri', 'rip', 'would', 'never', 'guess', 'ate'], ['ah', 'clean', 'nice'], ['earli', 'monday', 'great', 'raini', 'monday', 'not', 'great'], ['around', 'littl', 'earlier', 'want', 'phone', 'rang', 'exercis', 'good', 'way', 'start', 'day', 'right'], ['good', 'afternoon'], ['nevermind', 'lexi', 'playlist', 'work', 'magic'], ['could', 'wors', 'usual', 'nite', 'owl'], ['good', 'morn', 'twittervill', 'work', 'later'], ['think', 'boss', 'switzerland', 'week', 'go', 'return', 'ira', 'go', 'awesom'], ['involv', 'requir', 'architectur', 'nice', 'look', 'forward', 'write', 'code'], ['good', 'cup', 'cake'], ['brad', 'fast', 'favorit', 'person', 'hang'], ['vido', 'evid', 'not', 'wait', 'though', 'need', 'find', 'regular', 'partner', 'end', 'love'], ['wow', 'congrat', 'rosemari'], ['better', 'spider', 'type', 'australian', 'wildlif', 'one', 'would', 'imagin'], ['sweetest', 'loveliest', 'thing', 'say', 'made', 'smile', 'thank'], ['absolut', 'love', 'mike', 'watt', 'sexi', 'hero'], ['good', 'stuff', 'great', 'thank', 'x'], ['tongu', 'cheek', 'anoth', 'one', 'take', 'piss', 'arab', 'long'], ['video', 'long', 'gone', 'premier', 'today', 'yahoo', 'not', 'miss', 'awesom', 'video', 'version'], ['ahh', 'save', 'mow', 'lawn', 'rain', 'plenti', 'time', 'go', 'kayak', 'bless', 'rain', 'god'], ['home', 'beach', 'feet', 'burn', 'proud', 'sunscreen'], ['time', 'hittin', 'hay', 'later', 'tweep', 'ala', 'billi', 'cunningham', 'great', 'american'], ['congratul', 'manni', 'quot', 'pacman', 'quot', 'pacquiao', 'made', 'everi', 'filipino', 'proud', 'filipino'], ['hi', 'jakki', 'thank', 'hug', 'right', 'back', 'ya'], ['lunch', 'meet', 'prof', 'not', 'go', 'bad'], ['treat', 'hair', 'bad', 'reveng', 'turn', 'grey', 'prematur'], ['haha', 'def', 'song', 'epic', 'fun', 'listen', 'new', 'fnb'], ['studio', 'ghibli', 'year', 'ponyo', 'alway', 'seem', 'perfect', 'wait', 'till', 'august'], ['beauti'], ['soon', 'go', 'look', 'cabaret', 'go', 'fun'], ['muse', 'grip', 'firm', 'throat', 'realli', 'enjoy', 'write'], ['photo', 'session', 'bond', 'session', 'happi'], ['haha', 'say', 'great', 'teacher', 'learn', 'best', 'hannah', 'montana'], ['lol', 'bugg', 'school', 'awsom'], ['found', 'morn', 'got', 'subscrib', 'thank', 'check', 'lillysan', 'award', 'xx', 'li'], ['may', 'happi', 'star', 'war', 'day'], ['love', 'day', 'school', 'one', 'friday'], ['glad', 'see', 'typic', 'bank', 'holiday', 'weather', 'wise', 'go', 'much', 'today', 'yeah', 'right'], ['goodi', 'bag', 'car', 'boot', 'includ', 'cute', 'cross', 'stitch', 'bird', 'craft', 'room', 'man', 'sell', 'sweeti'], ['haha', 'realli', 'not', 'like', 'get', 'busi', 'ok'], ['white', 'hous', 'join', 'social', 'network', 'site', 'gt', 'better', 'late', 'never'], ['head', 'school', 'go', 'good', 'day', 'knoww'], ['screw', 'review', 'thought', 'wolverin', 'awesom', 'not', 'enough', 'domin', 'monaghan', 'like'], ['would', 'one', 'vwller', 'want', 'add', 'event', 'ning', 'would', 'much', 'appreci'], ['download', 'movi', 'quot', 'still', 'quot', 'cool', 'movi'], ['good', 'one'], ['fun', 'bbq', 'good', 'matter'], ['implement', 'websit', 'love', 'rail'], ['go', 'lunch', 'soon', 'fave', 'cuz'], ['hope', 'expo', 'would', 'amaz', 'tri', 'hard', 'make', 'perfect'], ['good', 'morn', 'rise', 'shine', 'way', 'school'], ['oh', 'monday', 'also', 'mean', 'new', 'american', 'dad', 'glad', 'watch', 'show', 'funni', 'make', 'monday', 'even', 'better'], ['wake', 'keep', 'awak', 'pleas', 'today', 'go', 'long', 'alreadi', 'feel', 'eww'], ['especi', 'hard', 'get', 'bed', 'morn', 'cuz', 'hot', 'run', 'late', 'stuck', 'front', 'mirror', 'check'], ['amp', 'luca', 'till', 'amp', 'david', 'henri', 'lover', 'boy', 'cute', 'luca', 'amp', 'ill', 'henri', 'deal'], ['keep', 'turn', 'odd', 'nugget', 'wisdom'], ['went', 'see', 'priscilla', 'ahn', 'last', 'night', 'amazin', 'band', 'actual'], ['go', 'disgrac', 'life', 'not', 'make', 'next', 'year', 'perfectionist', 'suck', 'good', 'luckk'], ['may', 'offici', 'announc', 'luck', 'day'], ['sound', 'like', 'great', 'time'], ['make', 'sure', 'word', 'poo', 'ball', 'underbelli', 'suck', 'ball', 'gave', 'wk'], ['yes', 'quit', 'unsur', 'aswel', 'haha'], ['current', 'work', 'collab', 'alynn', 'carter', 'call', 'lost', 'insid', 'excit'], ['back', 'interest', 'email'], ['bore', 'bad', 'weather', 'today', 'watchingn', 'alia', 'fun', 'boyfriend'], ['funni', 'said', 'would', 'never', 'make', 'look', 'far', 'come', 'back', 'heahh', 'um', 'yeah', 'school'], ['fun', 'facebook'], ['cool', 'music', 'collect', 'use', 'background', 'music', 'music', 'keygen'], ['radio', 'amaz', 'yesterday'], ['maccabe', 'new', 'album', 'winner', 'everybodi', 'take', 'listen', 'fact'], ['go', 'buckl', 'week', 'relief', 'twitter', 'follow', 'inan', 'enjoy', 'silenc'], ['hello', 'enjoy', 'london', 'watch', 'hackney', 'mental'], ['happi', 'vstudio', 'shortcut', 'backk'], ['class', 'longg', 'day'], ['oh', 'yeah', 'play', 'earth', 'wind', 'fire'], ['heard', 'grapevin', 'might', 'see', 'around', 'today', 'look', 'forward', 'meet'], ['onlin'], ['well', 'good'], ['think', 'bicycl', 'freak', 'custodian', 'would', 'not', 'let', 'build', 'not', 'let', 'key'], ['hahahahahahahahahah', 'tickl', 'much'], ['instal', 'ubuntu', 'offic', 'lap', 'yaay', 'quot', 'instal', 'window', 'quot', 'featur', 'rock', 'awesom', 'ubuntu', 'excit'], ['fucken', 'tire', 'fuck', 'sunni', 'good', 'day', 'deff'], ['okay', 'well', 'not', 'feel', 'bad', 'lmao'], ['r', 'welcom', 'pal', 'truli', 'deserv', 'follow'], ['ha', 'yea', 'not', 'allow', 'day', 'rest', 'way', 'mani', 'interest', 'idea', 'incorpor', 'tweetdeck'], ['baq', 'sleep', 'go', 'headach', 'start', 'not', 'da'], ['wish', 'liter', 'could', 'fuck', 'everi', 'nigga', 'nymph'], ['tri', 'record', 'audio', 'sourc', 'mayb', 'need', 'specif', 'program', 'good', 'thank', 'hehe'], ['yeah', 'aquarius', 'pretti', 'scari', 'song'], ['awesom'], ['yeah', 'sound', 'sensibl', 'thought', 'heston', 'bleumenth', 'moment', 'genius', 'somehow'], ['may', 'happi', 'star', 'war', 'day'], ['tru', 'rim', 'get', 'good'], ['alway', 'brighten', 'quot', 'week', 'quot'], ['tonight', 'cool'], ['look', 'forward', 'one', 'soon'], ['fantast', 'time', 'paradis', 'drink', 'margerita'], ['yes', 'make'], ['good', 'morn', 'tweepsland', 'makin', 'great', 'monday', 'huge', 'shout', 'follow', 'muah', 'muah', 'appreci'], ['sound', 'good', 'quot', 'patch', 'brought', 'quot'], ['got', 'xbox', 'back', 'realli', 'sore', 'knee', 'not', 'walk'], ['almost', 'done', 'cover', 'page', 'yay'], ['best', 'weekend'], ['seen', 'load', 'new', 'photo', 'stuff', 'new', 'moon', 'not', 'wait', 'lol', 'l', 'taylor', 'lautner', 'lol', 'take', 'shirt', 'time', 'yum', 'lol'], ['respect', 'heineken', 'man', 'bag'], ['queen', 'sass', 'oh', 'sceni'], ['ah', 'good', 'idea', 'librari', 'seem', 'work', 'not', 'obvious'], ['good', 'luck', 'final', 'everyon'], ['lol', 'thank', 'babe'], ['great', 'wonder', 'first', 'day'], ['good', 'morn'], ['feelin', 'somewhat', 'ugh', 'not', 'want', 'exam', 'oh', 'well', 'day', 'babi'], ['hey', 'david', 'gone', 'eye', 'yet', 'birthday', 'sing', 'present', 'ever', 'fun', 'breakfast', 'hunt'], ['last', 'repli', 'scholar', 'us', 'homeland', 'secur', 'said', 'ontolog', 'creat', 'quot', 'everybodi', 'hate', 'prescript', 'quot'], ['patient', 'get', 'soon'], ['coolest', 'foreign', 'word', 'english', 'languag', 'need', 'check', 'number', 'one', 'amaz'], ['get', 'better'], ['goe', 'one', 'n', 'smirker', 'cheer', 'dave', 'aka', 'jak', 'aka', 'best', 'chest', 'ever'], ['not', 'believ', 'puppi', 'like', 'brussel', 'sprout'], ['school', 'game', 'oh', 'joy', 'total', 'not', 'lookin', 'forward', 'day'], ['go', 'chines', 'sound', 'yum'], ['west', 'coast', 'readi', 'catch', 'flight', 'back', 'excit', 'go', 'back', 'two', 'fav', 'boyzz', 'puppi', 'n', 'bf'], ['listen', 'david', 'archuleta', 'album', 'amaz'], ['hello', 'c', 'week'], ['listen', 'stolen', 'music', 'love', 'free'], ['right', 'enjoy', 'lasagn'], ['alway', 'weird', 'dream'], ['danc', 'alright', 'todayi', 'still', 'jai', 'ho'], ['long', 'farewel', 'lt', 'super', 'amaz', 'day', 'go', 'sleep'], ['nin', 'app', 'get', 'reject', 'appl', 'reznor', 'threaten', 'go', 'jailbreak', 'alway', 'entertain'], ['saw', 'perform', 'ellen', 'show', 'behind', 'australia', 'amaz', 'wonder', 'voic'], ['problem', 'dns', 'not', 'work', 'utorr', 'destroytwitt', 'work', 'everyth', 'els'], ['see', 'octob', 'love', 'new', 'book', 'next', 'one'], ['congratul', 'test'], ['thank'], ['good', 'morn', 'thank', 'retweet'], ['yay', 'glad', 'not', 'one', 'sign', 'away', 'soul', 'twitter', 'facebook', 'welcom', 'xx'], ['still', 'pump', 'concert', 'saturday', 'come'], ['wci', 'hashtag', 'simpli', 'not', 'die', 'anytim', 'soon'], ['haha', 'stay', 'near', 'hour', 'coach', 'get', 'may', 'not', 'conveni', 'hour', 'tv'], ['richard', 'not', 'see', 'get', 'back', 'good', 'luck'], ['want', 'see', 'david', 'cook'], ['bee', 'trap', 'honeypot'], ['britain', 'got', 'talent', 'get', 'better', 'everi', 'week'], ['far', 'except', 'rain', 'morn', 'great', 'not', 'let', 'dampen', 'day'], ['ehheheh', 'thank'], ['may', 'forth', 'ha', 'yes', 'today', 'birthday', 'star', 'war', 'day', 'not', 'lucki', 'star', 'war', 'fan'], ['aww', 'cute', 'pug'], ['lichfield', 'tweetup', 'sound', 'like', 'fun', 'hope', 'see', 'everyon', 'els'], ['congratul', 'penjii', 'call', 'soulja', 'boy', 'mcbabi', 'lol'], ['math', 'final', 'wish', 'luck'], ['rofl', 'rofl', 'fun'], ['happi', 'star', 'war', 'day', 'everyon', 'celebr', 'famili', 'ok', 'not', 'celebr', 'go', 'round', 'famo'], ['good', 'see', 'ya', 'melbourn'], ['shweet'], ['oh', 'top', 'gear', 'uk', 'love', 'thee'], ['good', 'morn', 'hope', 'good', 'day', 'today', 'although', 'monday', 'posit'], ['bird', 'broken', 'wing', 'song', 'love', 'sing', 'know', 'xx'], ['thank', 'gifford', 'lectur', 'page'], ['fun', 'summer'], ['lol', 'like', 'challeng', 'imposs', 'want', 'tri'], ['wait', 'el', 'amp', 'listen', 'littl', 'mjb', 'quot', 'fine', 'quot', 'perfect', 'song', 'start', 'week'], ['polli', 'scattergood', 'new', 'singl', 'today', 'download', 'pleas', 'not', 'touch', 'ep', 'itun', 'ace'], ['rememb', 'guy', 'tweetbud', 'gt', 'help', 'get', 'flwrs', 'amp', 'make', 'smile'], ['good', 'morn', 'readi', 'start', 'week'], ['heard', 'basment', 'jaxx', 'new', 'song', 'quot', 'raindrop', 'quot', 'fantast', 'make', 'danc', 'not', 'wait', 'fuji', 'rock', 'festiv'], ['work', 'work', 'work', 'mani', 'hour', 'spent', 'worth', 'make', 'red', 'irlanda', 'big'], ['chillin', 'rent', 'look', 'hilari', 'old', 'photo', 'well', 'funni'], ['good', 'morn'], ['wide', 'awak', 'readi', 'big', 'shop', 'trip', 'hope', 'get', 'tone', 'sweet', 'dealz', 'lot', 'fanci', 'cloth'], ['well', 'need', 'get', 'motiv', 'also', 'homework', 'essay', 'love', 'day'], ['pick', 'daughter', 'appear', 'pick', 'unhealthi', 'like', 'like', 'bad', 'parent'], ['quot', 'problem', 'quot', 'charm', 'fast', 'mean', 'cross', 'finger'], ['true', 'download', 'tweetdeck', 'yet', 'liter', 'amaz', 'xx'], ['sweeti'], ['happi', 'birthday', 'congrat', 'wish', 'take', 'care'], ['tri', 'watch', 'lost', 'onlin', 'annoy', 'internet', 'not', 'lost'], ['prob', 'cuz', 'not', 'realli', 'like', 'sleep', 'late', 'even', 'tri'], ['guy', 'call', 'bartâ', 'ofâ', 'theâ', 'criticalâ', 'question', 'guess', 'good', 'thing'], ['happi', 'star', 'war', 'day'], ['agre', 'keep', 'star', 'trek', 'make', 'commerci', 'viabl'], ['miss'], ['ah', 'gotcha', 'well', 'curious', 'hear', 'thought', 'wolverin', 'actual', 'went', 'saw'], ['whew', 'final', 'got', 'rc'], ['yay', 'congratul', 'oh', 'newli', 'mint', 'graduat', 'let', 'buy', 'lunch', 'ice', 'chocol', 'plural', 'celebr'], ['love', 'dawn', 'replic', 'love', 'music', 'monday'], ['almost', 'catch', 'go', 'kick', 'ass', 'woop', 'b', 'jo', 'mile', 'high', 'club', 'soon'], ['go', 'take', 'last', 'final', 'wish', 'luck'], ['feel', 'absoulutley', 'fine'], ['thank'], ['rememb', 'evid', 'base', 'manag', 'best', 'ebm'], ['yeah', 'love', 'hawaiian', 'outfit', 'reus', 'rugbi', 'year'], ['guin', 'got', 'toy', 'mom', 'dad', 'hous', 'hooray', 'free', 'stuff'], ['thank', 'much', 'glad', 'like'], ['good', 'morn', 'thank', 'great', 'day'], ['star', 'war', 'day', 'urgh', 'go', 'get', 'video'], ['love', 'ryan', 'housewif', 'make', 'smile'], ['thank'], ['smile', 'guy', 'turn', 'speaker', 'good'], ['precis', 'weather', 'report'], ['got', 'work', 'take', 'whole', 'day', 'great', 'boss'], ['wake', 'ungod', 'hour', 'go', 'work', 'start', 'get', 'old', 'least', 'coffe', 'good'], ['woke', 'dream', 'met', 'hero', 'author', 'ann', 'rice', 'amp', 'son', 'author', 'christoph', 'rice', 'euphoria', 'perhap', 'would', 'someday'], ['award', 'first', 'ever', 'credit', 'card'], ['well', 'ever', 'head', 'back', 'west', 'coast', 'hit', 'tini', 'place', 'hack', 'hang', 'beach'], ['right', 'ducki', 'thank', 'big', 'help', 'wrap', 'amp', 'write'], ['happi', 'star', 'war', 'day'], ['go', 'work', 'ill', 'home', 'go', 'look', 'camera', 'sinc', 'must', 'lost', 'hous', 'everyon', 'wonder', 'day'], ['good', 'morn', 'got', 'afternoon', 'germani'], ['love'], ['popcorn', 'crazi', 'dude', 'still', 'ador'], ['would', 'travel', 'uk', 'one', 'big', 'us', 'meet', 'sound', 'great', 'would', 'love', 'go', 'one', 'mani', 'fur', 'amp', 'much', 'art'], ['final', 'sick'], ['sheesh', 'crochet', 'bah', 'humbug', 'sleep', 'um', 'suppos', 'someday'], ['thank', 'anita', 'look', 'host', 'look'], ['nice', 'like', 'go', 'rain', 'delhi'], ['good', 'morn', 'tweep', 'feel', 'not', 'oversleep', 'graci', 'around', 'pounc', 'head', 'woke'], ['awak', 'school', 'ew', 'put', 'nice', 'lotion'], ['congradt', 'show', 'even', 'though', 'not', 'lol'], ['good', 'hav', 'heard', 'lovelovelov', 'old', 'stuff', 'though', 'overtur', 'underscor', 'best', 'album', 'think'], ['head', 'utah', 'hospit', 'great', 'day', 'everyon'], ['go', 'last', 'final', 'happi'], ['nice', 'assign', 'night'], ['hard', 'weekend', 'much', 'alcohol', 'fuckin', 'quot', 'weinfest', 'quot'], ['yay', 'three', 'follow', 'good', 'know', 'one', 'person', 'big', 'wide', 'world', 'like', 'fishi'], ['oh', 'dear', 'hope', 'feel', 'better', 'soon', 'get', 'nice', 'hot', 'chicken', 'soup'], ['sure', 'wish', 'mind', 'could', 'enter', 'box', 'call', 'quot', 'noth', 'quot', 'men', 'brain', 'not', 'go', 'exhaust'], ['love', 'kiss'], ['back', 'home', 'earli', 'wow', 'thing', 'get', 'phil', 'xd'], ['well', 'look', 'bruv', 'exam', 'timet', 'french', 'oral', 'exam', 'feel', 'fortun', 'erm', 'digest', 'morn', 'revis'], ['yay', 'face', 'back'], ['nice', 'like', 'go', 'rain', 'delhi'], ['still', 'feel', 'blah', 'gave', 'biig', 'dose', 'insulin', 'need', 'hour', 'ago', 'take', 'last', 'exam', 'junior', 'year'], ['good', 'girl', 'school', 'today', 'yayi'], ['wow', 'realli', 'kickin', 'carey', 'butt', 'competit', 'see', 'soon'], ['well', 'cool', 'lovv', 'ro', 'amp', 'co', 'shoow'], ['new', 'forest', 'hope', 'walk', 'would', 'lose', 'pound'], ['final', 'got', 'graduat', 'gear', 'today', 'excit', 'believ', 'day', 'left', 'aah', 'sweater', 'cozi'], ['snowbear', 'final', 'come', 'che', 'warren'], ['aww', 'fun', 'fam', 'boo', 'boo'], ['happi', 'star', 'war', 'day'], ['love', 'time', 'starbuck'], ['cougar', 'privaci', 'threaten', 'surveil', 'increas', 'sorri', 'could', 'not', 'help', 'one'], ['love', 'look', 'cute', 'togeth'], ['thank', 'warn', 'good', 'thing', 'heart', 'unbreak'], ['weheyi', 'give', 'thank', 'midi', 'keyboard'], ['bahaha', 'bof', 'got', 'get', 'life', 'although', 'not', 'say', 'much', 'obsess', 'miley', 'cyrus', 'got', 'get', 'life'], ['yum', 'whole', 'box', 'cooki'], ['plan', 'tri', 'call', 'doctor', 'though', 'not', 'go', 'well', 'most', 'plan'], ['realli', 'woo', 'wish', 'could', 'go', 'indonesia', 'lol', 'hope', 'next', 'summer'], ['louis', 'r', 'not', 'adopt', 'ballet', 'love', 'cocktail', 'even'], ['year', 'old', 'barbi', 'doll', 'still', 'rock', 'girl', 'ken', 'not', 'bad', 'either', 'memori'], ['last', 'week', 'class', 'well', 'technic', 'class', 'two', 'exam', 'summerr'], ['think', 'like', 'workshop'], ['hyster', 'yaa', 'email', 'lt', 'write', 'speech', 'speaker', 'food', 'good', 'school', 'monday'], ['sri', 'not', 'feel', 'well', 'anoth', 'chang', 'believ', 'hope', 'fun', 'lot', 'inspir', 'input'], ['excit', 'camp', 'load', 'peopl', 'not', 'thrill', 'fact', 'get', 'sleep', 'tent', 'roll', 'around', 'mud'], ['new', 'pollster', 'data', 'parti', 'identif', 'unit', 'state', 'democrat', 'independ', 'republican', 'ouch'], ['flat', 'sparkl', 'clean', 'team', 'work', 'way', 'pick', 'food'], ['look', 'forward', 'follow', 'journey', 'endeavor', 'subscrib', 'blog'], ['great', 'time', 'london'], ['sound', 'like', 'jeff', 'best', 'job', 'world'], ['got', 'back', 'mcfli', 'concert', 'ahh', 'amaz', 'love', 'david', 'archuleta'], ['sorri', 'misspel', 'twice', 'alreadi', 'notgiv', 'run'], ['good', 'morn', 'court', 'crossfit', 'bibl', 'studi', 'someon', 'special', 'hous'], ['alrighti', 'thnx', 'good', 'night'], ['shop', 'clean', 'bmfing', 'webcam', 'chat', 'nephew', 'noth', 'spesh', 'good', 'bank', 'holiday', 'monday', 'nonetheless'], ['ugh', 'tire', 'waitin', 'bus', 'good', 'morn'], ['worri'], ['made', 'first', 'skype', 'landlin', 'call', 'good', 'call', 'qualiti', 'quit', 'impress'], ['got', 'best', 'dress'], ['got', 'get', 'readi', 'go', 'hunt', 'outsid', 'volterra', 'fun', 'talk', 'everyon', 'later'], ['meet', 'friend', 'tonight', 'go', 'discuss', 'human', 'traffick', 'issu', 'dali', 'interest', 'guy'], ['get', 'yer', 'freak', 'monday', 'great', 'one', 'possibl', 'great', 'monday'], ['wake', 'ungod', 'hour', 'go', 'work', 'start', 'get', 'old', 'least', 'coffe', 'good'], ['quot', 'never', 'want', 'lose', 'fan', 'got', 'us', 'quot', 'thank', 'say', 'wish', 'other', 'nice', 'day', 'greet'], ['thank'], ['listen', 'play', 'friend', 'album', 'disgust', 'everi', 'second', 'damn', 'suck', 'normal', 'reaction', 'everi', 'album'], ['pillow', 'heaven'], ['thought', 'might', 'interest', 'see', 'view', 'photo'], ['somewher', 'within', 'temptat', 'return', 'mysefl', 'keep', 'work', 'hard', 'till', 'june'], ['back', 'yoga', 'retreat', 'recommend', 'everyon'], ['help', 'not', 'sure', 'way', 'haha', 'tri', 'alot', 'free', 'time', 'right', 'haha'], ['hi', 'sorri', 'go', 'pass', 'email', 'assist', 'rel', 'soc', 'lost', 'dm', 'pls'], ['thanx', 'messag', 'glad', 'like', 'sing'], ['illi', 'note', 'book', 'quot', 'one', 'anoth', 'keep', 'good', 'work', 'quot', 'sigh', 'miss', 'great', 'espresso'], ['let', 'us', 'hope'], ['great', 'day', 'alreadi', 'amp', 'formula', 'realli', 'work', 'lol', 'hope', 'everyon', 'good', 'day', 'well'], ['dude', 'read', 'wrong', 'haha', 'well', 'good', 'good', 'thank', 'agre'], ['not', 'problem', 'glad'], ['ah', 'love', 'day', 'bike', 'ride', 'cake', 'make', 'root', 'revis', 'best', 'x'], ['come', 'love', 'fan', 'number', 'local', 'pop', 'chart', 'let', 'launch', 'assault', 'number', 'slot', 'ww'], ['best', 'bike', 'best', 'guy', 'love', 'ducati', 'sound', 'think', 'unnecessari', 'ask', 'ride', 'nice', 'vid'], ['thought', 'might', 'interest', 'see', 'view', 'photo'], ['share', 'kim', 'portfolio', 'share', 'kaar', 'final', 'dane', 'got', 'honor', 'amaz'], ['mani', 'freebi', 'jbnoy', 'friend', 'spam', 'thread', 'soon'], ['thank'], ['loov', 'bf', 'awesoom', 'hannah', 'montana', 'movi', 'amaz', 'best', 'movi', 'ever', 'cool'], ['thought', 'might', 'interest', 'see', 'view', 'photo'], ['life', 'good', 'much', 'greater', 'thursday'], ['not', 'wait', 'see', 'decemb', 'switzerland', 'third', 'great', 'show', 'amaz', 'enjoy', 'oz'], ['top', 'favourit', 'got', 'admit', 'soft', 'spot', 'captain', 'slow'], ['repeat', 'rub', 'thumb', 'soft', 'love', 'upon', 'new', 'sarah', 'rayn', 'novel', 'sigh', 'not', 'potrait', 'profound', 'bliss'], ['thought', 'might', 'interest', 'see', 'view', 'photo'], ['sweet', 'good', 'day'], ['school', 'today', 'greeat'], ['thank', 'much', 'follow', 'muse', 'much', 'gratitud', 'wish', 'magnific', 'amp', 'product', 'start', 'day'], ['ooh', 'chang', 'twitter', 'name', 'approv', 'whole', 'heart'], ['thought', 'might', 'interest', 'see', 'view', 'photo'], ['ben'], ['realli', 'not', 'like', 'shini', 'happi', 'peopl', 'local', 'rem', 'expert', 'way', 'saw', 'first', 'time'], ['aw', 'come', 'earli', 'love', 'youtub', 'vid', 'way'], ['nice', 'call', 'lmao'], ['haha', 'may', 'happi', 'star', 'war', 'day'], ['lt', 'new', 'pictur', 'pretti', 'reflect', 'sunlight', 'leav'], ['thank', 'kate', 'kiss', 'xoxo'], ['meant', 'ask', 'night', 'go', 'enjoy', 'yas'], ['awsom', 'know', 'know', 'know'], ['go', 'cook', 'lamb', 'chop', 'lunch', 'alway', 'end', 'coke', 'pay', 'day', 'amaz', 'much', 'cook'], ['hey', 'glorious', 'morn', 'monday', 'anim', 'mode'], ['love', 'david', 'soo', 'much', 'lt'], ['stress', 'hell', 'still', 'surviv'], ['thought', 'might', 'interest', 'see', 'view', 'photo'], ['not', 'realli', 'mean', 'anyth', 'anymor', 'l', 'good', 'old', 'top', 'pop', 'everi', 'sat', 'friday', 'someth'], ['studi'], ['yeah', 'tomato', 'past', 'oil', 'tradit', 'sandwich', 'eat', 'oliv', 'maltes', 'chees', 'yum'], ['love', 'mortal', 'combat', 'right'], ['well', 'homework', 'kind', 'finish', 'edit', 'not', 'tire', 'morn', 'thought', 'would'], ['week', 'deliveri', 'oz', 'awesom', 'product', 'awesom', 'price', 'parcel', 'today', 'made', 'day'], ['novo', 'follow', 'sorri', 'account', 'head', 'suspend', 'due', 'strang', 'activ', 'strang'], ['cute', 'twit', 'potugues'], ['bahaha', 'love', 'twitter', 'last', 'night', 'drunk', 'lol'], ['check', 'guy', 'rock', 'one'], ['event', 'weekend', 'nice', 'week', 'look', 'forward', 'final', 'chill', 'day'], ['yerr', 'same', 'haha', 'way', 'play', 'edward', 'thinkk', 'mm'], ['love', 'nice', 'weather', 'exam'], ['wakey', 'wakey', 'lemon', 'shakeyi', 'haha', 'go', 'schoolioo', 'rain', 'ugh', 'guess', 'wish', 'right'], ['happi', 'sharon'], ['richell', 'mead', 'succubus', 'read', 'entertain', 'lot', 'fun', 'interest', 'next', 'pleas'], ['thank'], ['goodmorn', 'world', 'god', 'bless', 'great', 'day'], ['feel', 'like', 'tweet', 'reason', 'um', 'hii'], ['lol', 'triplet', 'haha', 'glad', 'morgan', 'got', 'bag', 'even', 'not', 'ride', 'ride'], ['bye', 'bye', 'love', 'tweeter', 'especi', 'follow'], ['good', 'morn', 'alyssa', 'hope', 'great', 'wonder', 'day', 'today', 'happi', 'cuz', 'today', 'last', 'day', 'class', 'yay'], ['not', 'worri', 'sleep'], ['rather', 'excit', 'hospit', 'placement', 'start', 'monday', 'get', 'give', 'needl', 'take', 'blood'], ['not', 'wait', 'see', 'week', 'not', 'go', 'fast', 'enough'], ['sit', 'audi', 'joburg', 'fashion', 'week', 'cast', 'mani', 'lanki', 'peopl', 'one', 'place', 'almost', 'lol', 'good', 'luck', 'everyon', 'xx'], ['birthday'], ['lool', 'thank'], ['good', 'luck'], ['momma', 'comin', 'tenni', 'day', 'p', 'nar', 'yuppi'], ['woke', 'mum', 'sing', 'new', 'gn', 'r', 'cd', 'replac', 'bought', 'good', 'daughter'], ['feel', 'love', 'pizza', 'girl', 'eat', 'pizza', 'everyday'], ['hahah', 'love'], ['hope', 'promis', 'kid', 'dog', 'moment', 'coupl', 'flower'], ['aww', 'cute', 'would', 'love', 'bathroom'], ['like', 'ten', 'time', 'better', 'place', 'xd', 'beauti', 'fun', 'gold', 'coast', 'hot', 'dog', 'xd'], ['pleas', 'let', 'know', 'allright', 'de', 'need', 'know', 'first', 'wake', 'littl', 'enjoy', 'cofe', 'xx'], ['romanc', 'zero', 'funni'], ['not', 'sore', 'yesterday', 'definit', 'feel', 'hill', 'leg', 'hurt', 'way', 'booti', 'good', 'hurt'], ['hope', 'like', 'new', 'sat', 'nav'], ['still', 'amaz', 'awesom', 'last', 'night', 'discuss', 'great', 'look', 'forward', 'great', 'week', 'go', 'home'], ['good'], ['good', 'morn', 'everyon', 'hope', 'great', 'day', 'even', 'though', 'monday', 'keep', 'smile'], ['notic', 'begin', 'may', 'worst', 'recess', 'sinc'], ['new', 'word', 'day', 'quot', 'whoor', 'lure', 'quot', 'yes', 'new', 'word', 'cologn', 'thank', 'mike', 'hard'], ['got', 'went', 'outsid', 'plant', 'flower', 'watch', 'lee', 'evan', 'dvd', 'knew', 'bank', 'holiday', 'fun'], ['good', 'morn'], ['great', 'news'], ['hope'], ['not', 'hope', 'still', 'rest', 'not', 'want', 'stress'], ['happi', 'star', 'war', 'day'], ['sure', 'love', 'great', 'amp', 'product', 'day'], ['bye', 'great', 'meet'], ['would', 'like', 'yesterday', 'talk', 'alyso', 'stoner', 'xd', 'benton', 'sent', 'privat', 'messa', 'coment'], ['good', 'not', 'complet', 'nut', 'case'], ['definit', 'worth', 'art', 'not', 'withstand', 'hate', 'move', 'hate', 'pack', 'even'], ['trashi', 'yes'], ['radio', 'activ', 'never', 'get', 'old', 'never', 'time', 'listen', 'cd', 'repeat', 'today', 'still', 'love'], ['de', 'wereld', 'need', 'peopl', 'like'], ['thank', 'follow', 'back'], ['mean', 'jack', 'barakat', 'wow', 'ever', 'gone', 'hous', 'hehe', 'mean', 'ssoo', 'lucki', 'address'], ['perhap', 'see', 'twitter', 'version', 'pull', 'someon', 'pigtail', 'let', 'know', 'work'], ['sister', 'call', 'offici', 'labor', 'look', 'like', 'anna', 'josi', 'get', 'new', 'cousin', 'today', 'one', 'girl'], ['daddi'], ['back', 'love', 'land', 'north'], ['tadpol', 'look', 'foolish', 'dog'], ['bank', 'holiday', 'happi', 'know', 'clap', 'hand'], ['yeah', 'work', 'better', 'command'], ['morn', 'like', 'loong'], ['go', 'dinner', 'two', 'us', 'nice'], ['sound', 'nice', 'download', 'twitterena', 'lol'], ['yes', 'like', 'vid'], ['present', 'lead', 'abil', 'move', 'one', 'day'], ['thankyou', 'night'], ['wish', 'repli', 'us', 'juli', 'utter', 'amaz'], ['tough', 'life', 'lead'], ['download', 'year', 'sin', 'final', 'releas', 'say', 'right'], ['lucki', 'girl', 'tell'], ['understood', 'tweet', 'good'], ['good', 'morn', 'sunshin', 'tiim', 'chool', 'lol', 'bbl'], ['good', 'star', 'war', 'day', 'fonz', 'day', 'danc', 'taco', 'day', 'whatev', 'celebr', 'good'], ['haha', 'know', 'not', 'handl', 'fame', 'thank'], ['wow', 'nice', 'roar', 'see', 'good', 'thing', 'futur'], ['nice'], ['bahaha', 'weekend', 'short', 'esp', 'nice', 'want', 'stop', 'time', 'like', 'evi', 'outta', 'world', 'morn'], ['happi', 'monday', 'go', 'tavar', 'today', 'hope', 'everyon', 'bless', 'day'], ['not', 'seen', 'enough', 'movi', 'quot', 'know', 'quot', 'someth', 'terribl', 'happen', 'lol'], ['honest', 'last', 'night', 'amaz', 'everyth', 'perfect'], ['coffe', 'brew', 'musicmonday', 'morn', 'listen', 'fray', 'good', 'week'], ['muahahahhahaha', 'well', 'mayb', 'think', 'crazi', 'someth', 'not', 'scare', 'yet', 'though'], ['worth', 'xx'], ['lol', 'could', 'tri', 'serious', 'though', 'not', 'suck', 'xx'], ['much', 'better', 'flu', 'syndrom'], ['haha', 'cos', 'one', 'smile', 'smile', 'smile', 'quot', 'boy', 'repli'], ['tell', 'friend', 'got', 'hope', 'get', 'soon'], ['love', 'lunch', 'curri', 'rice', 'mussel', 'babi', 'octopus', 'yum'], ['lame', 'go', 'make', 'breakfast'], ['guy', 'showroom', 'well', 'want', 'chk', 'flesh', 'quit', 'cool', 'lamp', 'wife', 'impress'], ['today', 'soo', 'bore', 'school', 'sleep', 'time'], ['forgot', 'machin', 'run', 'day', 'got', 'bill', 'amazon', 'teach', 'get', 'organ', 'fair', 'price'], ['yes', 'would', 'perfect', 'suppos', 'happen', 'last', 'night', 'still', 'dri', 'usual', 'happen', 'head', 'appt'], ['watch', 'belong', 'love', 'sister', 'kiddin'], ['good', 'news', 'tooth'], ['ok', 'thank', 'help', 'hope', 'respond', 'sooner', 'later', 'thank'], ['saw', 'whole', 'lot', 'stuff', 'africa', 'joy', 'casterbridg', 'farm', 'white', 'river', 'quit', 'thrill', 'see', 'stuff'], ['not', 'stop', 'believ', 'remix', 'sure', 'not', 'sacrileg'], ['wow', 'safe', 'trip', 'back', 'home', 'beg', 'pleas', 'come', 'back', 'bloomington', 'soon'], ['herebi', 'announc', 'employ', 'could', 'not', 'happier', 'alhamdulillah'], ['bore', 'wait', 'till', 'go', 'tha', 'bus'], ['dude', 'come', 'least', 'rotat', 'motherfuck'], ['love', 'start', 'fresh', 'new', 'week', 'motiv'], ['good', 'morn', 'littl', 'twitternut', 'squash', 'today', 'weather', 'like'], ['back', 'great', 'mad', 'monday', 'meet', 'tomorrow'], ['good', 'choic'], ['got', 'home', 'err', 'hospit', 'far'], ['happi', 'judday', 'everybodi'], ['good', 'morn', 'world'], ['thank', 'morn', 'laugh', 'funni'], ['yayi', 'help', 'english', 'homework', 'holiday', 'gt', 'lt'], ['amaz', 'best', 'time', 'hope', 'good', 'weekend'], ['hello', 'twitterfon', 'glad', 'back'], ['alway', 'self', 'thing', 'go', 'without', 'problem', 'even', 'tri', 'hard', 'self', 'smile'], ['wish', 'london', 'see', 'like', 'biggest', 'dream', 'meet', 'iloveyouu', 'lt'], ['excit', 'cwpm', 'tomorrow', 'one', 'member', 'go', 'still', 'good', 'start'], ['thank'], ['arriv', 'offic', 'prepar', 'busi', 'day', 'listen', 'debussi', 'song', 'alway', 'make', 'feel', 'better'], ['soo', 'glad', 'home', 'floridia', 'fun', 'back', 'atl', 'time', 'back', 'work', 'constant', 'grind'], ['thank', 'ballroom', 'danc', 'competit'], ['love', 'kim', 'kardashian', 'watch', 'tv', 'show', 'keep', 'kardashian', 'bless', 'good', 'look'], ['enjoy', 'see', 'everyon', 'present', 'saturday', 'clark', 'howard', 'event', 'especi', 'speaker'], ['would', 'not', 'cost', 'quit', 'bit', 'mean', 'fli', 'pizza', 'china', 'nice', 'fusion', 'idea', 'may', 'experi'], ['ha', 'ha', 'surpris', 'well', 'consid', 'good', 'time', 'sun', 'mountain'], ['excit', 'jon', 'today', 'good', 'luck', 'guy'], ['not', 'work', 'diesel', 'rice', 'burner'], ['exact', 'well', 'pick', 'sister', 'speak', 'later', 'enjoy', 'afternoon', 'pub', 'shelv', 'lol', 'xx'], ['live', 'never', 'take', 'hot', 'shower', 'nice', 'friend', 'across', 'street'], ['hahah', 'hope', 'enjoy', 'day'], ['heard', 'disgruntl', 'investor', 'call', 'quot', 'hoe', 'quot', 'seem', 'total', 'line'], ['check', 'funni', 'movi'], ['safe', 'journey', 'back', 'home', 'hope', 'come', 'back', 'soon'], ['hope', 'great', 'weekend', 'pari'], ['geographi', 'exam', 'today', 'turn', 'well', 'omg', 'wednesday', 'english', 'exam', 'xd', 'woul', 'nervous'], ['interest', 'head', 'gear', 'lol'], ['well', 'mayb', 'alway', 'head', 'cnt', 'sure', 'save'], ['think', 'go', 'enjoy', 'sun', 'ray', 'love', 'work'], ['help', 'uni', 'assign', 'via', 'skype', 'got', 'love', 'connect', 'world', 'sudi', 'design', 'even', 'better'], ['good', 'afternoon', 'sort', 'technic', 'glitch', 'raini', 'bh', 'monday', 'lazi', 'day', 'daughter', 'menfolk', 'round', 'roast', 'dinner'], ['haha', 'like', 'anyway', 'although', 'miss', 'spork', 'pic', 'go'], ['good', 'morn', 'good', 'wakeup', 'music'], ['hoisin', 'duck', 'pizza', 'salt', 'pepper', 'pizza', 'gelato', 'dinner', 'edmund', 'jade', 'good', 'time'], ['sent', 'twitter', 'invit', 'poet', 'friend', 'hope', 'come', 'poetiz', 'would', 'love', 'see', 'poet', 'poet'], ['much', 'tune', 'word', 'today', 'thank'], ['go', 'last', 'full', 'day', 'school', 'life', 'good'], ['hope', 'unni', 'make', 'audit', 'fight', 'dahy', 'unni'], ['hey', 'chillin', 'right', 'gettin', 'readi', 'school', 'mohawk', 'kidd'], ['ha', 'ha', 'much', 'thank', 'start', 'follow'], ['hi', 'amazn', 'actress', 'greet', 'slovenia'], ['hey', 'everybodi', 'hah', 'day', 'cool', 'got', 'back', 'walk', 'dog', 'omgosh', 'send', 'link', 'pleas'], ['portfolio', 'upload', 'comment', 'feedback', 'warm', 'welcom'], ['good', 'afternoon', 'hope', 'great', 'week'], ['fantast'], ['well', 'thank', 'think', 'ever', 'get', 'scratch', 'one', 'well', 'right'], ['thank'], ['nice', 'young', 'guy', 'dunkin', 'donut', 'let', 'go', 'first'], ['thank', 'tri', 'stay', 'posit', 'head', 'space', 'keep', 'push', 'thing', 'end'], ['back', 'school', 'daili', 'show', 'amaz', 'go', 'watch', 'later', 'think', 'xd'], ['not', 'famous', 'alreadi', 'lol', 'ador', 'fan', 'fan', 'would', 'anyth', 'heheh', 'fan'], ['come', 'guy', 'brazil', 'love', 'happen'], ['good', 'morn', 'franc', 'zacci'], ['everybodi', 'welcom', 'hello', 'nicol'], ['happi', 'anniversari', 'hope', 'mani', 'mani', 'best', 'us'], ['work', 'still', 'quot', 'recov', 'quot', 'amaz', 'beauti', 'weekend', 'mention', 'incred', 'friend'], ['like', 'rest', 'us', 'miser', 'bank', 'lol'], ['instal', 'inav', 'iblu', 'fresh', 'feel'], ['funniest', 'desktop', 'ever', 'way', 'see', 'collegu'], ['skinni', 'dip', 'work', 'colleagu', 'mayb', 'not', 'would', 'never', 'live', 'lot'], ['hey', 'yay', 'thank', 'wow', 'page', 'awesom'], ['thank'], ['cool', 'thank', 'lot', 'xx'], ['inde', 'glad', 'hear', 'everyth', 'good', 'great', 'life', 'good'], ['alreadi', 'got', 'ticket', 'thank', 'make', 'sure', 'though'], ['morn', 'great', 'day', 'school', 'go'], ['proper', 'journo', 'would', 'agre'], ['thought', 'might', 'interest', 'see', 'view', 'photo'], ['suppos', 'unrel', 'new', 'part', 'fallout', 'seri', 'work', 'name'], ['great', 'hous', 'sell', 'come', 'complet', 'ride', 'mower'], ['sit', 'shadow', 'tree', 'heart', 'citi', 'listen', 'bus', 'thank', 'wind', 'pleasant'], ['cowboy', 'not', 'seen', 'good', 'luck'], ['good', 'morn', 'fellow', 'tweeter'], ['hous', 'md', 'marathon', 'ulet'], ['ooh', 'nice', 'well', 'guess', 'not', 'nice', 'moment', 'windi', 'raini', 'like', 'rain'], ['god', 'assign', 'stress', 'finish', 'lol', 'bedd'], ['haha', 'expens', 'messag', 'later'], ['put', 'half', 'nake', 'dougi', 'poster', 'love', 'sugar', 'ladmag'], ['aww', 'thank', 'bro', 'glad', 'got', 'activ', 'twitter'], ['england', 'summer', 'holiday', 'year', 'yay'], ['peac', 'good', 'morn'], ['bought', 'italian', 'horsesho', 'charm', 'dragon', 'seem', 'strong'], ['get', 'phone', 'back', 'week', 'yeeww'], ['pj', 'day', 'best', 'day'], ['not', 'worri', 'safe', 'sound', 'lt'], ['much', 'fun', 'today', 'love', 'alyssa', 'arellano', 'mika', 'rey'], ['good', 'morn', 'go', 'day'], ['good', 'morn', 'coffe', 'taylor', 'swift', 'cd', 'start'], ['go', 'tri', 'get', 'coupl', 'hour', 'sleep', 'love', 'go', 'bed', 'later', 'twitter'], ['stay', 'afterschool', 'today', 'not', 'quot', 'friend', 'quot', 'would', 'tell', 'text', 'lol', 'likin', 'us', 'lt'], ['cool', 'linux'], ['happi', 'star', 'war', 'day', 'everyon', 'may', 'xx'], ['everyth', 'fine'], ['juli', 'soo', 'stoke', 'especi', 'sinc', 'sleep', 'us', 'lol', 'refus', 'wear', 'diaper', 'anymor'], ['fun', 'see', 'glimps', 'life'], ['lol', 'get', 'reaction', 'mention', 'new', 'goal', 'kona', 'triathlon', 'boston', 'marathon', 'done'], ['good', 'morn', 'misfit', 'pass', 'tylenol'], ['thank', 'remind', 'hope', 'great', 'time'], ['afc', 'oh', 'yess'], ['watchingg', 'new', 'video', 'soo', 'good', 'addict'], ['love', 'clutch', 'lust', 'one', 'bright', 'yellow'], ['creat', 'account', 'get', 'chanc', 'chat', 'admir', 'amaz', 'inspir', 'write', 'lt'], ['think', 'limit', 'letter', 'realli', 'not', 'fair', 'would', 'better'], ['thank', 'hun', 'work', 'hard', 'thank', 'mama', 'yuhh'], ['hope', 'find', 'nice', 'healthi', 'also', 'cheap', 'breakfast'], ['feel', 'love', 'mom', 'got', 'nikon', 'cool', 'pix', 'birthday'], ['dear', 'daniel', 'good', 'news', 'nintendo', 'want', 'potenti', 'lotchecktest', 'hoffentlich', 'wird', 'mit', 'der', 'stell'], ['happi', 'star', 'war', 'day', 'everyon', 'may'], ['notic', 'new', 'sidebar', 'look', 'nice'], ['first', 'day', 'new', 'job', 'yeah'], [], ['thought', 'might', 'interest', 'see', 'view', 'photo'], ['bore', 'ugh', 'come', 'back'], ['not', 'know', 'realli', 'hurt', 'arm', 'guess', 'booz', 'ask', 'not', 'believ'], ['locat', 'amp', 'order', 'new', 'cooker', 'today', 'feel', 'got', 'real', 'bargain', 'cheaper', 'place', 'almost', 'use'], ['download', 'movi', 'quot', 'good', 'day', 'black', 'amp', 'sexi', 'quot', 'cool', 'movi'], ['three', 'broodi', 'one', 'atm', 'china', 'egg', 'keep', 'happi', 'ish'], ['thank', 'realli', 'sweet'], ['sure', 'amaz', 'wish', 'could', 'incred', 'phenomen', 'amaz', 'talent', 'singer'], ['happi', 'monday', 'lot', 'littl', 'thing', 'today', 'tri', 'water', 'plant', 'front', 'earli', 'jammi', 'got', 'caught', 'two', 'neighbor'], ['thank', 'finish', 'schoolwork', 'today', 'rehears', 'tonight', 'though', 'ru'], ['turn', 'keyboard', 'upsid'], ['pretti', 'dang', 'tire', 'chamber', 'class', 'nap'], ['saturday', 'partytiim'], ['dinner', 'ali', 'tonight', 'celebr', 'first', 'day', 'new', 'job', 'near', 'trader', 'joe', 'might', 'stop'], ['oh', 'yes', 'level'], ['see', 'bye', 'see', 'love'], ['make', 'happi', 'daughter', 'famili', 'amp', 'support', 'money', 'shop', 'amp', 'restaur'], ['afternoon', 'got', 'new', 'pic', 'nice', 'spec'], ['welcom'], ['good', 'morn', 'hope', 'great', 'day'], ['mufasa', 'warrior', 'ocean', 'hahahahahaha'], ['hey', 'thank', 'follow', 'go'], ['thank'], ['tire', 'king', 'bounti', 'vampyr', 'stori', 'even', 'comix', 'complet', 'donload'], ['whoa', 'steadi', 'mate', 'not', 'fall'], ['thank', 'much', 'follow', 'keep', 'date', 'much', 'possibl', 'makeup', 'line', 'plus', 'new', 'collect'], ['feel', 'much', 'better', 'histori', 'research'], ['loov', 'bank', 'holiday'], ['good', 'morn', 'twigga', 'twitch', 'getcha', 'motiv'], ['not', 'ideal', 'bank', 'holiday', 'condit', 'littl', 'cast', 'raini', 'perfect', 'lazi', 'day', 'dvd'], ['please', 'give', 'shoutout', 'love', 'georgia', 'uk'], ['wish', 'smartphon', 'irc', 'app', 'would', 'pretti', 'cool'], ['oo', 'not', 'glad', 'hear', 'incred', 'though', 'still', 'bookmark', 'tri', 'sometim'], ['yay', 'busi', 'good'], ['new', 'seri', 'hill', 'yesterday', 'uk', 'amaz', 'look', 'realli', 'pretti', 'birthday'], ['good', 'midday'], ['quot', 'bride', 'la', 'mode', 'quot', 'pow', 'wow', 'first', 'thing', 'morn', 'past', 'weekend', 'love', 'wed', 'fresh', 'mind', 'pic', 'soon'], ['half', 'asleep', 'wrote', 'previous', 'messag', 'greatest', 'friend', 'haha'], ['pictur', 'burn', 'taylor', 'swift', 'great', 'song'], ['hahaha', 'busi', 'see', 'repli', 'yes', 'true'], ['long', 'night', 'ahead'], ['quot', 'friend', 'soul', 'differ', 'quot', 'plato'], ['yeah', 'spammer', 'discrimin', 'none', 'femal', 'part', 'target', 'group', 'appar'], ['yes', 'today', 'star', 'war', 'day', 'may'], ['yay', 'hope', 'day', 'work', 'wonder', 'sis', 'bank', 'holiday', 'england', 'today', 'everyon', 'work'], ['today', 'drag', 'bore', 'get', 'romanc', 'book', 'prob', 'not', 'til', 'morn', 'night', 'twitter', 'babe'], ['oh', 'mint', 'loung', 'night'], ['well', 'least', 'not', 'late'], ['haha', 'convinc', 'would', 'great'], ['thought', 'spanish', 'name', 'pretend', 'one', 'night', 'ariella', 'gonzalez', 'like', 'not', 'care'], ['love', 'book'], ['said', 'aj', 'made', 'sens', 'hahaha', 'talk', 'love', 'pictur', 'colin'], ['work', 'bank', 'holiday', 'not', 'mind', 'good', 'fun'], ['sit', 'sabbeth', 'first', 'period', 'buhahaha', 'cool', 'lmao'], ['not', 'think', 'bad', 'well', 'edit'], ['day', 'day', 'shred', 'day', 'special', 'k', 'challeng', 'feel', 'fantast'], ['stuff', 'quot', 'go', 'quot', 'easi', 'accomplish', 'start', 'rain', 'rain', 'flush', 'away'], ['think', 'deserv', 'award', 'big', 'shini', 'one'], ['watch', 'children', 'realli', 'studi', 'start', 'soon'], ['case', 'stupid', 'move', 'thought'], ['yeah', 'good', 'not', 'go', 'use', 'give', 'want', 'watch', 'star', 'trek'], ['good', 'morn', 'rain'], ['alway', 'appreci', 'quot', 'quot'], ['sappi', 'littl', 'fellow', 'thank', 'well', 'wish', 'need', 'today', 'one', 'exam'], ['good', 'morn'], ['first', 'year', 'age', 'not', 'go', 'crafti', 'raft', 'not', 'mind', 'though', 'not', 'even', 'like', 'crafti', 'raft'], ['good', 'girl', 'nevah', 'tell', 'hahahahaha', 'hope', 'good', 'weekend'], ['yeah', 'yesterday', 'turn', 'parent', 'rent', 'hummer', 'limo', 'pretti', 'cool'], ['yeah', 'get', 'show', 'interest', 'process', 'key', 'follow', 'least', 'learn', 'far'], ['bought', 'dress', 'yesterday', 'day', 'til', 'chris', 'home', 'excit', 'gavin', 'first', 'tooth'], ['tire', 'turn', 'internet', 'play', 'morn'], ['sometim', 'peopl', 'never', 'learn', 'shut', 'stop', 'talk', 'shit'], ['may', 'forth'], ['hahaha', 'boyfriend', 'yeah', 'look', 'differ', 'cute', 'want', 'watch', 'movi'], ['employe', 'orient', 'serco', 'yayi', 'wish', 'luck'], ['yeah', 'good', 'startl'], ['thank', 'anyway'], ['hey', 'buck', 'love', 'load', 'love', 'quot', 'buck', 'quot'], ['hey', 'life', 'love', 'translat', 'love', 'life'], ['day', 'today', 'not', 'believ', 'month', 'nervous', 'go', 'say', 'later', 'go', 'keep', 'comin', 'back'], ['hello', 'may', 'great', 'day'], ['one', 'good', 'deed', 'deserv', 'anoth', 'hope', 'help', 'someon', 'els', 'day'], ['lol', 'go', 'not', 'easi', 'use'], ['thank', 'view', 'portfolio', 'updat', 'sometim', 'keep', 'updat'], ['hi', 'wake', 'not', 'lazi', 'would', 'proud', 'way', 'nice', 'colour', 'not', 'burnt'], ['appreci'], ['hey', 'type', 'like', 'facebook', 'much', 'simpler', 'good', 'day'], ['lmao', 'lucki', 'minut', 'foot', 'eww', 'bus'], ['girl', 'talk', 'awesom'], ['congratul', 'heart', 'hacker', 'not', 'comput', 'hacker'], ['good', 'morn'], ['happi', 'may', 'bank', 'holiday', 'british', 'peep'], ['goodmorn'], ['ahh', 'love', 'got', 'twitterr'], ['time', 'school', 'happi', 'starwar', 'day'], ['help', 'way'], ['aww', 'gorgeous', 'photo', 'california', 'two', 'make', 'melt'], ['morn', 'trish', 'fun', 'today'], ['yeah', 'excit'], ['join', 'twibe', 'visit', 'join', 'not', 'spinner', 'know', 'respect', 'spinner', 'coffe'], ['fuckyoumonday', 'like', 'total', 'raini', 'day', 'work', 'hug'], ['good', 'morn'], ['say', 'good', 'even'], ['ta', 'babe', 'know', 'love', 'curri'], ['ugg', 'comput', 'run', 'soo', 'slow', 'today', 'drive', 'batti', 'guess', 'time', 'remov', 'file', 'defrag', 'ugg', 'want', 'mac'], ['gosh', 'stinki', 'old', 'headach', 'mayb', 'lunchfast'], ['new', 'album', 'truli', 'genius', 'happi'], ['spiderwoman', 'amaz', 'mum', 'blogger', 'mentor', 'amp', 'top', 'climb', 'wall'], ['well', 'nice', 'love', 'new', 'friend', 'organis'], ['dreari', 'monday', 'morn', 'slept', 'like', 'break'], ['think', 'thought', 'sneez'], ['whatev', 'know', 'like', 'hahahhah'], ['birthday', 'girl', 'hous', 'tweet', 'tweet', 'sucka'], ['twitter', 'hair', 'dri', 'wash', 'macadamia', 'orang', 'shampoo', 'smell', 'gorgeous'], ['quot', 'phlegmili', 'green', 'quot', 'clever', 'ever', 'soo', 'eeww', 'slow', 'clap', 'get', 'well', 'soon'], ['yay', 'bag', 'giveaway', 'bag', 'pretti', 'mayb', 'belt', 'see'], ['hi', 'celebxxvidsyh', 'aybygw', 'thank', 'follow'], ['ohh', 'excel', 'friend'], ['thank', 'well', 'wish', 'hope', 'day', 'also', 'quit', 'success'], ['not', 'thank', 'enough', 'nitin'], ['ok', 'thank', 'like', 'new', 'pic'], ['omg', 'new', 'fave', 'show', 'lt', 'one', 'guess', 'hahahha'], ['would', 'love', 'see'], ['lol', 'not', 'know', 'not', 'need', 'plant', 'give', 'hug', 'instead', 'hug'], ['thankyoou'], ['happi', 'quot', 'star', 'war', 'quot', 'day', 'twitter'], ['helaa', 'en', 'thank'], ['thought', 'said', 'twitter', 'crap', 'bellion'], ['not', 'worri', 'not', 'send', 'soon', 'land', 'delhi', 'let', 'know', 'price', 'littl'], ['woop', 'rehears', 'song', 'yep', 'sound', 'even', 'enough'], ['suck'], ['propellerhead', 'harddriv', 'long', 'got', 'music', 'repo', 'back', 'shape', 'felt', 'nostalg'], ['realli', 'incred', 'gross', 'outsid', 'hope', 'get', 'alot', 'done', 'int', 'hous', 'today', 'includ', 'pic', 'blog', 'morn', 'friend'], ['yeah', 'good', 'not', 'click', 'red', 'x', 'shut', 'good', 'minim', 'goe'], ['jailbroken', 'went', 'earli', 'prepar', 'brick'], ['cool', 'good', 'know'], ['awesom', 'weekend', 'awesom', 'turn', 'rummag', 'sale', 'friday', 'saturday'], ['saw', 'fiddler', 'topol', 'girl', 'loov', 'next', 'month', 'anni', 'row', 'not', 'wait', 'trip', 'music', 'store', 'fiddler', 'sheet', 'music'], ['best', 'wknd', 'man', 'levi', 'sara', 'love', 'guy'], ['good', 'morn', 'hun', 'love', 'movi', 'happen', 'good', 'movi'], ['good', 'afternoon', 'jona', 'brother', 'x'], ['happi', 'starwarsday', 'may', 'everyon'], ['glad', 'trudg', 'first', 'page', 'anathem', 'long', 'time', 'sinc', 'want', 'call', 'sick', 'read'], ['rocket', 'surgeri', 'hey', 'haha', 'thought', 'rocket', 'scienc', 'oh', 'knew', 'swear', 'thank'], ['good', 'morn'], ['not', 'sympathi', 'well'], ['math', 'class', 'shoot', 'bore'], ['know', 'slow', 'horribl', 'not', 'tell'], ['thanx', 'hun'], ['thank', 'love', 'quot', 'miseri', 'busi', 'quot', 'paramor', 'great', 'band'], ['school', 'rusti', 'put', 'oh', 'love', 'ipod', 'awh'], ['wow', 'thank', 'say', 'man', 'would', 'love', 'illustr', 'children', 'book'], ['happi', 'birthday'], ['also', 'excit', 'blazin', 'squad', 'reviv', 'root', 'new', 'song'], ['oh', 'pleas', 'not', 'not', 'bother'], ['fuck', 'not', 'look', 'well', 'go', 'home'], ['monday', 'work', 'leg', 'still', 'hurt', 'littl', 'smile'], ['happi', 'freaak', 'lt'], ['game', 'cent', 'hot', 'dog', 'haha'], ['go', 'beauti', 'day'], ['agre'], ['worst', 'case', 'cenario', 'show', 'white', 'mask', 'scare', 'everyon', 'even', 'better', 'everyon', 'wear', 'mask', 'besid'], ['latest', 'obess'], ['thank'], ['reminis', 'wonder', 'day', 'yesterday', 'famili', 'love', 'noth', 'like', 'shoot', 'basketbal', 'men', 'life'], ['love', 'memori', 'stick', 'microsoft', 'keep', 'send'], ['might', 'see', 'god', 'mother', 'littl', 'boy', 'bit', 'leon', 'cute', 'lt'], ['not', 'wait', 'thing'], ['time', 'go', 'bed', 'tire', 'catch', 'coupl', 'day', 'land', 'amp', 'recov', 'fli', 'denmark'], ['agre', 'amp', 'amp', 'like', 'new', 'pic'], ['heyi', 'shantel', 'twitter', 'cool', 'guess', 'follow', 'britney', 'spear', 'follow', 'back'], ['happi', 'star', 'war', 'day', 'everyon', 'enjoy', 'holiday', 'uk'], ['hey', 'r', 'back', 'la', 'right', 'favorit', 'part', 'bout', 'europ', 'never', 'countri', 'xcept', 'canada', 'xo', 'jenna'], ['incred', 'sweet', 'good', 'hubbi'], ['bore'], ['unless', 'gretel', 'killeen', 'appar', 'look', 'pretti', 'damn', 'good'], ['great', 'weekend', 'glad', 'sunni', 'today'], ['good', 'luck', 'week', 'know', 'handl', 'grace'], ['chill', 'baybe', 'sarah', 'love', 'girl'], ['happi', 'belat', 'birthday', 'francesc', 'fabrega', 'wish', 'best', 'fabr'], ['think', 'swine', 'market', 'declin', 'sinc', 'not', 'say', 'anymor'], ['night', 'diana', 'travel', 'soon', 'take', 'care'], ['month', 'left', 'high', 'school', 'thank', 'god', 'readi', 'summer'], ['yes', 'dahl', 'definit', 'one', 'awesom', 'tweep', 'send', 'love', 'kind', 'across', 'ocean'], ['invis', 'car', 'help', 'boost', 'recycl', 'honest'], ['thank'], ['morn', 'amp', 'welcom', 'new', 'follow', 'tweet', 'busi', 'amp', 'pleasur', 'fair', 'warn'], ['love'], ['hahahha', 'day', 'cool', 'noth', 'open', 'like', 'isol', 'haha', 'cool'], ['l', 'much', 'see', 'school', 'todaay'], ['promis', 'thank'], ['back', 'li', 'ago', 'n', 'still', 'made', 'work', 'yay'], ['yep', 'noth', 'worri'], ['someon', 'sweet', 'tooth', 'die', 'somethin', 'sweet', 'attack', 'chock', 'coat', 'tini', 'teddi', 'could', 'find', 'lol'], ['hella', 'worth', 'even', 'not', 'need', 'full'], ['great', 'thank'], ['listen', 'band', 'recommend', 'sarrah', 'realli', 'like', 'friday', 'night', 'boy', 'lt'], ['know', 'total', 'excit'], ['wow', 'not', 'believ', 'monday', 'alreadi', 'hope', 'everyon', 'well', 'today'], ['not', 'frown', 'lil', 'aussi', 'still', 'love', 'muah'], ['major', 'fail', 'sinc', 'ask'], ['ofici', 'back', 'work', 'system', 'run', 'smooth'], ['jason', 'electr', 'guitar', 'yay'], ['thank', 'follow', 'new', 'twitpeep'], ['yes', 'stupid', 'girl', 'kind'], ['say', 'karma', 'strike', 'twice'], ['fav', 'cd'], ['howev', 'got', 'garden', 'someth', 'etern', 'pleas'], ['like', 'patricia', 'dress'], ['yehey', 'summer', 'exciteedd', 'balm'], ['thank'], ['pressur'], ['clear', 'head'], ['allright', 'look', 'forward'], ['hope', 'went', 'well', 'root', 'not', 'comfort', 'abl', 'world', 'phd', 'applic', 'xx'], ['wow', 'cool', 'bytheway', 'love', 'new', 'tv', 'show'], ['go', 'great', 'week', 'dalla', 'next', 'weekend'], ['thank', 'follow', 'nice', 'meet'], ['beatl', 'scouser', 'funni', 'haircut', 'talent', 'banana', 'split'], ['love'], ['final', 'back', 'onlin', 'miss', 'lappi', 'mani', 'thing', 'follow', 'start', 'ning', 'haha'], ['awesom', 'day', 'expect', 'much', 'awesomeupdat'], ['jonathan', 'get', 'priscilla', 'ahn', 'raphael', 'saadiq', 'show', 'fab', 'jool', 'holland', 'show'], ['would', 'like', 'see', 'pictur', 'carl', 'john', 'everyon', 'read', 'face', 'proud', 'love', 'eachoth'], ['lazzi', 'monday', 'bank', 'holiday', 'nicol', 'not', 'direct', 'msged', 'yet'], ['plan', 'week', 'go', 'good', 'go', 'get', 'lot', 'stuff', 'done'], ['appreci', 'effort', 'skin', 'much', 'softer', 'screen'], ['woke', 'feel', 'real', 'good', 'krispi', 'kreme', 'want', 'doughnut'], ['ooh', 'realli', 'haha', 'said', 'anyth', 'yet', 'suggest', 'idea', 'twitter', 'not', 'alreadi'], ['thank'], ['video', 'challeng', 'shot', 'confer', 'room', 'mic', 'thank', 'love', 'grant', 'park', 'hous', 'amp', 'dog'], ['hard', 'go', 'back', 'work', 'straight', 'day', 'disneyland', 'tend'], ['cool', 'saw', 'link', 'thank'], ['good', 'morn', 'everyon', 'enjoy', 'day', 'think', 'tweet', 'friend'], ['woah', 'cool', 'land', 'london', 'hour', 'love', 'sceneri', 'beauti'], ['need', 'fold', 'laundri', 'finish', 'dish', 'clean', 'rabbit', 'cage', 'realli', 'need', 'done', 'doabl'], ['fever', 'imagin', 'son'], ['son', 'got', 'sure', 'love', 'morn', 'time', 'know', 'not', 'get'], ['good', 'morn', 'tweep', 'monday', 'got', 'way', 'soon', 'hope', 'good', 'one', 'least', 'good', 'get', 'monday'], ['come', 'not', 'uber', 'success', 'not', 'make', 'mistak', 'make', 'entir', 'new', 'one'], ['would', 'love', 'see'], ['tire', 'school', 'work', 'shower', 'neighbour'], ['littl', 'stomach', 'bug', 'noth', 'serious'], ['thank', 'twilight', 'know', 'love', 'canon'], ['awesom', 'west', 'lake', 'street', 'right', 'across', 'dunn', 'brother', 'lake'], ['hi', 'dougi', 'fan', 'thailand', 'film', 'song', 'much'], ['mother', 'day', 'sunday', 'not', 'forget', 'send', 'someth', 'special'], ['chilliin'], ['yay', 'made', 'first', 'sale', 'redbubbl', 'make', 'happi'], ['final', 'feel', 'back', 'swing', 'thing', 'work', 'get', 'marri', 'last', 'week', 'sigh', 'relief', 'wed', 'plan'], ['today', 'bless', 'day'], ['ah', 'help', 'friend', 'move', 'defo', 'well', 'deserv', 'pint', 'sure'], ['let', 'guess', 'ran', 'mile', 'respect', 'dude', 'not', 'mayb', 'train'], ['great', 'day', 'massag', 'book', 'appoint', 'today'], ['oh', 'yes', 'happi', 'star', 'war', 'day', 'may', 'fourth'], ['lol', 'good', 'morn', 'ran', 'mill', 'amp', 'hit', 'gym', 'great', 'day'], ['swim', 'tan', 'heaven', 'blast', 'music', 'tan', 'world'], ['crazi', 'miley', 'jb', 'love', 'nick', 'jona', 'haha'], ['fun', 'read', 'thank', 'brit', 'make', 'thing', 'interest', 'funni', 'whittl', 'saint', 'day', 'four'], ['good', 'day', 'check', 'hugh', 'today', 'also', 'lookout', 'best', 'quot', 'cassoulet', 'quot', 'recip', 'ever', 'tast'], ['feel', 'sick', 'oh', 'well', 'reckon', 'peopl', 'bus', 'curs', 'anyway', 'nighti', 'night'], ['head', 'drop', 'lil', 'cuz', 'bus', 'stop', 'back', 'bed', 'read', 'book', 'relaxin', 'day'], ['think', 'fml', 'chang', 'lml', 'love', 'life'], ['good', 'morn', 'hope', 'nice', 'product', 'day'], ['look', 'like', 'got', 'new', 'job'], ['seem', 'desper', 'say', 'probli', 'enough'], ['good', 'morn', 'hope', 'great', 'day'], ['friend', 'come', 'tonight', 'hope', 'weather', 'stay', 'nice'], ['see', 'coffe', 'tabl', 'r', 'coming', 'insult', 'clean', 'rest', 'hous'], ['dohh', 'old', 'never', 'heard', 'last', 'year'], ['far', 'everybodi', 'look', 'good', 'momma', 'goat', 'kid', 'month', 'hope', 'week'], ['get', 'play', 'golf', 'kickin', 'leadership', 'feel', 'r', 'go', 'kick', 'golf', 'cours'], ['good', 'morn', 'tweeti'], ['monday', 'mornin', 'back', 'work', 'today', 'good', 'thing', 'live', 'job'], ['friend', 'ha', 'thing', 'make', 'old', 'look', 'good'], ['tweetioi', 'class', 'real', 'problem'], ['start', 'new', 'diet', 'today', 'not', 'want', 'get', 'fat', 'besid', 'almost', 'bath', 'suit', 'season', 'lol'], ['thank', 'face', 'show', 'photoshoot'], ['bed', 'night', 'good', 'night', 'everyon'], ['twitter', 'suck'], ['toronto', 'wait', 'day', 'go'], ['thank', 'love', 'let', 'know', 'readi', 'babi', 'hav', 'gorgeous', 'want', 'someth', 'put', 'x'], ['congrat', 'knotti', 'man'], ['music', 'meant', 'awesom', 'christian', 'artist'], ['yes', 'jeev', 'bring', 'noos', 'mani', 'assign'], ['good', 'morn', 'dan', 'birthday', 'plan', 'get', 'exercis', 'today', 'love', 'ya', 'see', 'nyc'], ['ran', 'mile', 'went', 'gym', 'amp', 'woke', 'great', 'danni', 'hope', 'great', 'alreadi'], ['stoke', 'spring', 'amaz', 'wild', 'food', 'natur'], ['pretti', 'much', 'thank', 'see', 'littl', 'gilbert', 'amp', 'sullivan', 'cheer'], ['race', 'saturday', 'night', 'jimmi', 'not', 'great', 'still', 'place'], ['wish', 'could', 'sleep', 'forev'], ['absout', 'best'], ['much', 'better', 'tool', 'come', 'across', 'twitter', 'karma', 'steroid'], ['go', 'see', 'wolverin', 'lil', 'bit', 'excit'], ['smile', 'follow', 'pleas', 'lol'], ['sweet', 'usb', 'charl', 'mari', 'site', 'bought'], ['woo', 'hoo', 'made', 'one', 'favorit', 'see', 'monday', 'rock'], ['castiel', 'angl'], ['happi', 'help'], ['ask', 'thnx', 'grite', 'take', 'care', 'god', 'bless'], ['love', 'fact', 'day', 'school', 'left'], ['go', 'lay', 'get', 'offici', 'yes', 'lol', 'good', 'night'], ['wahoo', 'thank', 'mention', 'other'], ['got', 'rad', 'new', 'aunt', 'made', 'cool', 'shini', 'shini', 'pink', 'materi'], ['think', 'super', 'excit', 'week'], ['nan', 'hous', 'eat', 'fish', 'chip', 'watch', 'top', 'gear', 'good', 'time'], ['us', 'post', 'thing', 'go'], ['yay', 'sherbert', 'chocol', 'nutriti'], ['not', 'part', 'surrey', 'either', 'feel', 'quit', 'bit', 'nippi', 'must', 'say', 'afternoon'], ['not', 'sound', 'preacheri', 'anyth', 'iphon', 'amaz', 'not', 'issu', 'sinc', 'firmwar', 'wink', 'wink'], ['yes', 'minut', 'sim', 'plus', 'season', 'fun', 'fun', 'expans'], ['say', 'number', 'good', 'left', 'white', 'blood', 'cell', 'count'], ['poetic', 'great', 'go', 'keep', 'come'], ['joan', 'legend', 'not', 'wait', 'apprentic', 'final', 'addict', 'think', 'need', 'rehab', 'lol', 'tweet', 'later', 'xoxo'], ['gmorn', 'ooh', 'giirll', 'monday'], ['goodmorn', 'twitter', 'bug', 'happi', 'monday', 'today', 'mark', 'first', 'offici', 'day', 'first', 'fulltim', 'job', 'time', 'get', 'readi'], ['morn', 'twitt', 'head', 'home', 'great', 'sleep', 'bf', 'tennill'], ['thank'], ['last', 'night', 'awesom', 'thank', 'hard', 'work', 'put', 'get', 'coffe'], ['work', 'birthday', 'not', 'bad', 'get', 'work', 'rubi', 'rail'], ['hey', 'dougi', 'thought', 'would', 'tell', 'gig', 'edinburgh', 'got', 'brilliant', 'review', 'scottish', 'sunday', 'mail', 'xx'], ['knowledg', 'start', 'scare'], ['watch', 'loudquietloud', 'documentari', 'ever', 'awesom', 'pixi', 'realis', 'joey', 'santiago', 'david', 'lover', 'twitter', 'fantast'], ['hey', 'bet', 'tweep', 'lot', 'mother', 'wisdom', 'share'], ['littl', 'brother', 'funni', 'congrat', 'engag'], ['wow', 'pretti', 'x'], ['love', 'miley', 'song', 'climb', 'love', 'video', 'xx'], ['look', 'like', 'delici', 'recip', 'tri', 'tonit'], ['castiel', 'love'], ['great', 'planet', 'shannan', 'lade', 'lanet', 'amp', 'hopeful', 'come', 'peac'], ['around', 'better'], ['weekend', 'quiet', 'plan', 'new', 'websit', 'today', 'research', 'choos', 'hat', 'coffe', 'hat', 'sound', 'good', 'though', 'kettl'], ['gmorn', 'hermana', 'thank', 'testimoni', 'wonder', 'post', 'alreadi'], ['watch', 'supernatur', 'excit'], ['great', 'pic', 'tri', 'start', 'sell', 'race', 'photo', 'runner'], ['least', 'kid', 'havnt', 'gotten', 'big', 'still', 'say', 'mommi', 'ilov', 'aww', 'sweet', 'lucki', 'kid'], ['actual', 'drove', 'today', 'incid', 'report', 'quot', 'ice', 'cube', 'today', 'good', 'day'], ['thank', 'follow', 'r', 'band', 'kind', 'genr', 'play', 'nice', 'meet'], ['lol', 'pretti', 'long'], ['mayb', 'cell', 'phone', 'soon', 'yeah'], ['sun', 'shine', 'great', 'day'], ['nuu', 'total', 'love', 'may', 'best', 'cos', 'born', 'may'], ['cheer', 'lift', 'coffe', 'cup', 'monday'], ['not', 'want', 'work', 'shift', 'today', 'would', 'rather', 'whisper', 'earpiec', 'ladi', 'friend', 'cellphon'], ['comiccon', 'cool'], ['mission', 'wale', 'find', 'world', 'greatest', 'welsh', 'cake', 'success', 'none', 'better', 'nan'], ['gift', 'amp', 'honesti', 'box', 'messag', 'discontinu', 'due', 'abus', 'hehe', 'aplikac', 'na', 'hovno'], ['not', 'wait', 'dte', 'michigan', 'summer', 'guy', 'great', 'look', 'custom', 'nkotb', 'track', 'jacket'], ['best', 'ib', 'exam', 'carl', 'hope', 'not', 'find', 'difficult', 'go', 'well'], ['aww', 'sunshin', 'life', 'bob', 'larri', 'sing', 'make', 'think', 'lt'], ['got', 'home', 'audit', 'awhil', 'ago', 'think', 'went', 'pretti', 'well', 'math', 'homework', 'call', 'name'], ['yay', 'bought', 'american', 'dad', 'volum', 'also', 'seen', 'australia', 'dvd', 'could', 'lot', 'cheaper', 'go'], ['rz', 'hope', 'time', 'tell', 'good', 'luck'], ['hous', 'season', 'good', 'stuff', 'time', 'gf', 'priceless'], ['play', 'amp', 'bank', 'holiday', 'nice', 'got', 'mani', 'xp', 'kill', 'blob', 'actual', 'two', 'though', 'tentacl'], ['think', 'less', 'tribut', 'parodi'], ['know', 'nice', 'haha'], ['lot', 'task', 'complet', 'today', 'first', 'weclom', 'new', 'member', 'canadamigo', 'social', 'network', 'site', 'coffe'], ['charm', 'funni'], ['like', 'take', 'dog', 'car', 'run', 'errand', 'alway', 'excit', 'go', 'anywher', 'like', 'morn', 'kroger'], ['end', 'well', 'lt', 'unless', 'cours', 'well', 'time', 'power', 'three', 'sum', 'end', 'x'], ['thank', 'good', 'morn'], ['interest', 'type', 'get', 'bike', 'compani', 'follow', 'get', 'compani', 'amus', 'say'], ['thank'], ['mint', 'dessert', 'tonight', 'love', 'stuff'], ['thank', 'awesom'], ['hmm', 'vpn', 'work', 'fine', 'oh', 'wait', 'not', 'need', 'vpn', 'anymor'], ['busi', 'week', 'week', 'quick', 'trip', 'chase', 'oil', 'gas', 'htown', 'back', 'offic', 'fun', 'week', 'devel', 'team'], ['mean', 'not', 'tri', 'hard', 'enought'], ['happi', 'birthday', 'snicker', 'hope', 'best', 'day', 'ever', 'let', 'us', 'go', 'shop'], ['done', 'whee', 'hahaa', 'tire', 'sleepi', 'peter', 'suck', 'not', 'come', 'birthday'], ['monday', 'not', 'bad', 'sunni', 'fb'], ['beto', 'pizzeria', 'banksvill', 'rd', 'believ', 'beachview', 'area', 'sorri', 'answer', 'like', 'year', 'later'], ['yes', 'cathi', 'ordinarili', 'not', 'much', 'problem', 'nake', 'girl', 'chase', 'howev'], ['good', 'morn', 'twitter', 'bugss', 'day', 'start', 'noww'], ['good', 'morn', 'thank', 'hot', 'cup', 'tea'], ['glad', 'get', 'twitter'], ['far', 'good', 'still', 'earli', 'though'], ['macarena', 'never', 'look', 'good', 'love', 'quot', 'aaiiee', 'quot', 'squeak', 'exclam'], ['nice', 'pic', 'kept', 'seem', 'carri', 'cam', 'around', 'along'], ['germani', 'love', 'haha'], ['knew', 'would', 'get'], ['wow', 'someon', 'proud'], ['happi', 'birthday', 'month', 'get', 'day', 'deserv', 'whole', 'month'], ['guess', 'ran', 'mile', 'amp', 'gym', 'superman', 'oxox'], ['sure', 'easier', 'login', 'everi', 'day', 'make', 'post', 'admin', 'mod', 'ill', 'tri'], ['know', 'need', 'not', 'fan', 'daili', 'amp', 'nativ', 'enjoy', 'dri', 'last'], ['hahahahahaha', 'serious', 'tell', 'wait', 'staff', 'look', 'great', 'time', 'easiest', 'nice', 'thing'], ['pepsi', 'throwback', 'tast', 'good', 'belli'], ['thank', 'awesom', 'tweet', 'leeloo', 'glad', 'enjoy', 'weekend'], ['eat', 'good'], ['hand', 'evalu', 'form', 'market', 'tute', 'today', 'one', 'fill', 'amp', 'condescend', 'rest', 'love', 'though'], ['cheer', 'would', 'like', 'thank', 'zbrush', 'make', 'possibl'], ['definit', 'appreci', 'simpl', 'thing', 'make', 'day'], ['coffe', 'lifelin', 'thing', 'good'], ['yes', 'wrong', 'wireless', 'plan'], ['go', 'star', 'trek', 'premier', 'tomorrow', 'night', 'uber', 'stoke', 'not', 'care', 'nerd', 'star', 'trek', 'amazecor'], ['bon', 'voyag', 'birthday', 'brother', 'mccarran', 'cyah', 'vega', 'juli', 'not', 'slept', 'yet', 'amp', 'class', 'fun', 'weekend'], ['staff', 'meet', 'today', 'not', 'travel', 'safe', 'see', 'tomorrow'], ['make', 'sure', 'well', 'done'], ['good', 'morn'], ['lol', 'thank', 'morn', 'chuckl', 'not', 'sure', 'follow', 'pleas', 'check'], ['good', 'morn'], ['happi', 'star', 'war', 'day'], ['philosophi', 'final', 'today', 'thank', 'day'], ['hope', 'roommat', 'good', 'morn', 'without', 'tp', 'soap'], ['school', 'day', 'exit', 'amaz', 'premier'], ['call', 'einstein', 'got', 'math', 'test', 'result', 'hell', 'yess'], ['sit', 'kati', 'hous', 'jo', 'two', 'away', 'stuff', 'swine', 'flu', 'bronchiti', 'differ', 'stori'], ['wild', 'oat', 'pinot', 'grigio', 'v', 'easi', 'drink'], ['get', 'motiv', 'fact', 'know', 'wake', 'product', 'go', 'sleep', 'though'], ['like', 'superpow', 'explan', 'better', 'lol'], ['ball', 'motion', 'type', 'concept', 'outlin', 'format', 'could', 'develop', 'ensur', 'deliv', 'great'], ['might', 'give', 'anoth', 'go'], ['weather', 'report', 'week', 'upper', 'make', 'happi', 'perfect', 'run', 'weather'], ['thank'], ['saw', 'tweet', 'coupl', 'week', 'ago', 'hashtag', 'want', 'contribut', 'sinc', 'huge', 'mitch', 'fan'], ['morn', 'chip', 'love', 'new', 'html', 'format', 'ezin'], ['thimk', 'work', 'muscl', 'love', 'much'], ['ok', 'complet', 'insomniac', 'moment', 'almost', 'still', 'awak', 'hate', 'not', 'stop', 'think', 'mornin'], ['not', 'wast', 'may', 'bank', 'holiday', 'crappi', 'south', 'brighton', 'parti'], ['aha', 'length', 'touch'], ['good', 'morn'], ['get', 'nail', 'done', 'relax', 'benji', 'hour', 'away'], ['sound', 'like', 'fun', 'think', 'lol', 'naughti', 'iron', 'watch', 'nk', 'porn', 'youtub', 'instead', 'lmao'], ['want', 'experi', 'snow', 'not', 'snow', 'suck'], ['bed', 'cuppa', 'tv', 'husband', 'cook', 'life', 'sweet'], ['would', 'great', 'thank'], ['lol', 'congrat'], ['eat', 'bagel', 'yummi'], ['thank'], ['realli', 'consid', 'moment', 'day', 'even', 'money', 'harder', 'work', 'though', 'not', 'imagin', 'harder'], ['clamber', 'crash', 'car', 'hilari', 'fun'], ['someon', 'good', 'morn'], ['amp', 'lt', 'cute', 'sinfest'], ['n', 'case', 'miss', 'show', 'yesterday', 'chanc', 'listen', 'bbc', 'iplay', 'enjoy'], ['realiz', 'solid', 'better', 'ajc'], ['work', 'hope', 'enjoy', 'day', 'finger', 'cross'], ['listen', 'favourit', 'song', 'allah', 'ke', 'band', 'hasd'], ['hope', 'feel', 'better', 'soon', 'check', 'cool', 'backround', 'profil'], ['thank', 'follow', 'love', 'life', 'ador'], ['wish', 'london', 'person', 'wit', 'nun', 'run', 'great', 'idea', 'open', 'sister', 'act', 'new', 'broadway', 'show'], ['true', 'lol', 'problem', 'mad'], ['hiya', 'miss'], ['tri', 'fireflight', 'first', 'femal', 'front', 'metal', 'unbreak', 'album', 'would', 'good', 'start'], ['nice', 'submit'], ['love', 'awesom'], ['woke', 'hour', 'sleep', 'feel', 'better'], ['count', 'minut', 'go', 'home'], ['god', 'peppermint', 'mocha', 'frappachino', 'amaz', 'addict'], ['thank', 'give', 'star'], ['like', 'record', 'sooth', 'voic'], ['buy', 'copi', 'today', 'excit', 'need', 'learn', 'friday', 'good', 'luck', 'sheffield'], ['shiv', 'place', 'slowli', 'hope'], ['yay', 'not', 'wait', 'read'], ['not', 'need', 'shirt', 'suffer', 'anoth', 'two', 'old', 'ep', 'tonight'], ['whaa', 'realli', 'definit', 'option', 'though', 'like', 'also', 'crazi'], ['like', 'window', 'releas', 'candid', 'far', 'also', 'like', 'new', 'video', 'card', 'terabyt', 'harddisk'], ['bill', 'super', 'thank'], ['total', 'welcom', 'come', 'hang', 'wiki'], ['hell', 'lot', 'say', 'not', 'complain', 'thees', 'day', 'quot', 'quot', 'quot', 'quot', 'help', 'case'], ['mani', 'thank'], ['total', 'go', 'amaz', 'reason', 'bought', 'tix', 'song', 'blood', 'bank'], ['good', 'morn'], ['beauti', 'monday', 'morn', 'happi'], ['happi', 'star', 'war', 'day', 'everyon'], ['dad', 'like', 'love'], ['thank', 'gail', 'go', 'tri', 'one', 'day', 'look', 'yummi', 'geezz', 'siargao', 'trip', 'nlng', 'pla', 'heheh'], ['two', 'hour', 'set', 'drive', 'home', 'most', 'hope', 'goe', 'quick'], ['haha', 'say', 'two', 'week', 'pleas', 'continu', 'bre', 'great'], ['got', 'ticket', 'dismiss'], ['danni', 'run', 'alreadi', 'hope', 'good', 'day', 'love'], ['happi', 'star', 'war', 'day', 'may'], ['need', 'go', 'back', 'scotti', 'use', 'last', 'year'], ['thank', 'follow', 'rais', 'hand'], ['feel', 'butterfli', 'today', 'studi', 'studi', 'studi', 'contract', 'go', 'ace', 'competit', 'journal'], ['not', 'lyk', 'othaa', 'gurrl', 'not', 'lyk', 'jona'], ['go', 'work', 'amaz', 'chariti', 'event', 'big', 'brother', 'big', 'sister', 'not', 'mind', 'work', 'good'], ['kno', 'amaz', 'known', 'sinc', 'got', 'twitter', 'tweet', 'word'], ['awak', 'happi'], ['saw', 'nome', 'twitter', 'still', 'not', 'wake'], ['thank', 'becom', 'follow'], ['beauti', 'morn'], ['good', 'morn'], ['thank', 'kelli', 'sweet'], ['saw', 'xmen', 'origin', 'sat', 'far', 'best', 'xmen', 'movi', 'amaz'], ['good', 'morn', 'get', 'readi', 'go', 'hospit', 'get', 'cat', 'scan', 'best', 'wish'], ['wow', 'lot', 'work', 'hope', 'today', 'day', 'work', 'usual', 'get', 'playtim'], ['call', 'wierd', 'jus', 'love', 'raini', 'day', 'make', 'feel', 'warm', 'amp', 'cozi', 'insid', 'lol'], ['monday', 'best', 'excit', 'week'], ['yes', 'nag', 'twitter', 'haha', 'thank', 'lm'], ['say', 'pleas', 'repli', 'dougi', 'doubl', 'dare'], ['yip', 'would', 'sign', 'dodgi', 'site', 'jo', 'eish', 'boet', 'not', 'cool'], ['got', 'new', 'follow', 'yesterday', 'yay', 'need', 'til'], ['today', 'check', 'day', 'week', 'artist', 'way', 'hurray', 'time', 'celebr', 'anoth', 'good', 'complet', 'journey'], ['beij', 'good', 'massag', 'amp', 'sexi', 'girl', 'amp', 'real', 'photo', 'beij', 'hi'], ['peac', 'amp', 'quiet', 'enjoy', 'last'], ['hey', 'arthur', 'forgot', 'say', 'thank', 'flag', 'proud', 'display', 'bedroom', 'door', 'witti', 'one'], ['revamp', 'record', 'studio', 'today', 'ad', 'nice', 'high', 'end', 'outboard', 'exit'], ['hurray', 'twin', 'girl', 'born', 'beauti', 'may', 'day'], ['peopl', 'not', 'get', 'fender', 'bender', 'way', 'school', 'not', 'happen', 'hahahahah'], ['good', 'day', 'let', 'us', 'see', 'get', 'accomplish', 'today', 'togeth'], ['sound', 'good', 'one', 'also', 'fun'], ['know', 'crazi', 'love', 'use', 'seen', 'yt', 'recent', 'partner', 'xx'], ['nice', 'luke', 'quot', 'goodluck', 'test', 'dread'], ['love', 'twitski'], ['final', 'upgrad', 'spotifi', 'premium', 'exceed', 'threshold', 'awesom', 'time', 'ago', 'iphon', 'app', 'amp', 'remot'], ['quit', 'belov', 'job', 'long', 'luvli', 'vacat', 'koh', 'tao', 'turtl', 'island', 'south', 'thailand', 'sea', 'sand', 'join'], ['know', 'recommend'], ['feel', 'pretti', 'energ', 'amp', 'readi', 'face', 'day', 'hour', 'sleep', 'hope', 'last', 'day'], ['silli', 'shoot', 'shopper', 'though', 'taser', 'probabl', 'human', 'penalti', 'item', 'item', 'line'], ['happi', 'birthday'], ['studi', 'accord', 'note', 'copi', 'fine'], ['morn', 'tweetheart', 'home', 'travel', 'state', 'amp', 'fair', 'day', 'inspir', 'readi', 'write', 'enjoy', 'coffe'], ['er', 'yea', 'doubli', 'awesom'], ['love', 'song', 'happi', 'monday'], ['yo', 'thoma', 'thank', 'follow', 'social', 'media', 'director', 'disney', 'awesom', 'would', 'like', 'learn', 'let', 'us', 'lunch'], ['school', 'bit', 'glad', 'jake', 'got', 'day'], ['great', 'nice', 'meet'], ['full', 'nice', 'dinner'], ['thank', 'concern', 'check', 'much', 'appreci'], ['def', 'anyon', 'leav', 'room', 'second', 'follow', 'realli', 'great', 'dog', 'otherwis', 'far'], ['happi', 'came', 'said', 'hi', 'nice', 'meet', 'inde', 'thank', 'much', 'come', 'talk'], ['concur', 'prioriti', 'today', 'list'], ['beauti', 'day', 'not', 'got', 'first', 'class'], ['yeeh', 'also', 'thing', 'drummer', 'basic', 'guy', 'play', 'instrument', 'sing', 'p'], ['hmm', 'mean', 'start', 'quot', 'follow', 'quot', 'oh', 'way'], ['hey', 'bought', 'porter', 'cabl', 'set', 'new', 'drill', 'led', 'light', 'near', 'trigger', 'oh', 'happi'], ['goodnight'], ['not', 'wait', 'prom', 'prom', 'parti', 'friday'], ['roll', 'arm', 'cuz', 'not', 'rememb', 'ever', 'fall', 'hard', 'dc'], ['start', 'internship', 'today', 'pretti', 'excit'], ['brooklyn', 'went', 'hard', 'back', 'top'], ['good', 'intent', 'hope', 'other', 'get', 'vibe'], ['jb', 'cute', 'lmfao'], ['mayb', 'pass', 'lay', 'make', 'swineflu', 'illeg', 'law', 'abid', 'citizen', 'not', 'get'], ['check', 'googl', 'analyt', 'alway', 'get', 'safari', 'kick', 'make', 'laugh'], ['listen', 'music', 'kostet', 'der', 'fisch', 'xd', 'mathsteach', 'choos', 'wrong', 'job', 'wrong', 'grammar', 'real', 'fact'], ['host', 'next', 'logi', 'laugh', 'bit', 'realli'], ['get', 'distract', 'would', 'like', 'thank', 'new', 'follow', 'take', 'troubl', 'follow', 'other', 'feelin', 'love'], ['florida', 'nice'], ['yea', 'say', 'someth', 'great', 'hear', 'ukrainian'], ['kid', 'love', 'dark', 'hair', 'say', 'dye', 'much', 'never', 'know', 'color', 'go', 'yea', 'hahahahaha'], ['work', 'tri', 'hard', 'not', 'succumb', 'quot', 'poor', 'quot', 'mental', 'due', 'sever', 'allergi', 'boo'], ['happi', 'birthday', 'ness'], ['meet', 'overr'], ['tataindicom', 'not', 'good', 'tataski', 'airtel', 'broadband', 'better'], ['haha', 'good', 'dream', 'haha', 'best', 'friend', 'forev', 'haha', 'sweet', 'presh', 'bailey', 'zd', 'b', 'p'], ['rain', 'cat', 'dog', 'mysor', 'thank'], ['lol', 'weekend', 'yea', 'right', 'text', 'goin', 'not', 'comput', 'bye', 'bye'], ['good', 'morn', 'pretti', 'outsid', 'today'], ['haha', 'trip', 'talk', 'harvard', 'read', 'aussi', 'automat', 'came', 'idiot'], ['good', 'plan', 'peg', 'plus', 'like', 'sound', 'quot', 'money', 'monday', 'quot'], ['oh', 'gosh', 'hope', 'fun'], ['would', 'love', 'work', 'tell', 'friend', 'follow'], ['hope', 'alright', 'final'], ['hey', 'wow', 'cheer', 'insight', 'peopl', 'look', 'fun', 'oh', 'aweoms', 'robluket', 'live', 'gt'], ['pretti', 'cool', 'kid', 'adult', 'fun'], ['wow', 'great', 'know', 'piec', 'softwar', 'ensur', 'time', 'project', 'deliveri', 'productnamingrulez'], ['good', 'morn'], ['thank', 'much', 'fantast', 'day'], ['wat', 'world', 'x', 'basketbal', 'game', 'best', 'shooter', 'team', 'not', 'know', 'shooter', 'exist', 'lol', 'understand', 'haha'], ['play', 'hooki', 'work', 'feel', 'good', 'go', 'go', 'get', 'hair', 'wonder', 'fitzsimmon'], ['listen', 'coz', 'remind', 'depress'], ['five', 'day', 'five', 'long', 'day', 'ahh'], ['yup', 'stay', 'end', 'excit'], ['hey', 'thing', 'weekend', 'love', 'ikea'], ['bank', 'holiday', 'rain', 'superb', 'great', 'excus', 'not', 'start', 'garden', 'jungl', 'back', 'hous', 'eat'], ['thank', 'need'], ['know', 'cowboy', 'hat', 'pic', 'made', 'smile', 'today', 'not', 'see', 'mani', 'japan'], ['done', 'noth', 'today', 'apart', 'moan', 'whing', 'moan'], ['lol', 'point', 'laugh'], ['welcom', 'finish', 'speech', 'type', 'written', 'note'], ['get', 'porn', 'one', 'mention', 'girl', 'seem', 'loss'], ['chillaxin', 'busi', 'bankholiday', 'hope', 'everbodi', 'gd', 'wkend', 'holiday', 'day', 'xx'], ['inde', 'made', 'life'], ['awesom'], ['definit', 'readi', 'actual', 'ahead', 'alreadi', 'sun', 'tan', 'beach', 'yesterday'], ['hate', 'endless', 'suppli', 'hot', 'water', 'put', 'water', 'heater', 'ago', 'ill', 'gone', 'xx'], ['want', 'final', 'found', 'want'], ['yeah', 'damn', 'time', 'film', 'slr', 'sit', 'quiet', 'ignor', 'time', 'step'], ['woot'], ['guess', 'potus', 'abl', 'dig', 'amp', 'folo', 'ss', 'nomin', 'good', 'pos'], ['woo', 'tour', 'start', 'yay', 'day', 'awesom', 'time', 'love', 'video', 'xd'], ['go', 'see', 'reemer', 'wednesdayi', 'kirsti', 'go', 'well', 'exit'], ['haha', 'yay', 'love', 'shane', 'dawson'], ['dougi', 'coffe', 'quot', 'quot', 'coffe', 'hahaha', 'name', 'come', 'predict', 'text', 'pretti', 'awesom'], ['woke', 'feel', 'good', 'sleep', 'monday'], ['thank', 'eric', 'glad', 'appreci'], ['yeahh', 'happi', 'pendant', 'hope', 'see', 'futur', 'fair', 'ps', 'good', 'mini', 'muffin'], ['make', 'sure', 'pick', 'chrisett', 'michel', 'new', 'album', 'epiphani', 'store', 'tomorrow', 'may', 'love', 'promis', 'congrat'], ['yaay', 'think', 'might', 'ace', 'histori', 'test', 'today'], ['hey', 'amaz', 'bamboozl', 'thank', 'stop', 'take', 'apictur', 'saturday', 'seem', 'like', 'rush', 'though'], ['not', 'say', 'met', 'awesomest', 'peopl', 'bunch'], ['inthebattl', 'realli', 'cute', 'one', 'favorit'], ['thank', 'total', 'bush', 'today', 'though', 'time', 'code'], ['alway', 'good', 'day', 'make', 'good', 'time', 'make', 'better', 'morn', 'greet', 'thank'], ['fort', 'belvoir', 'base', 'hub', 'station', 'pentagon', 'not', 'wait', 'pug', 'pup', 'loov', 'mine'], ['good', 'morn', 'rob'], ['unplug', 'rest', 'day', 'good', 'one', 'everybodi'], ['hiya', 'look'], ['would', 'love', 'work', 'tell', 'friend', 'follow'], ['anoth', 'manic', 'monday', 'wish', 'sunday', 'fun', 'day', 'happi', 'monday', 'twitterland'], ['write', 'cms', 'use', 'git', 'version', 'check', 'would', 'interest', 'work', 'someth', 'like'], ['goodmorn'], ['hope', 'everyon', 'great', 'weekend', 'today', 'import', 'meet', 'today'], ['thank', 'xx'], ['good', 'morn', 'raini', 'monday'], ['would', 'love', 'work', 'tell', 'friend', 'follow'], ['happi', 'anoop', 'day', 'monica'], ['whew', 'go', 'focus', 'famili', 'time', 'swim', 'suit', 'shop', 'rest', 'vacay', 'thank', 'kind', 'word'], ['congrat', 'tax', 'refund', 'alway', 'nice'], ['good', 'day'], ['great', 'glad', 'enjoy', 'hope', 'great', 'day'], ['know', 'germani', 'like', 'holland', 'well', 'use', 'shoppin'], ['miss', 'smile'], ['last', 'day', 'sign', 'gocincinnati', 'sign', 'group', 'go', 'awesom'], ['okay', 'awesom'], ['hahaha', 'snore'], ['thank', 'got', 'hold', 'someon', 'knew', 'last'], ['offic', 'til', 'around', 'today', 'good', 'day', 'bsc'], ['thank', 'prop'], ['coffe', 'hand', 'sun', 'shine', 'window', 'hope', 'everyon', 'great', 'monday', 'morn', 'far', 'monday', 'mr'], ['ilycecili', 'lt'], ['omg', 'funni'], ['drag', 'work', 'miss', 'fit', 'class', 'morn', 'need', 'one', 'weekend', 'day'], ['rot', 'away', 'desk', 'would', 'realli', 'thank', 'yl', 'made', 'day', 'best', 'support', 'system', 'ever'], ['feel', 'weak', 'tire', 'seat', 'front', 'pc', 'realli', 'need', 'studi', 'ha', 'long', 'quiz'], ['happi', 'anoop', 'day', 'monica'], ['everyon', 'must', 'watch', 'snowbal', 'danc', 'bird', 'amp', 'make', 'promis'], ['mayb', 'natur', 'abil', 'languag', 'envi'], ['alright', 'back', 'twitter', 'decompress', 'happi', 'monday', 'folk', 'good', 'word'], ['version', 'live', 'interact', 'ticket', 'planner', 'launch', 'cool'], ['hey', 'donna', 'love', 'see', 'twitter'], ['not', 'stay', 'til', 'almost', 'read', 'quot', 'rule', 'quot', 'good', 'book', 'total', 'worth', 'sleep', 'depriv'], ['phone', 'work', 'whack', 'well', 'good', 'morn', 'go', 'go', 'eat', 'breakfast', 'neil', 'school', 'start'], ['still', 'watchin', 'boston', 'legal', 'though', 'crack', 'scrub', 'earlier', 'good', 'guess', 'like', 'laugh'], ['thank', 'shoutout'], ['new', 'nick', 'name', 'arosh', 'like', 'like'], ['yess', 'got', 'twin', 'lock', 'welcom', 'twiin'], ['yaay', 'get', 'see', 'look', 'forward', 'cupcak', 'fun'], ['munderday', 'like'], ['pauli', 'walli', 'made', 'life', 'fuck', 'happi', 'hell', 'love', 'repli', 'back'], ['not', 'true', 'get', 'wors', 'burn', 'today', 'not', 'forget', 'sunscreen'], ['wohoo', 'go', 'see', 'eddi', 'izzard', 'decemb'], ['cross', 'finger', 'ya', 'amp', 'hey', 'side', 'town', 'welcom', 'lol'], ['uhh', 'not', 'yet', 'mayb', 'dm', 'inbox', 'slow', 'let', 'know', 'show'], ['supernatur', 'good', 'love'], ['realli', 'want', 'flawless', 'work'], ['cover', 'sneez', 'tissu', 'love', 'god', 'signific', 'increas', 'sinc', 'join', 'healthcar'], ['hehe', 'smile', 'still', 'got', 'make'], ['happi', 'come', 'fact', 'gray', 'raini', 'monday', 'not', 'bother', 'well', 'not', 'much'], ['head', 'hollywood', 'studio', 'today', 'manta', 'kraken', 'awesom', 'yesterday', 'feel', 'like', 'ride'], ['go', 'go', 'jumbo', 'cup', 'coffe', 'think', 'make', 'happi'], ['sound', 'good'], ['word', 'perfect', 'run', 'right'], ['one', 'final', 'two', 'go', 'wish', 'luck', 'great', 'effort'], ['hope', 'weekend', 'fabul', 'anyth', 'interest'], ['week', 'juli', 'flollop', 'perfect', 'describ', 'way', 'move', 'belli', 'hehe'], ['omg', 'saw', 'updat', 'nd', 'said', 'quot', 'david', 'archuleta', 'quot', 'lol', 'shoulda', 'david', 'lt', 'david', 'awsom'], ['leav', 'work', 'not', 'get', 'soon', 'enough', 'hope', 'everyon', 'great', 'day'], ['precious'], ['awesom', 'aww'], ['great', 'weekend', 'work', 'day', 'go', 'illinoi', 'thur', 'amp', 'fri', 'gig', 'john'], ['great', 'interview', 'video', 'favorit', 'youtub'], ['happi', 'star', 'war', 'day'], ['hug', 'back', 'also', 'look'], ['raini', 'monday', 'better', 'day', 'work', 'home', 'thank'], ['thank', 'could', 'not', 'find', 'way', 'around', 'itun', 'though', 'found', 'littl', 'app', 'call', 'switch', 'job', 'nice'], ['middl', 'irish', 'sea', 'absent', 'elk', 'brother', 'newcastl', 'come', 'love', 'newcastl'], ['bad', 'still'], ['come', 'myspace', 'yr', 'work', 'though', 'dnt', 'bother'], ['rise', 'shine', 'time', 'get', 'prettifid'], ['good', 'morn', 'peopl', 'great', 'day'], ['look', 'great', 'morn', 'alreadi'], ['heh', 'coincid', 'barnsley', 'fan', 'track'], ['got', 'told', 'got', 'good', 'chanc', 'gettin', 'job', 'excit', 'come', 'back', 'want'], ['oww', 'good', 'morn'], ['definit', 'come', 'hope', 'readi'], ['rain', 'outsid', 'motiv', 'sleep'], ['may', 'happi', 'star', 'war', 'day'], ['not', 'worri', 'bizarr', 'find'], ['thank', 'glad', 'like', 'flower', 'made', 'diamond'], ['nice', 'clean'], ['man', 'love', 'shelv', 'way', 'go', 'diy', 'diva'], ['oh', 'lot', 'put', 'desk', 'year', 'guess', 'done', 'would', 'ok', 'back', 'lol'], ['thank'], ['done', 'jack', 'green', 'today', 'good', 'killer', 'walk', 'west', 'hill', 'though', 'listen', 'peopl'], ['got', 'shower', 'sit', 'towel', 'hate', 'twitterberri', 'not', 'repli', 'tweet'], ['kiss', 'feet', 'peopl', 'kick', 'anyth', 'want', 'morn', 'everyon', 'hope', 'best', 'day', 'ever'], ['work', 'technolog', 'love', 'waz'], ['fun', 'twitpic', 'purpl', 'hair'], ['yahoo', 'great', 'alway', 'nice', 'hear', 'success', 'stori'], ['great', 'job'], ['hey', 'gio', 'beauti', 'brazilian', 'love', 'hahahaha', 'pleas', 'answer', 'xx'], ['sound', 'like', 'fun', 'lol', 'least', 'still', 'hair', 'right', 'weekend'], ['need', 'show', 'reel', 'nxt', 'start', 'appli', 'edit', 'job', 'rock', 'climb', 'tomo', 'hope'], ['wow', 'shabu', 'himym', 'realli', 'feel', 'comfort'], ['wow', 'sound', 'heaven', 'quick', 'drive', 'north', 'carolina', 'not', 'wait'], ['not', 'tryin', 'call', 'rememb', 'dad', 'alway', 'ass', 'late', 'never', 'got', 'troubl'], ['safe', 'trip', 'joshi', 'knock', 'dead', 'speech'], ['sound', 'like', 'muffler', 'bear', 'go', 'bad'], ['weekend', 'relax', 'one', 'cousin', 'place', 'watch', 'tv', 'seri', 'quot', 'tru', 'call', 'quot', 'realli', 'cool'], ['haha', 'actual', 'violat', 'someon', 'trademark', 'okay', 'yeah', 'went', 'bed'], ['hey', 'babe', 'noth', 'much', 'tryin', 'see', 'go', 'work', 'today', 'lol', 'look', 'like', 'load', 'not', 'bad'], ['also', 'happi', 'star', 'war', 'day'], ['great', 'friend', 'mine', 'let', 'know', 'play', 'next', 'come', 'along', 'whatev', 'like'], ['naw', 'min', 'bug', 'tank', 'would', 'stop', 'spawn', 'min', 'glad', 'get', 'keep'], ['person', 'good', 'noth'], ['yay', 'save', 'overcom', 'god'], ['good', 'day', 'girl', 'ill', 'call', 'later'], ['yep', 'ah', 'damn', 'not', 'want', 'leav', 'warm', 'doona', 'get', 'hot', 'guess', 'make'], ['watch', 'boy', 'stripe', 'pj', 'day', 'best', 'film', 'ever', 'seen'], ['delici', 'pav', 'bhaaji', 'fine', 'chop', 'onion', 'littl', 'dash', 'lemon', 'yummi'], ['ponder', 'lunch', 'shane', 'think', 'alreadi', 'hear', 'peopl', 'whine'], ['met', 'mother', 'best', 'show', 'ever'], ['thank', 'go', 'laker', 'game', 'tonight', 'sec', 'love', 'la'], ['ah', 'lol', 'okay', 'thank'], ['not', 'best', 'flick', 'sure', 'readi', 'quot', 'star', 'trek', 'quot'], ['well', 'hope', 'see', 'confer'], ['sound', 'cool', 'pay', 'even', 'better'], ['hi', 'thank', 'follow', 'much', 'long', 'time', 'sinc', 'last', 'chat'], ['glad', 'someon', 'slept', 'last', 'night', 'doggi', 'would', 'take', 'pictur', 'not', 'see', 'laptop'], ['thank', 'soo', 'much', 'bella'], ['awesom', 'pic', 'nice', 'way', 'start', 'week'], ['awe', 'thank', 'good', 'morn', 'aswel'], ['quot', 'paint', 'fingernail', 'oh', 'happen', 'paint', 'quot', 'marvel'], ['starbuck', 'love'], ['gettin', 'check', 'outta', 'school', 'sicck', 'goin', 'pick', 'jimbbo'], ['thank', 'bro'], ['omg', 'spit', 'drink', 'rip', 'hair', 'straighten'], ['dmed', 'login', 'detail', 'twitter', 'salvat', 'system', 'enjoy', 'let', 'know', 'think'], ['mayb', 'use', 'besid', 'without', 'ac', 'hot', 'sleep'], ['cours', 'realli', 'hope', 'would', 'real', 'twitter', 'page', 'would', 'soo', 'cool'], ['thought', 'would', 'win', 'bot', 'side'], ['hospit', 'today', 'shop', 'mom', 'love', 'much'], ['download', 'ton', 'stun', 'beauti', 'wallpap', 'go', 'look'], ['awesom', 'day', 'school'], ['enjoy', 'springsteen', 'see', 'glastonburi', 'june', 'give', 'us', 'report', 'get', 'back'], ['bud', 'kudo', 'hardcor', 'gym', 'train', 'great', 'lifechang', 'experi', 'keep'], ['nice', 'musli', 'bar'], ['yer', 'pleas', 'good', 'day'], ['pleasur', 'hey', 'play', 'go', 'away', 'nz', 'parti', 'back', 'lot', 'burn', 'brain'], ['deplurk', 'gah', 'need', 'concentr', 'jap', 'visit', 'site', 'time', 'heh'], ['fine', 'thank', 'not', 'long', 'till', 'excit'], ['happi', 'monday', 'everyon', 'love', 'new', 'arrang', 'famili', 'room'], ['okay', 'cool', 'hope', 'better', 'dream', 'last', 'week'], ['ahh', 'go', 'year', 'old', 'fact', 'good', 'old', 'radio', 'one', 'exam', 'tomorrow'], ['way', 'thank', 'gift', 'wear', 'shirt', 'dunker', 'appl', 'love', 'chicken', 'soup', 'need'], ['not', 'problem', 'sis', 'respect', 'due'], ['thank', 'tri', 'hope', 'bud', 'trillin', 'fest', 'would', 'honor', 'guest', 'hobnob'], ['got', 'ticket', 'go', 'dad', 'girlfriend', 'see', 'eric', 'clapton', 'steve', 'winwood', 'arc', 'angel', 'june', 'toyota', 'center', 'woo'], ['hong', 'kong', 'great', 'crazi', 'quot', 'english', 'name', 'quot', 'friend', 'work', 'quot', 'miss', 'chewbacca', 'leung', 'quot'], ['like', 'enjoy', 'photographi'], ['thank', 'jani'], ['ok', 'get', 'pink', 'stripey', 'one', 'subtl', 'bit', 'bore', 'floral', 'print', 'ok'], ['good', 'monday', 'morn', 'hope', 'everyon', 'week', 'success', 'start'], ['also', 'tri', 'get', 'hous', 'readi', 'sell', 'not', 'believ', 'much', 'crap'], ['least', 'larg', 'vocabulari', 'benefit', 'writer', 'hope', 'well', 'sister'], ['lol', 'spirit', 'haha'], ['go', 'ikea', 'roomi', 'shop', 'apart', 'ikea', 'like', 'top', 'ten', 'store', 'love'], ['interest', 'day', 'yesterday', 'wonder', 'today', 'crazi', 'hope', 'not', 'still', 'diggin', 'spartacus', 'aka'], ['watch', 'ryann', 'go', 'grand', 'day'], ['good', 'luck', 'final'], ['love', 'beauti', 'monday', 'morn'], ['heard', 'song', 'time', 'two'], ['sound', 'realli', 'brummi', 'lol', 'hate', 'look'], ['promis', 'post', 'new', 'mini', 'magic', 'villag', 'today', 'weather', 'perfect', 'see', 'preview'], ['hope', 'see', 'soon'], ['aeroplan', 'know', 'plato', 'one', 'favorit', 'wkp', 'song'], ['soo', 'readyy', 'summerr', 'babyy'], ['hi', 'x', 'websit', 'soo', 'cool', 'love', 'use', 'thank'], ['get', 'readi', 'colleg', 'good', 'sleep', 'raini', 'day', 'today', 'love'], ['thank'], ['ohay', 'clean', 'teeth'], ['need', 'break', 'need', 'kitkat', 'haha'], ['one', 'lane', 'stop', 'go', 'traffic', 'suckss', 'almost', 'wwork', 'thank', 'gay', 'miinnesota', 'road'], ['block', 'account', 'one', 'hate', 'sport', 'team', 'felt', 'realli', 'good'], ['thank', 'elanc', 'cours', 'not', 'mine'], ['well', 'good', 'morn', 'wonder', 'day', 'neighborhood', 'thank', 'follow', 'anoth', 'morn'], ['birthday', 'breakfast', 'chai', 'amp', 'appl', 'fritter'], ['good', 'morn', 'everyon'], ['noo', 'good', 'guy', 'better', 'x'], ['final', 'pick', 'handwrap', 'struggl', 'wrap', 'stronger', 'hand', 'defo', 'got', 'lot', 'sooner', 'though'], ['glad', 'like', 'quot', 'integr', 'one', 'product', 'moment'], ['wee', 'internet', 'back', 'home'], ['salt', 'vinegar', 'chees', 'onion', 'make', 'breath', 'smell', 'lol', 'xx'], ['man', 'suck', 'feel', 'pain', 'local', 'would', 'buy', 'cup', 'coffe'], ['mac', 'believ', 'not', 'regret'], ['funni', 'actual', 'could', 'use', 'grow', 'thru', 'august', 'woodstock', 'anniversari', 'yrs'], ['yeah', 'want', 'bottl', 'sanit', 'good', 'tast', 'like', 'choc', 'orang'], ['ahaha', 'stuck', 'head', 'thanxx'], ['haha', 'not', 'see', 'macbook', 'imac', 'pic', 'feel', 'extra', 'jealous', 'loll'], ['dude', 'safe', 'say', 'blown', 'away', 'heard', 'attic', 'make', 'sure', 'pass', 'much'], ['great', 'cover'], ['wow', 'beauti', 'pictur', 'want', 'let', 'know', 'bella'], ['bumper', 'sticker', 'quot', 'not', 'want', 'stand', 'troop', 'feel', 'free', 'stand', 'front', 'quot', 'thank', 'militari'], ['not'], ['feel', 'pretti', 'good', 'morn', 'let', 'us', 'hope', 'last', 'day'], ['death', 'cab', 'cuti', 'slouchi', 'baret', 'good', 'way', 'start', 'day'], ['listen', 'dave', 'barn', 'get', 'realli', 'excit', 'junior', 'senior'], ['live', 'quit', 'close', 'raf', 'boulmer', 'might', 'not', 'good', 'thing'], ['wow', 'good'], ['get', 'lol', 'time', 'eat', 'id', 'hate', 'late'], ['lol', 'good', 'luck', 'love', 'vid', 'ybwm'], ['wow', 'total', 'amaz', 'awesom'], ['may'], ['watch', 'friend', 'reduc', 'stress', 'insid', 'thank', 'bright', 'kauffman', 'crane', 'creat', 'seri', 'love', 'love', 'love'], ['good', 'morn'], ['hate', 'wake', 'earli', 'need', 'make', 'hrs', 'pharmaci', 'class', 'gt', 'sighh', 'news', 'breakfast', 'time'], ['sometim', 'take', 'solv', 'problem', 'fresh', 'morn', 'hope', 'today', 'beauti'], ['welcom', 'twitter', 'babe', 'know', 'tri', 'figur'], ['maiko', 'keyboard', 'birthday', 'today', 'good', 'boy', 'mayb', 'get', 'present'], ['eat', 'pancak', 'better', 'day'], ['happi', 'monday', 'hope', 'great', 'week'], ['good', 'morn'], ['feel', 'sorri', 'adam', 'cook', 'strong', 'david', 'famili'], ['thank', 'octob'], ['hope', 'nice', 'sleep'], ['work', 'five', 'year', 'old', 'go', 'keep', 'young'], ['not', 'say', 'have', 'jame', 'rs', 'yesterdayi', 'learn', 'quotess'], ['excit', 'see', 'samantha', 'amp', 'denis'], ['ohh', 'cute', 'fish', 'peac', 'daughter', 'look', 'focus'], ['thank', 'mandi', 'good', 'sister', 'may', 'true', 'unfortun', 'road', 'tire', 'not', 'say'], ['alway', 'get', 'realli', 'excit', 'kiss', 'ben', 'harper', 'come', 'begin'], ['would', 'nice'], ['haha', 'look', 'littl', 'like', 'charli', 'lol'], ['love', 'much', 'tay', 'amaz', 'lt', 'come', 'denmark', 'love'], ['forev', 'sinc', 'tweet', 'want', 'say', 'thati', 'love', 'bill', 'hope', 'ya', 'amaz', 'week'], ['thank', 'todd', 'enjoy', 'read', 'blog', 'littl', 'cheer', 'good', 'old', 'alfr', 'wallac', 'curious', 'read', 'book'], ['eat', 'not', 'exact', 'true', 'digest', 'todayisaprosper', 'amp', 'product', 'day', 'thankujesus', 'beyebless', 'hee', 'hee'], ['like', 'mean', 'like', 'left'], ['like', 'term', 'quot', 'today', 'list', 'quot', 'better', 'quot', 'list', 'quot'], ['thank', 'follow', 'back'], ['need', 'go', 'shop', 'bore', 'day', 'doo', 'colleg', 'fuckin', 'excitin', 'wish', 'twitter', 'simplifi', 'lt'], ['definit', 'network', 'neutral', 'may', 'interest'], ['kind', 'nice', 'break', 'not', 'matter', 'soon', 'grad', 'school'], ['know', 'go', 'sort'], ['sick', 'stay', 'home', 'levi', 'said'], ['yea', 'call', 'shallow', 'save', 'say', 'make', 'good', 'music'], ['time', 'seek', 'coffe', 'caffein', 'love', 'affair', 'mm', 'sweet'], ['omg', 'sun', 'glimps', 'cloud', 'woohoo'], ['download', 'movi', 'quot', 'ben', 'alien', 'forc', 'quot', 'cool', 'movi'], ['hey', 'dasit', 'thank', 'messag'], ['soo', 'jealous', 'good', 'way', 'cours', 'lc', 'awesom'], ['seen', 'like'], ['noth', 'wrong', 'quiet', 'day', 'give', 'time', 'listen'], ['would', 'not', 'chang', 'fan', 'world', 'honest', 'not', 'think', 'anyon', 'would', 'chang', 'mcfli', 'world', 'amaz', 'x'], ['beer', 'smoki', 'lucki', 'time', 'good', 'time', 'stuff'], ['happi', 'may', 'day', 'star', 'war', 'day'], ['love', 'ipod', 'shuffl', 'good', 'song', 'togeth'], ['omg', 'would', 'soo', 'make', 'dis', 'show', 'number', 'one', 'n', 'da', 'rate'], ['say', 'chees', 'camera', 'throw', 'western', 'mass', 'gang', 'sign', 'cool'], ['thank', 'hope', 'great', 'rest', 'day', 'afternoon', 'coffe', 'yet'], ['aww', 'coukd', 'send', 'phone', 'would', 'kind', 'flair', 'would', 'like'], ['may', 'happi', 'star', 'war', 'day', 'starwarsday', 'geek', 'dork', 'fb', 'awesom'], ['probabl', 'bed', 'time', 'hug', 'kiss', 'lt'], ['raini', 'georgia', 'wear', 'bright', 'color', 'hope', 'sun', 'come', 'doubt', 'go', 'work'], ['work', 'listen', 'music', 'test', 'new', 'tonight', 'let', 'us', 'hope', 'best'], ['thank', 'follow', 'nice', 'rest'], ['miss', 'fizzi', 'duck', 'love', 'hive', 'mind'], ['email', 'email', 'gave', 'thanx', 'awesom', 'person'], ['hope', 'fix', 'right'], ['workin', 'long', 'day', 'today', 'hope', 'make', 'good', 'tip'], ['tape', 'cox', 'pick', 'starbuck', 'offic', 'nice'], ['success', 'luca', 'first', 'polic', 'contact', 'neighborhood', 'cruis', 'egg', 'cream', 'bumf', 'shave', 'foam', 'love', 'son', 'hero'], ['excit', 'taylor', 'swift', 'wednesday'], ['mile', 'go', 'ok', 'radio', 'alwa', 'help'], ['hehe', 'almost', 'hear', 'right', 'ear', 'yet'], ['done', 'thank'], ['stay', 'home', 'badass'], ['laav'], ['feel', 'great'], ['thank'], ['got', 'confirm', 'ex', 'forward'], ['goodmorn'], ['omg', 'almost', 'done', 'last', 'block', 'quilt', 'hour', 'work', 'left', 'not', 'wait', 'meet', 'goal'], ['main', 'event', 'not', 'happen', 'yet', 'well', 'far'], ['whahahah', 'thank'], ['interest', 'combin', 'great', 'one'], ['everi', 'kiss', 'give', 'give', 'three'], ['time', 'school', 'feelin', 'good', 'jog', 'good'], ['someday', 'soon', 'get', 'one'], ['back', 'school', 'feel', 'like', 'go', 'great', 'day'], ['wish', 'joe', 'bidden', 'train'], ['alreadi', 'got', 'ticket', 'concert', 'philippin', 'excit'], ['today', 'mother', 'happi', 'birthday', 'amp', 'love', 'angel', 'help', 'much', 'time', 'life'], ['dawg', 'thank', 'much'], ['come', 'estonia', 'know', 'epic', 'hors', 'hehe', 'good', 'trainer', 'good', 'beach', 'ride'], ['go', 'school', 'actual', 'not', 'tire', 'today', 'though'], ['congratul', 'mileston', 'girl', 'almost', 'five', 'month', 'one', 'though', 'rock'], ['funni'], ['love', 'pour', 'rain', 'still', 'want', 'go'], ['watch', 'tini', 'nephew', 'perfect', 'babi'], ['great', 'hope', 'studi', 'bff', 'live', 'togeth', 'see'], ['sorri'], ['caladesi', 'definit', 'nice', 'peac', 'way', 'spend', 'sunday', 'got', 'lil', 'tan'], ['yes', 'pleas', 'check', 'posit', 'locat', 'map', 'ad'], ['think', 'relat', 'size', 'depend', 'structur', 'system', 'hard', 'relay', 'tweet', 'worth', 'question'], ['not', 'follow', 'dream', 'chase', 'richard', 'dumb', 'think', 'smart'], ['excit', 'week', 'tri', 'product', 'monday', 'tri', 'hard'], ['not', 'love', 'quot', 'buttefli', 'stomach', 'quot', 'feel', 'ano', 'man', 'yun', 'kaya', 'mo', 'yan'], ['thank'], ['hook', 'rian', 'van', 'staden', 'twitter', 'much', 'better', 'cook', 'may', 'concret', 'suggest'], ['wait', 'wind', 'hair', 'would', 'would', 'never', 'break', 'law', 'never'], ['thank', 'link', 'love', 'yesterday', 'way'], ['not', 'heard', 'anyth', 'negat', 'yet', 'former', 'manag', 'use', 'tell', 'quiet', 'happi'], ['could', 'use', 'tutori', 'amp', 'resourc', 'perfect', 'twitter', 'background', 'design'], ['hello', 'new', 'follow', 'haha', 'ya'], ['good', 'morn'], ['love', 'book', 'vw', 'turn', 'name', 'scout'], ['oh', 'bad', 'made', 'mistak', 'still', 'manag', 'pass', 'though', 'mayb', 'not', 'bad', 'think'], ['thank', 'teflon', 'liver', 'scottish', 'rais', 'whiski'], ['good', 'morn', 'rock', 'star', 'nurs'], ['success', 'defeat', 'swine', 'flue', 'power', 'posit', 'think', 'swineflu', 'swine', 'flu'], ['sure', 'would', 'make', 'koon', 'happi'], ['funni'], ['good', 'break', 'digit', 'yet'], ['amaz', 'concert', 'citi', 'everyth', 'realli', 'awesom', 'trip'], ['absolut', 'amaz', 'wolverin', 'soo', 'beauti', 'also', 'amaz', 'person', 'look'], ['love', 'new', 'avatar'], ['yum', 'mickeyd', 'eggmcmuffin', 'mcyum'], ['congrat', 'quot', 'mine', 'bird', 'quot', 'underdog', 'kick', 'crap', 'runner', 'yesterday', 'love', 'see', 'happen'], ['sure', 'hope'], ['stop', 'today', 'wish', 'luck', 'overload', 'first'], ['lol'], ['fun', 'friend', 'hous', 'cuz', 'know', 'not', 'yard', 'big', 'enough', 'firepit', 'sniffl'], ['oh', 'sure', 'thank'], ['aww', 'know', 'never', 'thank', 'count', 'love', 'ya', 'boo'], ['not', 'believ', 'alreadi', 'monday', 'weekend', 'went', 'soo', 'fast', 'keep', 'finger', 'cross'], ['bought', 'attic', 'eden', 'madina', 'lake', 'total', 'amaz'], ['haha', 'realis', 'sound', 'lot', 'like', 'stellaa', 'lol', 'anyhoo', 'got', 'facebook', 'messag', 'start', 'work', 'soon', 'hope'], ['movi', 'awesom', 'wish', 'could', 'pistol', 'like', 'agent', 'not', 'want', 'think', 'gambit'], ['funni', 'not', 'even', 'know'], ['turkey', 'leg', 'not', 'believ'], ['new', 'babi', 'excit', 'congrat', 'advanc'], ['yess', 'came', 'amsterdam', 'april', 'best', 'night', 'everr'], ['receiv', 'first', 'bit', 'spam', 'twitter', 'not', 'sure', 'feel', 'quot', 'sanctiti', 'quot', 'convers', 'taint'], ['get', 'readi', 'dayi', 'hope', 'work', 'goe', 'good'], ['fun', 'hon', 'ooh', 'look', 'poet'], ['woke', 'late', 'amp', 'tri', 'get', 'sh', 'done', 'work'], ['next', 'thing', 'tomorrow', 'morn', 'temperatur', 'check', 'go', 'routin', 'till', 'swine', 'flu', 'die', 'good', 'night', 'everyon'], ['style', 'might', 'work'], ['nerdi', 'found', 'star', 'war', 'day', 'today', 'love'], ['slam', 'spam', 'follow', 'today', 'attract', 'get', 'life', 'peopl'], ['go', 'great', 'product', 'week', 'feel', 'posit', 'think', 'key'], ['happi', 'star', 'war', 'day', 'unbeliev'], ['happi', 'judday'], ['good', 'morn', 'welcom', 'new', 'follow'], ['glad', 'know', 'ad', 'display', 'problem', 'due', 'firewal', 'config', 'yr', 'offic', 'phew'], ['oohh', 'go', 'need', 'get', 'soon', 'possibl', 'love'], ['ake', 'work', 'not', 'laze', 'home', 'sunni', 'bank', 'holiday'], ['bodi', 'ach', 'bare', 'worth', 'champ'], ['thank', 'nice', 'blog', 'post', 'howev', 'given', 'cred', 'sinc', 'done', 'least', 'half', 'work'], ['follow', 'ellen', 'oprah', 'honor'], ['morn', 'tweepl'], ['good', 'morn', 'twit', 'let', 'us', 'make', 'today', 'better', 'one', 'start', 'runnin'], ['serio', 'barroca', 'paraben', 'may'], ['yeah', 'know', 'hun', 'spammer', 'seem', 'move', 'fast', 'though', 'alreadi', 'two', 'first', 'minut', 'post', 'block'], ['thank'], ['excit', 'look', 'forward', 'pic', 'facebook', 'xx'], ['thank', 'laura'], ['gettin', 'readi', 'hit', 'mall', 'mom', 'amp', 'jayden', 'thing'], ['lurve'], ['true', 'discret', 'nice', 'also', 'help', 'far', 'not', 'turn'], ['detroit', 'week', 'not', 'horror', 'horror'], ['shope', 'till', 'drop', 'day'], ['thank', 'prove', 'point'], ['year', 'month', 'hoorah', 'not', 'wait'], ['problem', 'free', 'atleast', 'alreadi', 'said', 'person', 'truth'], ['domina', 'sun', 'girl', 'think', 'fit', 'better'], ['chees', 'onion', 'vinegar', 'tast', 'weird', 'crisp', 'england', 'got', 'load', 'weird', 'crisp', 'flavorus', 'lol', 'like', 'x'], ['sure', 'entir', 'blogrol', 'terribl', 'updat', 'could', 'motiv', 'updat', 'redo'], ['hi', 'godd', 'day', 'eweryon', 'reel', 'good', 'mood', 'day'], ['ikr', 'mom', 'got', 'birthday', 'year', 'ago', 'best'], ['morn', 'warner', 'soon', 'lot', 'go', 'school', 'work', 'hope', 'everyon', 'great', 'day'], ['get', 'readi', 'today', 'happi', 'awesom', 'day'], ['sure', 'mayor', 'brainard', 'thrill', 'hear', 'fan'], ['thank', 'much', 'retweet', 'x'], ['let', 'us', 'continu', 'product', 'today'], ['liam', 'peed', 'potti'], ['good', 'mix', 'develop', 'content', 'develop', 'provid', 'ventur', 'folk'], ['pop', 'cultur', 'beauti', 'also', 'not', 'pull', 'weed', 'wrong', 'promis', 'practic', 'yard', 'nervous'], ['thank'], ['silli'], ['go', 'show', 'amsterdam', 'not', 'wait'], ['littl', 'one', 'cast', 'take', 'beat', 'start', 'show', 'wear', 'tear', 'less', 'week', 'activ'], ['skip', 'school', 'like', 'cool', 'kid'], ['press', 'ignor', 'button'], ['thing', 'anybodi', 'cover', 'dave', 'haha', 'not', 'like', 'peopl', 'mess', 'perfect', 'music'], ['aah', 'see', 'prez', 'obama', 'hold', 'hand', 'wifey', 'soo', 'romant', 'even', 'white', 'hous'], ['cool', 'np', 'got', 'work', 'seri', 'design'], ['happi', 'birthday', 'corey'], ['wow', 'cool'], ['glad', 'happi'], ['shld', 'say', 'great', 'phone'], ['quaterfin', 'chariti', 'footbal', 'tournament', 'penalti', 'save', 'sent', 'us'], ['pleas', 'pleas', 'pleas', 'pleas', 'let', 'match', 'cancel', 'today', 'pleas'], ['dude', 'alway', 'think', 'thing', 'get', 'worst'], ['love', 'hot', 'weather', 'forecast', 'rest', 'week', 'summer', 'almost', 'heer'], ['good', 'morn', 'world', 'happi', 'star', 'war', 'day', 'may'], ['love', 'love', 'nice'], ['hey', 'morn', 'wussup', 'tell', 'wut', 'mind'], ['thank'], ['somehow', 'alarm', 'becam', 'hour', 'fast', 'came', 'realiz', 'leav', 'hous', 'feel', 'good', 'earli', 'start'], ['like'], ['done', 'photo', 'album', 'good', 'person', 'make', 'quit', 'privat', 'piti', 'ben', 'haha'], ['whoo', 'hoo', 'chuck', 'although', 'gloomi', 'today', 'much', 'better', 'day'], ['watch', 'show', 'miss', 'ellipit', 'love'], ['hey', 'bye', 'bye', 'fun', 'robluket', 'live', 'gt'], ['follow', 'congrat'], ['thank'], ['two', 'month', 'someth', 'kinf', 'prom', 'realli', 'excit', 'not', 'contact'], ['smooch', 'well', 'great', 'day'], ['oh', 'wow', 'realli', 'good', 'think', 'go', 'use', 'one', 'lol'], ['least', 'done'], ['hear', 'song', 'brighten', 'someon', 'day', 'alway', 'make', 'grin'], ['yeahh', 'got', 'plenti', 'great', 'fan', 'spain', 'come', 'play', 'gig'], ['well', 'use', 'tweet', 'push', 'make', 'go', 'shop', 'time', 'back', 'hope'], ['proud', 'love', 'carpent'], ['despit', 'rain', 'fantast', 'day'], ['damn', 'must', 'morrison'], ['thank'], ['wow', 'sleep', 'eye', 'open', 'amaz', 'lie'], ['hey', 'ladi', 'come', 'canada', 'fall', 'would', 'love', 'see', 'concert', 'time', 'time'], ['sinc', 'travel', 'quit', 'often', 'use', 'onlin', 'travel', 'site', 'would', 'love', 'feedback'], ['thank', 'follow'], ['thank', 'hope', 'good', 'one'], ['def', 'chees', 'onion', 'howev', 'back', 'state', 'month', 'find', 'bag', 'salt', 'amp', 'tast', 'great'], ['go', 'workout', 'swin', 'fun'], ['glad', 'hear', 'without', 'would', 'renam', 'show', 'quot', 'friend', 'quot'], ['great', 'weekend', 'good', 'mood', 'not', 'even', 'mind', 'work', 'morn'], ['hey', 'song', 'would', 'like', 'listen'], ['ok', 'tweet', 'use', 'simpli', 'say', 'quot', 'thank', 'quot', 'met', 'peopl', 'twitter'], ['haha', 'also', 'look', 'amaz', 'fun'], ['welcom', 'beauti', 'snow', 'leopard'], ['let', 'know', 'goe', 'babe', 'good', 'luck'], ['big', 'hug'], ['tranc', 'awesom', 'work', 'danc'], ['arch', 'draw', 'check', 'mvcc', 'cad', 'degre', 'look', 'good'], ['put', 'new', 'consult', 'work', 'week', 'good', 'feel', 'congrat', 'offer'], ['true', 'dirti', 'thought', 'lol', 'well', 'also', 'dude', 'huh', 'xoxo'], ['leav', 'facebook', 'alon', 'weekend', 'get', 'new', 'notif', 'whew'], ['amaz', 'heck', 'quot', 'internet', 'thing', 'quot'], ['leav', 'communiti', 'colleg', 'bang'], ['get', 'dms', 'ask', 'fell', 'past', 'day', 'sick', 'better', 'appreci', 'concern', 'game'], ['know', 'mean', 'littl', 'dog', 'sink', 'depress', 'want', 'move', 'someplac', 'tropic'], ['big', 'thank', 'melodi', 'got', 'love', 'vit'], ['might', 'enjoy', 'one'], ['thank', 'mascara', 'input', 'appreci'], ['oh', 'yeah', 'camera', 'clip', 'problem', 'void', 'complet', 'fix', 'yay', 'fiddl'], ['oh', 'nice', 'go'], ['welcom'], ['imagin', 'know', 'love', 'hear', 'novel', 'kind', 'awak', 'lol', 'continu', 'hope'], ['sure', 'continu', 'tweet', 'conf', 'call', 'worri', 'cat', 'bee'], ['let', 'us', 'get', 'rich', 'give', 'everyon', 'nice', 'sweater', 'teach', 'danc'], ['morn', 'workout', 'sesh', 'love', 'life'], ['gray', 'hat', 'python', 'book', 'remind', 'mani', 'secur', 'tool', 'python', 'version', 'specif', 'pain', 'need', 'use'], ['yeah', 'like', 'purpl', 'mayb', 'p'], ['happi', 'morn', 'sunshin', 'may', 'drive', 'window', 'sing', 'smile', 'not', 'wear', 'shoe', 'kirsten'], ['yay'], ['need', 'huge', 'favor', 'love', 'anticip', 'text'], ['splinter', 'look', 'heroic', 'save', 'pickl'], ['go', 'go', 'work', 'honey', 'today', 'excit'], ['think', 'new', 'oh', 'yes', 'way', 'bankrol', 'stay', 'bit', 'yesterday', 'not', 'whine', 'bad', 'beat'], ['like', 'last', 'part', 'methodolog'], ['cat', 'gone'], ['rest', 'import', 'like', 'everyth', 'els', 'not'], ['ha', 'ha', 'game', 'like', 'game'], ['hope', 'mani', 'new', 'follow', 'around', 'sydney', 'australia', 'welcom', 'tweet', 'anyway'], ['heyi', 'final', 'got', 'one', 'oh', 'good', 'luck', 'final', 'today'], ['yep', 'three', 'thing', 'good', 'haircut', 'abil', 'listen', 'valu', 'not', 'take', 'serious'], ['hear', 'barley', 'keep', 'follow', 'current', 'tuff', 'mobil', 'devic'], ['appli', 'part', 'time', 'job', 'lmao', 'hope', 'someon', 'need', 'help'], ['look', 'forward', 'short', 'work', 'week', 'follow', 'clemson'], ['thank'], ['intel', 'gfx', 'driver', 'situat', 'much', 'better', 'recent', 'upgrad', 'kernel', 'driver', 'git', 'suspend', 'work', 'fewer', 'mem', 'leak'], ['thankyou'], ['use', 'extern', 'track', 'ball', 'laptop', 'seem', 'excess', 'total', 'effici'], ['lol', 'good', 'know', 'time', 'la', 'time', 'differ', 'good', 'morn', 'ya'], ['love', 'watch', 'yt', 'video', 'realli', 'look', 'forward', 'see', 'collect', 'vid'], ['use', 'love', 'knew', 'would', 'quot', 'experi', 'quot', 'last', 'night'], ['thank', 'everyon', 'pray', 'presid', 'aquino'], ['riot'], ['nobobi', 'behind', 'think', 'lead', 'far'], ['good', 'morn', 'hope', 'everyon', 'well', 'monday', 'thank', 'followfriday', 'reco', 'bless'], ['world', 'amaz'], ['enjoy', 'nola', 'definit', 'one', 'favorit', 'citi', 'world', 'pleas', 'beignet', 'chocol'], ['thank', 'followfriday', 'recommend', 'actual', 'though'], ['realli', 'come', 'ireland', 'time', 'love', 'lt'], ['see', 'hannah', 'klein', 'lookin', 'good', 'today'], ['good', 'morn', 'everyon'], ['not', 'bore', 'realli', 'redd', 'convers', 'love', 'convers'], ['safe', 'flight'], ['yes', 'everybodi', 'love', 'german', 'fan', 'follow'], ['pub', 'lunch', 'go', 'daughter', 'tea', 'life', 'good'], ['would', 'realli', 'hard', 'give', 'chocol', 'read', 'chocol', 'count', 'food'], ['briliant', 'may', 'fourth', 'starwarsday', 'starwar'], ['love', 'comment', 'flashcad', 'old', 'school'], ['ad', 'minut', 'morn', 'sleep', 'cut', 'useless', 'today', 'show', 'feel', 'nice'], ['love', 'latest', 'journal', 'final', 'join', 'twitter', 'came', 'say', 'hi'], ['good', 'morn', 'swedish', 'friend', 'love', 'meat', 'ball', 'haha'], ['happi', 'star', 'war', 'day'], ['thrill', 'time', 'das', 'joyrid', 'roadtrip', 'nice', 'drive', 'pai', 'paulo'], ['thank', 'well', 'impress', 'much', 'better', 'last', 'one', 'must', 'b', 'clean', 'live', 'gluten', 'free', 'lactos', 'free', 'food'], ['honor'], ['inspir', 'blog', 'someth', 'inspir', 'haha'], ['beauti', 'morn', 'mountain'], ['hey', 'pretti', 'good', 'suck', 'daughter', 'exact', 'glad', 'see', 'not', 'alon', 'good', 'luck', 'mom'], ['goodmorn'], ['oh', 'not', 'seem', 'age', 'got', 'watch', 'soon', 'thank', 'remind'], ['made', 'day'], ['subway', 'go', 'get', 'subway', 'love', 'ate', 'often', 'new', 'zealand'], ['happiest', 'birthday', 'kat'], ['come', 'home', 'not', 'bore'], ['window', 'open', 'not', 'cold', 'ahahah'], ['not', 'know', 'yet', 'would', 'love', 'though', 'keep', 'miss', 'time', 'reason', 'amp', 'fun'], ['beati', 'eye', 'want'], ['hell', 'itun', 'music', 'librari', 'even', 'bipolar'], ['upload', 'photo', 'like', 'true'], ['glad', 'hear', 'good', 'bank', 'holiday', 'weather'], ['pilot', 'babi', 'burnin', 'not', 'stress', 'much', 'line', 'work'], ['not', 'worri', 'though', 'fine'], ['thank', 'rememb'], ['good', 'hope', 'wonder', 'experi'], ['kind', 'sleepi', 'late', 'text', 'nice', 'boy', 'make', 'date', 'plan', 'next', 'weekend'], ['agre', 'danc', 'dad', 'quot', 'kind', 'amp', 'generous', 'quot', 'wed', 'huge', 'fan'], ['definit', 'not', 'offend', 'mess', 'around', 'various', 'twitter', 'app', 'strang', 'thing', 'keep', 'happen'], ['back', 'aot', 'last', 'lec', 'alot', 'question', 'mark', 'head', 'thank', 'god', 'tip', 'abl', 'pull', 'tru'], ['thank', 'almost'], ['yes'], ['time', 'get', 'educ', 'hope', 'great', 'start', 'monday', 'morn'], ['lol', 'vat', 'insid'], ['go', 'girl', 'start', 'day', 'love'], ['ok', 'love', 'big', 'buff', 'tatto', 'prefer', 'christian', 'men', 'dog', 'option'], ['not', 'problem', 'love', 'idea', 'cours', 'photo', 'perfect'], ['man', 'great', 'sens', 'humour', 'venki', 'pachad'], ['etherr', 'main', 'preoccup', 'etherr', 'preoccup', 'humm', 'schizophren'], ['sound', 'pretti', 'sweet', 'must', 'love', 'yeah', 'man', 'sound', 'cool', 'keen'], ['heyheyheyi', 'happi', 'star', 'war', 'day', 'watcha', 'doin', 'friday', 'movi'], ['lt', 'ryan', 'babi', 'iloveyopu', 'xx', 'lt', 'day', 'kayleigh', 'babi', 'lymz', 'cntt', 'waiit'], ['yo', 'wake', 'ass', 'go', 'work', 'go', 'get', 'paper', 'not', 'sick', 'not', 'lie'], ['havin', 'fun', 'x', 'way', 'not', 'bowl', 'x', 'xx'], ['happi', 'star', 'war', 'dayi', 'hbd', 'uncl', 'lee'], ['omg', 'know', 'give', 'stroke', 'everytim', 'go', 'get', 'mad', 'quiet', 'window', 'roll'], ['school', 'blagh', 'yay', 'get', 'iphon', 'august'], ['amaz', 'jockey', 'saw', 'clydesdal', 'commerci'], ['great', 'found', 'star', 'war', 'day', 'quot', 'may', 'quot', 'hug', 'ewok', 'today'], ['good', 'morn', 'tweeti', 'today', 'rest', 'richmond', 'readi', 'hit', 'beach'], ['thank', 'like', 'said', 'facebook', 'made', 'awesom', 'happi', 'thank'], ['yes', 'hope', 'show', 'promot', 'clean', 'lol', 'bella'], ['new', 'implement', 'test', 'discoveri', 'unittest', 'time', 'loader', 'good', 'start', 'think'], ['chemistri', 'go', 'choos', 'english', 'find', 'chem', 'kind', 'bore', 'end', 'go', 'help', 'peopl', 'lt', 'choos', 'chem', 'gt'], ['shower', 'class', 'class', 'take', 'care', 'write', 'like', 'tomorrow'], ['well', 'hope', 'rest', 'day', 'get', 'better'], ['love', 'cute', 'texi', 'messag', 'especi', 'call', 'mandi'], ['not', 'believ', 'would', 'believ', 'horizon', 'chill', 'goe', 'spine', 'whenev', 'hear', 'line'], ['watch', 'quot', 'king', 'men', 'quot', 'pretti', 'good', 'far'], ['need', 'simpl'], ['morn', 'happi', 'judday'], ['good', 'atmo', 'decid', 'stay', 'til', 'close', 'funni'], ['well', 'impress', 'technic', 'skillz'], ['whoa', 'hahaha', 'wee', 'go', 'bit', 'watch', 'hugh', 'jackman', 'interview', 'oprah'], ['wish', 'could', 'come', 'hour', 'dream', 'meet', 'xoxo'], ['commish', 'day', 'atl', 'fam', 'saw', 'updat', 'websit', 'look', 'awesom'], ['hey', 'perez', 'good', 'luck', 'well', 'still', 'plan', 'big', 'present', 'given', 'mom', 'love', 'mom'], ['want', 'go', 'see', 'edinburgh', 'not', 'happen', 'though', 'haha', 'yir', 'lucki', 'funn', 'xx'], ['thank', 'know'], ['hahahah', 'cours', 'nasti', 'display', 'pictur'], ['thank', 'glad', 'like'], ['goodd', 'morn', 'tweet', 'week', 'three', 'workout', 'mention', 'got', 'new', 'glass', 'yesterday'], ['not', 'know', 'hyper', 'jump', 'everyher', 'ugh', 'let', 'us', 'let', 'friday', 'sweeney', 'todd', 'cinco', 'de', 'mayo', 'il', 'parti'], ['friend', 'someon', 'help', 'move', 'real', 'friend', 'someon', 'help', 'move', 'bodi'], ['least', 'top', 'magic', 'happen', 'today', 'good', 'day', 'worri'], ['great', 'thank', 'hun', 'thr', 'famili', 'thing', 'wknd', 'week', 'today', 'hit', 'usa', 'not', 'wait'], ['love', 'stereosound', 'hq', 'headphon'], ['feel', 'esp', 'know', 'not', 'done', 'wrong', 'lt'], ['cultur', 'day', 'love', 'tell', 'graf', 'cultur', 'studi'], ['haul', 'slideshow', 'fun'], ['whin', 'park', 'swing', 'victori', 'mine', 'right'], ['glad', 'hear', 'busi', 'day', 'today'], ['thank', 'realli', 'fun', 'love', 'though', 'one', 'could', 'use', 'comedi', 'go'], ['well', 'la', 'decent', 'weather', 'tell', 'happen', 'futur'], ['realli', 'awesom', 'love', 'work', 'buckhead', 'church', 'love', 'around'], ['man', 'monday', 'suck', 'would', 'not', 'give', 'rich', 'beach', 'bum', 'dive', 'tropic', 'lagoon', 'everi', 'day', 'eat', 'fresh', 'fruit'], ['good', 'morn', 'tweeter', 'happi', 'monday', 'grab', 'big', 'cup', 'coffe', 'new', 'week'], ['great', 'social', 'network', 'site', 'still', 'grow'], ['aw', 'thank', 'suppos', 'good', 'thing', 'sinc', 'mean', 'tweet'], ['amtarot', 'thank', 'much'], ['yeah', 'truee', 'not', 'wait', 'till', 'tour', 'dvd', 'come', 'tour', 'epic', 'backstag', 'materi', 'hilari'], ['thing', 'twitter', 'could', 'without', 'src', 'like', 'guy'], ['good', 'morn', 'scari', 'world'], ['love', 'find', 'lot', 'easier', 'content', 'spotifi', 'add', 'like'], ['welcom', 'ad', 'alreadi'], ['kewl', 'sound', 'good', 'wait', 'thank'], ['one', 'favorit', 'relax', 'song', 'wake', 'good', 'morn'], ['listen', 'miley', 'cyrus', 'breakout', 'cd', 'love'], ['lebron', 'mayb', 'mvp', 'year', 'like', 'laker', 'win', 'nba', 'titl'], ['love', 'agustin', 'happi', 'morn', 'mood'], ['scare'], ['thank', 'sankar', 'wish'], ['start', 'brinn', 'guess', 'get', 'laptop', 'back', 'not', 'use', 'messeng', 'hate'], ['work', 'ass', 'complet', 'happi'], ['cool', 'would', 'fantast'], ['john', 'lennon', 'poster', 'inner', 'fan', 'girl', 'danc', 'joy'], ['beardburk', 'optimist'], ['yes', 'repriev', 'one', 'paper', 'push', 'back', 'friday', 'leav', 'three', 'page', 'due', 'not', 'even', 'problem'], ['nail', 'webconcept', 'zone', 'award'], ['booziest', 'weekend', 'long', 'time', 'good', 'fun', 'though'], ['sure', 'hope', 'great', 'morn'], ['sql', 'queri', 'display', 'one', 'singl', 'deal', 'page', 'ozbargain', 'look', 'like', 'fun', 'optimis', 'bad', 'bad', 'drupal'], ['not', 'deal', 'tweet', 'lol'], ['not', 'work', 'drop', 'line', 'would', 'love', 'talk'], ['hey', 'thank', 'follow', 'wow', 'excit', 'new', 'tweet'], ['short', 'usual', 'awesom'], ['back', 'weekend', 'work', 'yard', 'not', 'open', 'laptop', 'thank'], ['thanx', 'showin', 'love'], ['right', 'not', 'worri'], ['thank'], ['today', 'got', 'pop', 'amp', 'lovess', 'itt', 'haha', 'x'], ['love', 'profil', 'websit', 'neat', 'love', 'quot', 'gari', 'quot', 'ticker'], ['ahh', 'meet', 'thank', 'reimer'], ['lol', 'feel', 'like', 'drunk', 'right'], ['found', 'rollo', 'got', 'happi', 'hmm', 'guess', 'realli', 'need', 'insert', 'back', 'matrix'], ['get', 'readi', 'launch', 'podcast', 'chapter', 'quot', 'turn', 'left', 'albuquerqu', 'quot', 'morn', 'know', 'excit'], ['kind', 'help', 'need', 'machin', 'embroideri', 'may', 'bea', 'abl', 'help'], ['doubt', 'go'], ['hit', 'fair', 'empti', 'shop', 'orlando', 'downtown', 'disney', 'later'], ['yu', 'want', 'kill'], ['would', 'fun', 'date'], ['thank', 'love'], ['great', 'day'], ['son', 'play', 'pitcher', 'catcher', 'beauti', 'weather', 'past', 'weekend', 'basebal', 'exhaust'], ['danc', 'pirouett', 'ballerina', 'hug', 'morn', 'awesom', 'brudder'], ['thank', 'made', 'morn'], ['would', 'not', 'miss', 'world', 'iccvb', 'meet', 'fun', 'begin'], ['congrat'], ['super', 'tire', 'probabl', 'could', 'sleep', 'day', 'work', 'today', 'tool', 'rental', 'oh', 'joy'], ['thank', 'merrier'], ['thank'], ['work', 'work', 'work', 'final', 'not', 'sick', 'though'], ['look', 'forward', 'spend', 'time', 'mom', 'today'], ['wow', 'awesom', 'review', 'carri', 'everywher', 'lamin', 'read', 'plain', 'cool'], ['discrimin', 'not', 'bad', 'thing', 'learn', 'say', 'children', 'would', 'say', 'master', 'year', 'ago'], ['poetic', 'beauti'], ['momma', 'day', 'may', 'not', 'forget', 'someth', 'nice', 'mommyy'], ['read', 'anoth', 'ecolog', 'book', 'two', 'hour', 'good', 'fun', 'today'], ['cake', 'sure', 'look', 'good', 'one', 'ok', 'umm', 'good', 'tks'], ['philli', 'not', 'play', 'yet', 'someth', 'pleas'], ['welcom', 'kiddo', 'pictur', 'way', 'love', 'shade'], ['happi', 'birthday', 'mommi'], ['awesom', 'run', 'report', 'see', 'bald', 'eagl', 'lighthous', 'hangout', 'last', 'ran', 'discoveri', 'park'], ['good', 'morn'], ['haha', 'love', 'way', 'put', 'quot', 'lift', 'feet', 'ground', 'spin', 'us', 'around', 'make', 'us', 'crazier', 'quot'], ['thank', 'ponytail', 'dreamt', 'last', 'night', 'shave', 'head', 'guess', 'bigger', 'deal', 'thought'], ['check', 'song', 'quot', 'time', 'lose', 'quot', 'enjoy', 'promis'], ['chillin', 'wassup', 'ayo', 'cali', 'day', 'start', 'not', 'know', 'r', 'gud', 'day', 'ya', 'digg'], ['thank', 'much', 'nice', 'happi', 'hear', 'voic', 'realli', 'start', 'someth', 'good', 'xo'], ['wish', 'somewher', 'els', 'besid', 'not', 'worri', 'not', 'dampen', 'day', 'neither', 'rain'], ['total', 'got', 'think', 'awesom'], ['happi', 'nurs', 'week', 'first', 'one', 'right'], ['move', 'today', 'excit'], ['yeah', 'better', 'ad', 'make', 'look', 'part', 'content', 'rather', 'blatant', 'advert'], ['proud', 'cevich', 'bellini', 'turn', 'well', 'love', 'smell', 'fresh', 'flower', 'hous'], ['yes', 'not', 'wait', 'hope', 'vip', 'pass', 'help', 'sinc', 'peopl', 'alreadi', 'campin', 'hahah'], ['not', 'good', 'day', 'cheer', 'tweet', 'even', 'tink', 'lol'], ['cn', 'gt', 'twit', 'frm', 'pls', 'hva', 'shw'], ['aww', 'snaap', 'jimmaayi', 'man', 'hookup', 'bad', 'far', 'away'], ['kid', 'not', 'eat', 'salad', 'get', 'crisp', 'salad', 'mr', 'make', 'bloodi'], ['soo', 'love', 'beyonc', 'song', 'quot', 'smash', 'quot'], ['hilari', 'act', 'say', 'littl', 'quot', 'gum', 'quot', 'gross', 'hub', 'say', 'torment'], ['mm', 'wasabi', 'coat', 'peanut', 'burn', 'good'], ['realli', 'feel', 'special'], ['um', 'happi', 'star', 'war', 'day', 'way', 'cheer', 'scruffi', 'look', 'nerfherd', 'hot', 'ami'], ['thank', 'everybodi', 'wonder', 'feedback', 'happilett'], ['happi', 'star', 'war', 'day', 'everyon', 'may', 'forc', 'padawan', 'jedi'], ['welcom', 'hun', 'amaz', 'peopl', 'make', 'sure', 'say', 'hello'], ['evid', 'convict', 'absolut', 'hilari', 'make', 'day', 'everi', 'time'], ['love', 'jeff', 'lynn', 'enjoy', 'sitar', 'work', 'kind', 'weird'], ['call', 'later', 'tell', 'weekend', 'easier', 'phone'], ['depend', 'goal', 'amp', 'much', 'want', 'spend', 'cannondal', 'special', 'cervelo', 'good', 'brand'], ['f', 'kin', 'great', 'day', 'graham', 'not'], ['serious', 'guy', 'kick', 'monday', 'starwarswithaddedp', 'spam', 'realli'], ['silli'], ['seat', 'nice', 'place', 'go'], ['haiszt', 'offic', 'noth', 'tweet', 'haha', 'fun'], ['not', 'wait', 'home', 'snuggl', 'puppi', 'fianc'], ['happi', 'keve', 'earli', 'mother', 'day', 'let', 'us', 'quiet', 'drove', 'night', 'sleep'], ['goosh', 'someon', 'pay', 'lastfm', 'subscript'], ['listen', 'quot', 'la', 'la', 'land', 'quot', 'love'], ['whoo', 'hoo', 'congrat', 'get'], ['okay', 'yesterday', 'good', 'went', 'food', 'shop', 'cook', 'chicken', 'taco', 'bake', 'cooki', 'back', 'work'], ['mani', 'spent', 'good', 'hour', 'organ'], ['also', 'travel', 'backpack', 'hope', 'enjoy', 'pic', 'amp', 'video'], ['finish', 'first', 'workout', 'jillian', 'michael', 'make', 'cut', 'program', 'feel', 'great', 'hope', 'eat', 'good'], ['make', 'sure', 'practic', 'hoop', 'today'], ['appl', 'done', 'impress', 'thing', 'almost', 'year', 'old', 'macbook', 'except', 'pour', 'coffe', 'keyboard'], ['not', 'excus', 'night', 'shift', 'got', 'orphan', 'lamb', 'local', 'farmer', 'cheat'], ['thank', 'yes', 'sudden', 'downpour', 'seem', 'rather', 'freakish', 'realli', 'end', 'summer', 'philippin'], ['aww', 'sorri', 'hear', 'bad', 'time', 'rememb', 'shall', 'pass'], ['pick', 'copi', 'print', 'brochur', 'bwrc', 'excit'], ['amaz', 'dvds', 'put', 'netflix', 'list', 'base', 'trash', 'potenti', 'inher', 'titl'], ['happi', 'star', 'war', 'day', 'week'], ['wake', 'go', 'great', 'day', 'today', 'see', 'not', 'sore', 'run', 'yesterday'], ['mayb', 'get', 'coffe', 'machin', 'new', 'desk', 'seem', 'appropri'], ['cherri', 'italian', 'ice', 'fave', 'want', 'get', 'local', 'rita', 'twitter', 'send', 'daili', 'flavor'], ['haha', 'may', 'hehe', 'might', 'import', 'love', 'heat', 'love', 'play', 'footbal', 'hot', 'day'], ['great', 'idea'], ['nobodi', 'better', 'not', 'even', 'half', 'good'], ['goe', 'first', 'twitter', 'twitterberri', 'applic', 'blackberri', 'bold', 'cheer', 'long', 'live', 'smr'], ['like'], ['soo', 'scari', 'care', 'one', 'kirsti'], ['good', 'thank', 'sorri', 'lil', 'busi', 'moment'], ['yeah', 'plan', 'actual', 'got', 'kinokuniya', 'discount', 'card', 'go', 'splurg', 'worri', 'overwhelm'], ['definit', 'senior', 'go', 'chem', 'ii', 'calculus', 'not', 'good', 'class', 'feel', 'like', 'slackin'], ['got', 'jagk', 'shirt', 'mail', 'omg', 'love', 'see', 'saturday'], ['fuck', 'awesom', 'bookmark'], ['enjoy', 'night', 'folk'], ['go', 'beauti', 'day'], ['grandbabi', 'today', 'month', 'old', 'twin', 'month', 'infant', 'love', 'everi', 'minut'], ['ahh', 'yay', 'go', 'get'], ['kwl', 'nm', 'msn', 'nd', 'homework', 'went', 'c', 'hanna', 'montana', 'hte', 'movi', 'yesterday', 'xx', 'happi', 'mayday', 'way', 'xx'], ['thank', 'way', 'wonder', 'check', 'quot', 'fuel', 'quot', 'brand'], ['thank', 'nick', 'mean', 'lot', 'come', 'design', 'calib', 'symphonycm'], ['discov', 'numpi', 'array', 'hold', 'valu', 'type', 'use', 'manipul', 'array', 'number', 'uncertainti'], ['lamb', 'meet', 'fun', 'sunni', 'yay', 'play', 'hors', 'afternoon', 'clap', 'clap', 'clap'], ['oh', 'rain', 'haat', 'great', 'violin', 'lesson', 'lt'], ['start', 'alreadi', 'see', 'far', 'biggest', 'talker', 'er', 'mean', 'tweeter'], ['thank', 'funni', 'true'], ['great', 'mood', 'todayi', 'super', 'excit', 'game', 'tonight', 'not', 'excit', 'one', 'year', 'older', 'tomorrow'], ['umm', 'comment', 'like', 'p', 'quot', 'not', 'like', 'quot'], ['nice', 'yo', 'live', 'buddi'], ['yes', 'realli', 'back', 'could', 'not', 'wait', 'day', 'arriv', 'final', 'gale', 'back', 'pos'], ['tonight', 'northland', 'newscent', 'kick', 'week', 'long', 'look', 'great', 'summer', 'getaway', 'northland', 'not', 'miss'], ['whuahahhaha', 'need', 'cut', 'bram'], ['good', 'mornin', 'today', 'end', 'earli', 'woo', 'go', 'work', 'rick', 'surpris', 'project', 'due', 'tuesday'], ['love', 'half', 'even', 'day', 'orch', 'jazz', 'band', 'daddi'], ['wish', 'happi', 'monday', 'wonder', 'start', 'week', 'make', 'good', 'one'], ['good', 'attitud'], ['good', 'day', 'lake', 'mirror', 'kid', 'happi', 'get', 'clean', 'cabin', 'today', 'err', 'two', 'outta', 'three', 'not', 'bad'], ['glad', 'got', 'laugh'], ['thank', 'new', 'first', 'time', 'japa', 'dog', 'custom', 'twitter', 'spread', 'word', 'like', 'new', 'custom'], ['well', 'good', 'took', 'exam', 'think', 'good'], ['ohh', 'realli', 'want', 'see', 'coralin', 'seem', 'realli', 'good'], ['son', 'back', 'school', 'today', 'feel', 'much', 'better', 'not', 'not', 'stop', 'eat'], ['hi', 'everyon', 'hope', 'good', 'week'], ['play', 'eclectr', 'festiv', 'custard', 'factori', 'last', 'night', 'unreal', 'atmo', 'right', 'till', 'end', 'glad', 'play', 'last', 'set'], ['cheer', 'look', 'later', 'hope', 'get', 'sort'], ['love', 'thi', 'self', 'keep', 'simpl', 'learn', 'tai', 'chi', 'aim', 'today', 'beat', 'ankl', 'less', 'swollen', 'negoti', 'vacat'], ['day', 'new', 'begin'], ['ta', 'much', 'happi'], ['work', 'vacat', 'thailand', 'get', 'excit', 'everi', 'day'], ['good', 'luck', 'tonight', 'fun'], ['not', 'wait', 'defin', 'go', 'amaz', 'lt', 'michell'], ['littl', 'bit', 'good', 'news'], ['hi', 'susan', 'read', 'blog', 'realli', 'good', 'look', 'forward', 'tweet', 'updat'], ['obvious', 'not', 'bad'], ['case', 'one', 'gave', 'head', 'amp', 'put', 'iphon', 'app', 'account', 'manag', 'mywireless', 'would', 'love', 'see', 'review'], ['virus', 'hunt', 'comput', 'alway', 'wonder', 'destroy'], ['rain', 'make', 'good', 'studi', 'day', 'almost', 'done'], ['come', 'back', 'hors', 'ride', 'brilliant', 'day'], ['noth', 'sweeter'], ['relief', 'feel', 'better', 'know', 'hereditari', 'fun'], ['nice', 'meet', 'best', 'bring', 'along'], ['look', 'forward', 'new', 'album'], ['feel', 'realli', 'good', 'perform', 'ap', 'govern', 'amp', 'polit', 'exam', 'morn', 'go', 'lunch', 'krista'], ['weekend', 'start', 'quot', 'healthi', 'lifeestyl', 'quot', 'not', 'diet', 'let', 'us', 'see', 'goe', 'keep', 'ya', 'post', 'progress'], ['nice'], ['morn', 'hope', 'super'], ['need', 'get', 'intel', 'base', 'mac', 'impact', 'dual', 'core', 'vs', 'quad', 'choic', 'latter', 'probabl', 'better', 'virtual'], ['maddi', 'start', 'work', 'watch', 'world'], ['spell', 'name', 'alyson', 'ali', 'short', 'spell', 'best'], ['shanghai', 'also', 'realli', 'excit', 'precis', 'skyscrap', 'galor', 'good', 'tweep', 'china', 'sh', 'bj'], ['atm', 'oh', 'yeah', 'appl', 'juic', 'rebel'], ['haha', 'like', 'modern', 'studi', 'favourit', 'subject', 'haha', 'guess', 'not', 'feel', 'xx'], ['though', 'sound', 'bit', 'not', 'boiler'], ['ten', 'minut', 'shop', 'demi', 'around', 'demi', 'enemi', 'line', 'seen', 'titan', 'trailer', 'realli', 'good'], ['happi', 'star', 'war', 'day', 'may'], ['good', 'luck', 'final'], ['say', 'happi', 'mother', 'day', 'mom'], ['yikeyss', 'harmless', 'realli', 'want', 'attent', 'brodi'], ['aww', 'glad', 'know', 'littl', 'sweet', 'leigh', 'updat', 'howi'], ['haha', 'excit', 'wat', 'look', 'like'], ['honest', 'hate', 'said', 'peopl', 'sometim', 'sorri', 'makin', 'ass', 'anyon'], ['aww', 'thank'], ['think', 'sg', 'wonder'], ['watch', 'african', 'music', 'show', 'tele', 'love', 'itt'], ['seen', 'quot', 'fifth', 'element', 'quot', 'make', 'quot', 'super', 'green', 'quot', 'lot', 'funnier'], ['excel', 'chiang', 'mai', 'definit', 'possibl', 'next', 'vacat', 'stop', 'thank', 'info'], ['crazi', 'gone'], ['well', 'would', 'seem', 'enter', 'nine', 'individu', 'without', 'ein', 'accord', 'appl', 'hurray'], ['believ', 'creativ', 'cook', 'limit', 'imagin', 'guess', 'appli', 'thing', 'like', 'photographi'], ['aliv', 'go', 'make', 'cri', 'stuff'], ['haha', 'bore', 'think', 'go', 'watch', 'movi', 'bbl'], ['saw', 'yesterday', 'pretti', 'good'], ['think', 'time', 'bed', 'good', 'night', 'twitt'], ['well', 'feed', 'other', 'main', 'shade', 'love', 'nativ', 'wildflow'], ['good', 'know', 'bet', 'look', 'like'], ['know', 'would', 'love', 'see', 'lie', 'editor', 'believ', 'writer', 'justsayin'], ['miss', 'not', 'far'], ['zapato', 'trashcan', 'nacho', 'epic', 'night'], ['well', 'know', 'quot', 'kind', 'guy', 'quot', 'idiot'], ['love', 'great', 'job'], ['aww', 'wonder', 'get', 'marri', 'shawna', 'damon', 'cute'], ['mother', 'day', 'classic', 'went', 'realli', 'well', 'despit', 'cold', 'start'], ['thank'], ['dammit', 'guess', 'babi', 'daddi', 'impostor', 'kid', 'kid'], ['welcom', 'love', 'review', 'free', 'app', 'much'], ['got', 'home', 'dinner', 'realli', 'realli', 'full', 'mom', 'said', 'dad', 'bought', 'soni', 'holyy'], ['great', 'song'], ['compiment', 'glad', 'good', 'time'], ['yes', 'win'], ['high', 'amus', 'not', 'treat', 'nice', 'like', 'fault', 'life', 'better'], ['laugh', 'like', 'win'], ['go', 'take', 'good', 'care', 'littl', 'babi', 'go', 'strong', 'boy', 'sure'], ['look', 'class', 'water', 'splash', 'look', 'real', 'look', 'forward', 'review', 'copi'], ['aww', 'ya', 'not', 'show', 'us', 'mum', 'proud', 'kid', 'let', 'everyon', 'know'], ['make', 'perfect', 'sens', 'guess', 'earth', 'thank', 'repli'], ['mere', 'fact', 'twitter', 'someon', 'read', 'matter', 'love', 'song', 'graviti'], ['alway', 'good', 'idea'], ['love', 'would', 'never', 'thought', 'icar', 'version', 'beani', 'babi', 'xd'], ['kind', 'noth', 'life', 'bore', 'feel', 'like', 'chang', 'look', 'let', 'us', 'go', 'shop', 'tomorrow'], ['get', 'right', 'think', 'obsess', 'hyde', 'voic', 'chosen', 'guitar', 'song', 'learn', 'summer', 'time', 'perfect', 'pick'], ['not', 'wait', 'daughtri', 'new', 'album', 'ack', 'two', 'month'], ['thank', 'much', 'everyon', 'came', 'speakeasi', 'last', 'night', 'hit', 'wonder', 'see', 'fun', 'june', 'awesom'], ['work', 'day', 'monday', 'tri', 'rememb', 'email', 'smart', 'remind'], ['time', 'get', 'purrtti', 'wink'], ['aaww', 'good', 'know', 'glad', 'jame', 'great', 'love', 'guy', 'kiss', 'venezuela'], ['well', 'suck', 'except', 'compani', 'go', 'kelli'], ['success', 'anoth', 'paper', 'demolish', 'rock', 'god', 'live', 'go', 'yes', 'celebr', 'awesom'], ['next', 'mother', 'day', 'favorit', 'day', 'year', 'one', 'day', 'not', 'feel', 'guilti', 'slack', 'littl', 'aahh'], ['tip', 'today', 'eagl', 'special', 'bronco', 'put', 'hous'], ['wow', 'fanci'], ['decid', 'myspace', 'wayi', 'better'], ['get', 'show', 'hotspot', 'not', 'kno', 'come', 'shoppin', 'lol'], ['hope', 'shatner', 'address', 'messag', 'philosoph', 'doom', 'stop', 'think'], ['thank'], ['watch', 'cav', 'game', 'lebron', 'jame', 'newest', 'love', 'pts', 'cav', 'lebron'], ['visual', 'smile', 'see'], ['color', 'thing', 'seen', 'day', 'wow'], ['photo', 'like', 'da', 'cooloorss', 'composit', 'great', 'scribkin'], ['get', 'work', 'day', 'hope', 'everyon', 'wonder', 'mother', 'day', 'tomorrow', 'hope', 'enjoy', 'cheesecak'], ['yes', 'youtub', 'may', 'made', 'feel', 'better', 'halari'], ['got', 'nap', 'relax', 'night'], ['well', 'thank', 'pleasur', 'shop', 'see', 'first', 'pic'], ['bought', 'good', 'chocol', 'magazin', 'later', 'play', 'comanch', 'good', 'saturday'], ['yeah', 'part', 'lab', 'part', 'spaniel', 'energi', 'hehe', 'love', 'death'], ['twitter', 'fam', 'hop', 'back', 'aim', 'went', 'ghost', 'lolz', 'sowwi'], ['boy', 'graduat', 'proud'], ['noth', 'good', 'tonight', 'anyway', 'sigjean'], ['went', 'shop', 'lil', 'deserv', 'night', 'town', 'big', 'citi', 'norfolk'], ['wish', 'see', 'clip', 'show', 'host', 'hotti', 'shawn', 'yes', 'still', 'hotti'], ['save', 'pix', 'today', 'show', 'pleas', 'credit', 'thank'], ['happi', 'earli', 'mother', 'day'], ['ha', 'ha', 'ha', 'know', 'love', 'love'], ['sometim', 'feel', 'pathet', 'go', 'bed', 'earli', 'oh', 'well', 'total', 'get', 'clam', 'chowder', 'tomorrow'], ['enjoy', 'view', 'sg', 'flyer'], ['ok', 'shop', 'far', 'fun', 'unpack', 'bag'], ['gooni', 'project', 'garag', 'door', 'friend', 'amaz'], ['world', 'happiest', 'place', 'denmark', 'finland', 'netherland'], ['happi', 'guy', 'congratul'], ['went', 'bought', 'conquer', 'came', 'back', 'delici', 'custard', 'croissant'], ['saw', 'hannah', 'montana', 'movi', 'today', 'best', 'awesome', 'hannah', 'miley', 'rock', 'lol'], ['awesom', 'glad', 'like', 'fyi', 'platinum', 'note', 'free', 'upgrad', 'summer'], ['dora', 'explor', 'greet', 'niec'], ['bbq', 'yum', 'full'], ['love', 'video', 'inspir', 'lesli', 'not', 'wait', 'new', 'album', 'still', 'rock', 'debut'], ['ok'], ['complet', 'forgot', 'mothersday', 'today', 'lol', 'happi', 'mothersday', 'beauti', 'mum'], ['glad', 'hear', 'made', 'hear', 'place', 'use', 'countri', 'look', 'forward', 'arriv'], ['nice', 'tweet'], ['sound', 'like', 'backstag', 'pass'], ['wow', 'look', 'incred', 'wick', 'job', 'butterfli', 'fantast'], ['pool', 'alcohol', 'amp', 'cute', 'band', 'could', 'not', 'ask', 'saturday', 'night', 'fb'], ['new', 'cd', 'love'], ['surpris', 'parti', 'today', 'parti', 'tomorrow', 'funfunfun', 'need', 'finish', 'bug', 'project'], ['happi', 'birthday', 'keshia', 'keshia', 'bo', 'beshia'], ['wow', 'noth', 'like', 'sale', 'perk', 'girl', 'even', 'huh'], ['aww', 'congrat', 'famili', 'send', 'picci', 'email'], ['thank'], ['first', 'session', 'yay'], ['hehe', 'hell', 'fix', 'qet', 'drankin', 'damnit'], ['whaat', 'thas', 'hot', 'b', 'super', 'nice'], ['omg', 'work'], ['omg', 'realli', 'good', 'want', 'see', 'photo', 'nice', 'day'], ['aww', 'cute', 'like', 'song', 'lot'], ['got', 'back', 'babi', 'sit', 'went', 'well'], ['recov', 'crazi', 'famili', 'love', 'not', 'got', 'see', 'coupl', 'time', 'year', 'guess', 'deal'], ['cook', 'breakfast', 'mom', 'happi'], ['not', 'lot', 'bore', 'name', 'crissi', 'way', 'lol', 'doinn'], ['amaz'], ['abl', 'watch', 'onlin', 'hope', 'yeah', 'belinda', 'jensen', 'realli', 'good'], ['congrat', 'bike', 'ride', 'today', 'impress', 'inde', 'ya', 'might', 'quot', 'tour', 'de', 'franc', 'quot', 'day'], ['hubbi', 'vet', 'anim', 'like', 'children', 'best', 'hope', 'biz', 'go', 'well'], ['yay', 'ear', 'match'], ['love', 'mom'], ['fuckin', 'awesom', 'super', 'sexi', 'stud', 'muffin', 'beast', 'sound'], ['hope', 'guy', 'fun', 'not', 'wait', 'ya', 'back', 'wilmi', 'not', 'without'], ['thank', 'pretti', 'ladi'], ['va', 'weekend', 'youngest', 'son', 'turn', 'make', 'kind', 'sad', 'get', 'big', 'check', 'twipic'], ['feel', 'better', 'someth', 'tummi'], ['son', 'wtf', 'bit', 'hole', 'damn', 'bread', 'god', 'forsaken'], ['make', 'happi', 'hear', 'girl', 'talk', 'tweet', 'nba', 'could', 'give', 'nugget', 'love'], ['hug', 'not', 'sad', 'realli', 'mess'], ['came', 'back', 'hang', 'friend', 'cocktail', 'lt', 'not', 'drunk', 'feel', 'good', 'hope', 'everyon', 'well'], ['love', 'cairn', 'clan'], ['pad', 'thai', 'favourit'], ['relax', 'busi', 'week', 'tedious', 'saturday'], ['lay', 'bed', 'boredd', 'look', 'old', 'cookbook', 'new', 'recip'], ['maxin', 'relaxin', 'ahh'], ['yr', 'young', 'look', 'dude'], ['hope', 'speedi', 'recoveri'], ['definit', 'readi', 'plate', 'pancak'], ['amp', 'kelli', 'share', 'last', 'name', 'would', 'not', 'sweet', 'relat'], ['realli', 'good', 'mood', 'absolut', 'reason', 'tee'], ['happi', 'mother', 'day', 'mother'], ['gasp', 'follow', 'feel', 'almost', 'famous', 'use', 'think', 'would', 'famous', 'grew', 'one', 'day', 'lol', 'oh', 'well', 'cheer', 'norm', 'peep'], ['oh', 'wow', 'thank', 'wayn'], ['wonder', 'put', 'bet', 'cub', 'win', 'world', 'seri', 'due', 'bttf', 'ii', 'would', 'love', 'actual', 'happen', 'geek'], ['nice', 'pre', 'mother', 'day', 'dinner', 'cocktail', 'retir', 'even'], ['thanx', 'love'], ['better', 'not', 'get', 'need', 'fix'], ['reward', 'dinner', 'american', 'dream', 'pizza', 'rooftop', 'terrac', 'perfect', 'got', 'page', 'done', 'prospectus'], ['yeah', 'check', 'pretti', 'nice', 'site'], ['pretti', 'girl', 'must', 'love', 'whole', 'lot', 'happi', 'birthday'], ['happi', 'mother', 'day', 'mommi'], ['look', 'old', 'myspac', 'status', 'oh', 'mann', 'skyrocket', 'flight', 'afternoon', 'delight', 'aafternoon', 'delight'], ['needless', 'say', 'not', 'stay', 'find'], ['aw', 'shit', 'thank', 'much', 'twitter', 'love', 'appreci', 'everi', 'last', 'drop'], ['love', 'stori', 'loop', 'past', 'minut', 'love', 'song', 'make', 'happi', 'like'], ['glad', 'see', 'red', 'bull', 'air', 'racer', 'keep', 'us', 'loop'], ['lol', 'thank'], ['thank', 'follow', 'good', 'caus'], ['agre'], ['happi', 'birthday'], ['thank', 'answer', 'wonder', 'whole', 'week'], ['thank', 'peopl', 'ad', 'skype', 'want', 'add', 'name', 'twitter', 'name', 'yt', 'name', 'blogtv', 'etc'], ['honor', 'tweet', 'ya'], ['uh', 'happi', 'mother', 'day', 'mum'], ['get', 'readi', 'earli', 'night', 'tweep', 'great', 'one', 'everi'], ['everyon', 'follow', 'amaz'], ['tomorrow', 'mother', 'day', 'need', 'get', 'crap', 'togeth', 'soon', 'noor', 'left', 'fun', 'nine', 'month'], ['still', 'not', 'club', 'lot', 'bar', 'though', 'not', 'think', 'miss', 'much'], ['problem', 'superstar', 'alway', 'deliv', 'huge', 'file', 'much', 'energi', 'pixel'], ['plan', 'cardio', 'hrs', 'reason', 'last', 'night'], ['go', 'see', 'star', 'trak', 'expect', 'note', 'amaz'], ['keep', 'tell', 'feel', 'better', 'tomorrow', 'lazi', 'day', 'sunfay', 'afteral', 'excus'], ['make', 'wish', 'dog', 'instead', 'cat'], ['alexand', 'ovechkin', 'definit', 'new', 'favorit', 'nhl', 'player'], ['ha', 'ha', 'funni'], ['ot', 'excit', 'game', 'like', 'alway'], ['kmf', 'go', 'smooth', 'far', 'free', 'stuff', 'alway', 'plus'], ['equal', 'gt', 'almost', 'better', 'sim'], ['happi', 'mother', 'day', 'nfti'], ['dad', 'told', 'music', 'power', 'heal', 'soul', 'sure', 'true'], ['head', 'strand', 'goodnight'], ['lmao', 'bake', 'sound', 'like', 'yummi', 'fun'], ['feel', 'smooth', 'like', 'chrome'], ['holi', 'crap', 'exhaust', 'rest', 'go', 'see', 'wolverin', 'later'], ['fun', 'water', 'park', 'dinner', 'rainforest', 'cafe', 'free', 'parti', 'tonight', 'pretti', 'good', 'saturday', 'think'], ['realli', 'enjoy', 'star', 'trek', 'great', 'movi', 'amaz', 'special', 'effect', 'defin', 'recommend', 'even', 'not', 'trekki'], ['omj', 'love', 'good', 'laugh', 'franki', 'great', 'job', 'guy'], ['saturday', 'not', 'cool', 'friend', 'job', 'differ', 'posit', 'let', 'know', 'town', 'miss'], ['awesom', 'dude', 'yay', 'surpris', 'celebr', 'got', 'meet', 'year', 'ago', 'soo', 'friend'], ['noth', 'beat', 'spend', 'even', 'mom'], ['wrong', 'come', 'brag', 'full', 'belli', 'smh'], ['lexus', 'twitpic', 'happi', 'mother', 'day', 'lexus', 'hopw', 'nice', 'one'], ['healthi', 'wish', 'may', 'start', 'say'], ['fun', 'time', 'friend', 'beer', 'pic'], ['thank', 'thing', 'much', 'hard', 'ever', 'get', 'go', 'therefor', 'never', 'get', 'much', 'better'], ['cure'], ['haha', 'not', 'anyth', 'wrong'], ['mom', 'get', 'readi', 'enjoy', 'special', 'day'], ['good', 'let', 'us', 'go', 'get', 'done'], ['haha', 'one', 'mani', 'reason', 'love'], ['photo', 'amaz', 'great', 'subject', 'amp', 'way', 'get', 'peopl', 'educ', 'darfur', 'hug', 'inspir', 'woman'], ['know', 'good', 'littl', 'life', 'love'], ['head', 'back', 'home', 'win'], ['realli', 'made', 'night', 'infact', 'made', 'weekend', 'well', 'done'], ['yes', 'sound', 'like', 'distinct', 'advantag', 'fortun', 'enjoy', 'femal'], ['clean', 'kitchen', 'amp', 'watch', 'royal', 'play'], ['long', 'day', 'head', 'bed', 'iloveyou', 'lt'], ['join', 'twitter', 'lol'], ['never', 'pragu', 'money', 'first', 'citi', 'visit'], ['discern', 'request', 'hulu', 'support', 'excel', 'idea'], ['go', 'tonight', 'let', 'us', 'partyy'], ['repli', 'button', 'right', 'stop', 'spam'], ['true', 'admit', 'funni', 'bout', 'go', 'tube', 'lol'], ['know', 'quot', 'extra', 'hand', 'quot', 'comment', 'would', 'caus', 'troubl', 'upload', 'hous', 'music', 'beyond', 'vol'], ['not', 'take', 'feel', 'away', 'lt', 'go', 'lay', 'amp', 'watch', 'movi'], ['yeah', 'happi', 'move', 'parti', 'happi'], ['love', 'weekend', 'thank', 'like', 'live', 'excit', 'sure', 'night', 'night', 'xx'], ['good', 'morn', 'everyon'], ['go', 'havta', 'temp', 'stop', 'fllwing', 'talkin', 'kobe', 'love', 'amp', 'take', 'person', 'like', 'lebron'], ['absolut', 'love', 'kill', 'bill', 'vol', 'think', 'luci', 'liu', 'soo', 'gorgeous'], ['back', 'graduat', 'two', 'doctor', 'famili'], ['not', 'awhil', 'point', 'anyway'], ['thank', 'sigjean'], ['great', 'song', 'east', 'clubber'], ['not', 'watch', 'wish', 'tv', 'love', 'guess', 'not', 'win', 'though', 'lol'], ['happi', 'mother', 'day'], ['oop', 'drunken', 'stupor', 'lol', 'check'], ['haha', 'agre', 'lol'], ['love', 'humor', 'reword', 'like', 'say', 'quot', 'group', 'therapi', 'quot', 'instead', 'quot', 'gang', 'bang', 'quot', 'keep', 'mom', 'back', 'hahaha'], ['good', 'pic', 'guy', 'look', 'good', 'yesterday', 'not', 'ya', 'think'], ['crush', 'someon'], [], ['aww', 'cool', 'ate', 'much', 'ice', 'cream'], ['would', 'lime', 'lemon', 'deal', 'sound', 'fabul', 'text', 'back'], ['shot', 'new', 'rifl', 'plinker', 'target', 'built', 'shop', 'class', 'work', 'great'], ['readi', 'new', 'backstreet', 'fan', 'proud'], ['yea', 'aww', 'sweet', 'r', 'good', 'kid'], ['cool', 'good'], ['haha', 'true', 'thank', 'regular', 'keyboard', 'job', 'time'], ['long', 'amp', 'prosper', 'movi', 'better', 'thought', 'awesom', 'job', 'pleas'], ['babylov', 'homenagem', 'ao', 'babi'], ['dad', 'total', 'rock', 'fli', 'white', 'guy', 'haha'], ['woohoo', 'cool', 'see', 'knew', 'would', 'get', 'see'], ['chang', 'quot', 'within', 'mile', 'quot', 'within', 'mile', 'effin', 'bore'], ['thank', 'marc', 'jacob', 'thou', 'limit'], ['way', 'still', 'not', 'believ', 'awesom', 'newjabbakidz', 'perform', 'scream', 'pc'], ['theatr', 'see', 'star', 'trek', 'second', 'time', 'becuas', 'cool'], ['thank', 'heather', 'glad', 'like', 'dish'], ['loung', 'not', 'product', 'upp', 'time', 'go'], ['congratul', 'shirt', 'way'], ['fuck', 'say'], ['happi', 'go', 'get', 'see', 'love', 'ladi'], ['wow', 'mom', 'lot', 'energi', 'get', 'tire', 'read', 'tweet', 'live'], ['forgot', 'much', 'realli', 'need', 'music', 'bare', 'week', 'music', 'yay'], ['need', 'show', 'wednesay', 'oh', 'well', 'come', 'one', 'come', 'irvin', 'improv', 'live', 'gotham', 'showcas', 'lot', 'good'], ['aim', 'account', 'add'], ['congrat', 'dave', 'amp', 'anna', 'surpris', 'propos', 'enzian', 'theater', 'orlando'], ['well', 'guess', 'think', 'everyth', 'thank', 'much', 'keep', 'fan', 'loop'], ['wath', 'dollhous', 'hulu', 'eat', 'special', 'el', 'taquito', 'beer', 'week', 'go', 'well'], ['new', 'comic', 'post', 'introduc', 'quot', 'joe', 'mini', 'strip', 'quot', 'via', 'cute', 'mother', 'day', 'strip'], ['dope', 'mom', 'love', 'stop', 'drink', 'mom', 'juic', 'stop', 'twitter', 'get', 'rest'], ['take', 'million', 'song', 'station', 'thing', 'sorri'], ['happi', 'mother', 'day'], ['bed', 'tonight', 'realli', 'realli', 'funni', 'best', 'famili', 'ever'], ['live', 'long', 'prosper'], ['karaok', 'small', 'town', 'bar', 'wonder', 'time'], ['oh', 'sunni'], ['told', 'would', 'sweep', 'haha'], ['quot', 'patchouli', 'oil', 'amp', 'incens', 'surg', 'popular', 'amp', 'most', 'among', 'devote', 'free', 'love', 'amp', 'hippi', 'quot'], ['thank', 'mama', 'absolut', 'ador'], ['brill', 'night', 'girl', 'met', 'terri', 'christian', 'realli', 'love', 'home', 'berocca', 'toast'], ['happiest', 'girl', 'world', 'best', 'weekend', 'ever', 'not', 'wait', 'next', 'weekend', 'either', 'grate', 'bless'], ['way', 'still', 'not', 'believ', 'awesom', 'newjabbakidz', 'perform', 'scream', 'pc'], ['hahaha', 'funnyy'], ['glad', 'hope', 'make', 'back', 'near', 'new', 'orlean'], ['mom', 'compani', 'picnic', 'lake', 'elsinor', 'storm', 'game', 'oh', 'thing', 'pleas', 'mom'], ['read', 'twitter', 'bio', 'love', 'clever', 'cute', 'smile'], ['still', 'recal', 'help', 'way', 'back', 'struggl', 'ar', 'contest', 'question'], ['yay', 'bannerbomb', 'wii', 'final', 'run', 'homebrew', 'wii'], ['mum', 'sound', 'humbl', 'sweet', 'thing', 'ask'], ['feel', 'great', 'solv', 'minor', 'long', 'term', 'problem', 'max', 'mayb', 'tri', 'anim', 'avatar', 'xd'], ['omg', 'get', 'coupon', 'time', 'obsess', 'catalog', 'come', 'mail'], ['great', 'time', 'kc'], ['miss', 'kid', 'sent', 'messag', 'yt'], ['one', 'femal', 'server', 'tell', 'ass', 'look', 'big', 'pant', 'worri', 'night', 'long', 'lol'], ['jona', 'second', 'episod', 'aww', 'nick', 'handsom'], ['one', 'groceri', 'sad', 'not', 'dukbolgi'], ['decid', 'best', 'stay', 'tonight', 'ladi', 'shall', 'pittsburgh', 'soon', 'farewel'], ['snuck', 'window', 'lay', 'roof', 'look', 'star', 'nice', 'night', 'tonight'], ['still', 'putt', 'yard', 'longer', 'hit', 'driver'], ['need', 'lele', 'answer', 'mee', 'haha'], ['aww', 'nice', 'attempt', 'hide', 'camera'], ['alredi', 'chocol', 'imposs', 'resist'], ['quot', 'never', 'alon', 'love', 'realli', 'quot'], ['leatherman', 'must', 'realli', 'anybodi', 'never', 'know', 'might', 'need', 'one', 'amp', 'get', 'job', 'done'], ['piyaa', 'hi', 'hyper', 'amp', 'bore', 'amp', 'onlin', 'amp', 'go', 'find', 'pictur', 'notebook', 'still', 'not', 'send', 'messag', 'grr'], ['record', 'john', 'mayer', 'freak', 'cool'], ['happi', 'mother', 'day', 'mum'], ['sorri', 'friend', 'pay', 'mortgag'], ['nyappi', 'mother', 'day', 'mom'], ['work', 'secur', 'club', 'tonight', 'first', 'time', 'work', 'month', 'interest', 'oh', 'hi', 'kelsen'], ['thank', 'much', 'follow', 'twitter', 'hope', 'find', 'excit', 'look', 'forward', 'tweet'], ['drank', 'sli', 'not', 'ask', 'know'], ['knock', 'soo', 'godamn', 'funni', 'never', 'get', 'old', 'quot', 'tupac', 'quot', 'lol'], ['fun', 'time', 'allegra', 'tonit', 'saw', 'good', 'movi'], ['bellevill', 'parent', 'someon', 'offer', 'bus', 'ride', 'orillia', 'mall', 'thought'], ['head', 'beach', 'puppi', 'maverick', 'hug', 'much', 'aloha'], ['year', 'old', 'go', 'drive', 'crazi', 'come', 'territori', 'guess'], ['pretti', 'flower', 'john', 'main', 'brought', 'ladi'], ['go', 'see', 'star', 'trek', 'babe', 'actual', 'excit', 'hah'], ['appar', 'crappi', 'type', 'sorri'], ['good', 'keep', 'guy', 'would', 'love', 'come', 'visit', 'sonetim'], ['success', 'shop', 'day'], ['mum', 'would', 'happi', 'receiv', 'handbag', 'card', 'us', 'today', 'hehe'], ['viviann', 'mine', 'yumm'], ['mum', 'cake', 'done', 'need', 'make', 'good', 'luch', 'tomorrow', 'amaz', 'mum', 'day'], ['right', 'second', 'gig', 'sippinn', 'guess', 'whut', 'water', 'sta', 'focus', 'job'], ['sweet', 'go', 'public', 'avail'], ['sorri', 'take', 'twitter', 'not'], ['go', 'mother', 'day', 'ever', 'notic', 'papa', 'look', 'like', 'squiggi', 'lavern', 'snd', 'shirley', 'love'], ['idea', 'wtf', 'twitter', 'will', 'give', 'go', 'go', 'bit'], ['aw', 'tear', 'feel', 'special', 'da', 'famili', 'haha', 'thank', 'girl', 'love', 'yal'], ['awesom', 'night', 'ahead', 'bad', 'v', 'rat', 'citi', 'favorit', 'skater', 'one', 'track', 'fb'], ['mm', 'sound', 'tasti', 'spice', 'rum', 'earlier', 'yummyy', 'also', 'herb', 'alway', 'good', 'although', 'better', 'share'], ['thank', 'followfriday'], ['know', 'bare', 'believ', 'almost', 'thank', 'review', 'love'], ['thank', 'got', 'contact', 'troubl', 'thank'], ['respond', 'question', 'thou', 'shall', 'blog', 'appreci', 'communiti'], ['experienc', 'uniqu', 'winnipeg', 'tradit', 'known', 'quot', 'social', 'quot', 'tri', 'pace'], ['play', 'realli', 'good'], ['not', 'prom', 'ha', 'chines', 'ice', 'chai', 'old', 'school', 'pokemon', 'good', 'night'], ['exhaust', 'come', 'home', 'swim', 'morn', 'tire', 'rememb', 'happi', 'mother', 'day'], ['oh', 'yes', 'happi', 'nine', 'year', 'annivarsari', 'hanson', 'second', 'studio', 'album', 'quot', 'time', 'quot'], ['thank', 'tip', 'figur', 'one'], ['retweet', 'favorit', 'palin'], ['last', 'time', 'get', 'right', 'hello', 'love'], ['thank', 'thought', 'unfortunat', 'not', 'work', 'like', 'hope', 'ah', 'well', 'paint', 'beauti'], ['thank', 'remind', 'toni'], ['boredd', 'follow', 'amaz', 'broken'], ['home', 'galleri', 'open', 'woodstock', 'ny', 'frine', 'work', 'display', 'much', 'great', 'cool', 'interest', 'art', 'seen'], ['fun', 'ate', 'good', 'luck', 'show', 'tomorrow'], ['love', 'guy', 'best'], ['thank', 'sissi', 'sure', 'check', 'myspac', 'tonight', 'go', 'someth', 'love', 'ya'], ['woke', 'nap', 'final', 'got', 'sleep', 'need'], ['know', 'not', 'believ', 'half', 'say'], ['interest', 'night', 'defianc', 'say', 'least', 'hey', 'got', 'doll', 'free'], ['look', 'littl', 'quot', 'fri', 'quot', 'fun', 'paul'], ['vibe', 'doin', 'atlant', 'amp', 'shirt', 'twitter', 'pic', 'lol'], ['got', 'back', 'babi', 'much', 'love', 'ya'], ['thank', 'gerbino', 'forc', 'us', 'start', 'junior', 'year', 'make', 'survey', 'mockup', 'let', 'tell', 'super', 'help', 'skill'], ['leav', 'beach', 'great', 'day', 'vicent', 'need', 'time', 'togeth'], ['hey', 'dirt', 'track', 'thank', 'info', 'got', 'mile'], ['soo', 'happi', 'back'], ['lucki', 'babi', 'wonder', 'famili', 'know', 'could', 'take', 'home'], ['happi', 'mother', 'day', 'like', 'poem'], ['excit'], ['got', 'home', 'partyy', 'good', 'time', 'not', 'wait', 'birthday', 'day'], ['hope', 'day', 'good'], ['haha', 'complet', 'agre'], ['ben', 'love', 'yahh', 'babe', 'lt', 'miss', 'hope', 'see', 'tomorrow', 'mommi', 'love', 'tomorrow', 'happi', 'mother', 'day', 'happi', 'mother', 'day', 'mom'], ['shoot', 'ron', 'torey', 'lot', 'fun'], ['hard', 'feel', 'hope', 'like', 'say', 'think', 'agre'], ['thought', 'pretti', 'good', 'not', 'die', 'hard', 'trekki', 'either'], ['oo', 'lovin', 'first', 'ladi', 'fuschia', 'sheath', 'dress', 'tres', 'chic', 'want', 'arm'], ['usual', 'two', 'famili', 'parti', 'today', 'happi', 'birthday', 'lili'], ['ahh', 'drink', 'bride', 'war', 'realli', 'good'], ['love', 'book', 'read', 'host', 'amaz', 'storytel'], ['good', 'anoth', 'hit', 'anoth', 'run'], ['thank', 'realli', 'appreci', 'babe'], ['woo', 'hoo', 'happi', 'score', 'appar', 'happi', 'consid', 'week'], ['cigarett', 'relax'], ['hahahaha', 'laugh', 'ass', 'thank'], ['say', 'look', 'like', 'demi', 'hahaha', 'yess', 'august', 'blast'], ['itt', 'big', 'time', 'saturday', 'night', 'play', 'canasta', 'movi', 'homework', 'stay', 'shini', 'love', 'everybodi'], ['hey', 'know', 'ya', 'not', 'know', 'want', 'say', 'yopu', 'help', 'lot', 'iraq', 'want', 'thank'], ['sun', 'melbourn', 'happi', 'mother', 'day', 'mum'], ['tgc', 'concert', 'good', 'see', 'old', 'friend', 'rememb', 'old', 'time'], ['happi', 'mother', 'day'], ['check', 'got', 'lol', 'ok', 'went', 'live', 'minut', 'everyth', 'fine'], ['see', 'date', 'show', 'good', 'time', 'still', 'want', 'stripper', 'pictur'], ['glad', 'like', 'want'], ['make', 'fun', 'guy'], ['pappadeux', 'yummi', 'strawberri', 'lemonad'], ['overwhelm', 'lead', 'strawberri', 'lemonad', 'husband', 'vote', 'banana', 'foster', 'though'], ['hehe'], ['today', 'first', 'mother', 'day', 'littl', 'boy', 'hope', 'beauti', 'mother', 'day'], ['sit', 'comput', 'eat', 'grape', 'hail', 'outsid', 'miss', 'summer'], ['well', 'done', 'happi', 'ya'], ['omg', 'shut', 'sorri', 'still', 'vent', 'person', 'annoy', 'none', 'swear'], ['happi', 'morn', 'everyon'], ['sweet', 'girl', 'food', 'soo', 'good'], ['hah', 'yeah', 'bad', 'not', 'go', 'lie', 'fun'], ['play', 'new', 'ds', 'lite', 'love'], ['dinner', 'parent', 'unit', 'alway', 'grand'], ['realli', 'realli', 'get', 'excit'], ['like', 'stuff', 'strang', 'voicemail'], ['come', 'new', 'plan', 'besti', 'oh', 'one', 'go', 'great'], ['oh', 'lol', 'yes', 'facebook', 'nice', 'safe', 'environ', 'like', 'church', 'basement'], ['sorri', 'tri', 'keep'], ['thank', 'much', 'love', 'fanmail', 'talk', 'us', 'anytim'], ['lol', 'well', 'learn', 'somethin', 'new', 'thank'], ['thank', 'love', 'good', 'bargain'], ['much', 'seri', 'denver', 'next'], ['john', 'amaz', 'book', 'need', 'brighten', 'mood'], ['lol', 'tweet', 'alway', 'fun', 'follow', 'never', 'dull', 'moment', 'kulp'], ['not', 'know', 'quit', 'mountain'], ['thank'], ['swim', 'parti', 'brother', 'tonight', 'awesom', 'time', 'sinc', 'sissi', 'cold', 'water', 'love', 'today'], ['see', 'suck', 'right', 'problem', 'race', 'conflict', 'god', 'gave', 'us', 'dvr'], ['happi', 'mother', 'day', 'us', 'not', 'bein', 'mamma', 'yet', 'lucki', 'enough', 'live', 'live', 'littl'], ['caught', 'email', 'research', 'project', 'yay', 'label', 'search', 'gmail', 'much', 'easier'], ['star', 'trek', 'grtsat', 'bggete', 'drunk'], ['link', 'not', 'open', 'tri', 'better', 'connect', 'tomorrow', 'curious'], ['red', 'win', 'great', 'end', 'great', 'day'], ['welcom', 'babe', 'kill', 'show', 'yuupp'], ['think', 'catch', 'sleep', 'befor', 'go', 'back', 'uni', 'haha', 'goodnight', 'lt'], ['iight', 'thank'], ['yeah', 'son', 'two', 'go', 'kid', 'friend', 'place', 'congrat', 'babi'], ['beauti', 'day', 'hangin', 'guy', 'graham', 'josiah', 'lol', 'wait', 'other', 'want', 'stop', 'come', 'food'], ['final', 'finish', 'market', 'project', 'took', 'hang', 'relax'], ['say', 'happi', 'mother', 'day', 'mom'], ['coffe', 'sociolog', 'paper', 'complet', 'happi', 'mother', 'day'], ['hey', 'honey', 'bunni', 'big', 'bunni', 'hug'], ['real', 'hooker', 'go', 'slap', 'public'], ['listen', 'sampl', 'make', 'sure', 'think', 'stuff', 'loud', 'odd', 'stuff', 'recal', 'not', 'bungl'], ['well', 'not', 'stay', 'away', 'kind', 'surround', 'not', 'happi', 'mother', 'day', 'mom', 'treiz'], ['thank', 'think', 'first', 'girl', 'say', 'mom'], ['seen', 'mi', 'abueltia', 'hospit', 'good'], ['hug', 'glad', 'got', 'spend', 'time', 'mom', 'free', 'tonight', 'drop', 'spaghetti'], ['ahh', 'mommi', 'got', 'new', 'sheet', 'bed', 'comfi'], ['welcom', 'wonder', 'day', 'stayin', 'outta', 'troubl', 'readi', 'crash', 'parti', 'lol'], ['way'], ['mom', 'came', 'home', 'final', 'got', 'guitar', 'strap', 'yay'], ['hot', 'damn', 'fuck', 'disneyland'], ['great', 'basto', 'happi', 'go', 'mabaho', 'leg', 'celebr', 'haha'], ['fail', 'life'], ['happi', 'mother', 'day'], ['wow', 'look', 'realli', 'good', 'wish', 'good'], ['not', 'live', 'tri', 'earn', 'groceri', 'money', 'enjoy', 'eat', 'least', 'day'], ['happi', 'mother', 'day', 'beauti', 'mother', 'may', 'love', 'shine', 'world', 'thank', 'mum'], ['last', 'weekend', 'pretti', 'solid', 'brunch', 'bar', 'wellington', 'hard', 'screw', 'steak', 'egg', 'though'], ['thank', 'send', 'link'], ['psst', 'new', 'blog', 'comment', 'likey'], ['oh', 'love', 'famili'], ['hi', 'nic', 'excit', 'heard', 'pcd', 'perform', 'jakarta', 'hope', 'visit', 'town', 'bali', 'well', 'love', 'ya'], ['happi', 'mother', 'day', 'everi', 'mommi'], ['enjoy', 'mother', 'day'], ['ahh', 'go', 'away', 'yay', 'fav', 'song'], ['happi', 'see', 'kurt', 'spin'], ['love', 'comeback', 'stay', 'tune', 'fellow', 'follow', 'peopl', 'though', 'turn', 'get', 'follow'], ['congrat', 'knew', 'princess', 'would', 'win', 'sigjean'], ['feel', 'like', 'princess', 'love', 'lingeri', 'parti'], ['get', 'michael', 'jackson', 'ish', 'not', 'bad', 'look', 'go'], ['need', 'right', 'absolut', 'mindd', 'blow', 'love', 'much'], ['hot', 'coco', 'nkotb', 'cup', 'sweeti'], ['cute', 'time', 'twitpic'], ['hii', 'freak', 'love', 'would', 'happiest', 'year', 'old', 'girl', 'aliv', 'repli'], ['happi', 'mother', 'day', 'mother'], ['aww', 'nice'], ['ahh', 'yay', 'get', 'knockin', 'lot'], ['get', 'wors', 'everi', 'year', 'worst', 'oh', 'month', 'today'], ['sit', 'outsid', 'cold', 'ocean', 'glass', 'wine'], ['inde', 'tri', 'get', 'trend', 'topic', 'fun', 'twilight', 'idea'], ['kick', 'though', 'feel', 'littl', 'sick', 'altern', 'talk', 'friend', 'game', 'watch', 'playoff', 'write', 'applic'], ['not', 'sure', 'stracchino', 'sound', 'good'], ['yes', 'ili'], ['tire', 'gunna', 'go', 'bed', 'soon', 'first', 'time', 'onlin', 'today', 'readi', 'mother', 'day', 'tomorow'], ['welcom', 'aboard', 'friend', 'fan', 'go', 'love', 'ya'], ['anoth', 'amaz', 'day', 'ever', 'sinc', 'got', 'twitter', 'great', 'day'], ['nothin', 'better', 'ridin', 'car', 'sister', 'blast', 'th', 'cb', 'ladi', 'gaga', 'loud', 'not', 'hear', 'screamin', 'lyric'], ['friend', 'ent', 'industri', 'said', 'realli', 'realli', 'good', 'hope', 'convinc', 'wife', 'date', 'night', 'hhrs'], ['loss', 'power', 'hous', 'alon', 'not', 'fucckingg', 'cool', 'parti', 'cakss'], ['want', 'see', 'movi', 'fun'], ['mouth', 'sure'], ['watch', 'role', 'model', 'absolut', 'hilari'], ['chillin', 'famili', 'get', 'taco', 'ochoa', 'best', 'food', 'washington', 'counti'], ['hahahahahahahahahahahahaha', 'could', 'interest'], ['better', 'safe', 'sorri', 'glad', 'everyth', 'okay'], ['mother', 'madr', 'chel', 'tonight', 'not', 'wait', 'see', 'present'], ['yay', 'star', 'trek', 'realli', 'quot', 'good', 'quot', 'happi', 'not', 'let', 'got', 'see', 'imax'], ['finish', 'book', 'vat', 'good', 'book', 'lt'], ['hehe', 'yeah', 'funni', 'updat', 'peopl', 'random', 'thing', 'amus'], ['love', 'metal', 'gear', 'solid', 'valkyria', 'chronicl'], ['nerd', 'read', 'first', 'mani', 'book', 'summer'], ['messag', 'messag', 'want', 'sound', 'funni'], ['hi', 'nick', 'realli', 'like', 'seri', 'jona', 'awesom', 'see', 'soon', 'concert', 'kiss', 'marta'], ['haha', 'nice', 'thank', 'let', 'know'], ['thank', 'ye', 'vaneta', 'much', 'appreci'], ['thank', 'come', 'support', 'us', 'rock'], ['show', 'discret', 'occasion'], ['new', 'star', 'trek', 'movi', 'awesom', 'unnecessari', 'brief', 'underwear', 'scene', 'pun', 'intend', 'besid', 'awesom', 'startrek'], ['habitat', 'neat'], ['could', 'spend', 'rest', 'night', 'room', 'least', 'one', 'could', 'happi', 'glass', 'wine', 'surlytween'], ['goodmorn'], ['chillen', 'tri', 'figur', 'thing', 'gettin', 'drunk'], ['chillin', 'homi'], ['whatsoev', 'mean', 'get', 'lol', 'alway', 'sober'], ['oh', 'wait', 'mess', 'mess', 'lyric', 'quot', 'not', 'concret', 'quot'], ['vega', 'fire'], ['lol', 'yourock'], ['dinner', 'fam', 'miss'], ['lay', 'lyndi', 'drive', 'way', 'drink', 'tea', 'listenin', 'music', 'takin', 'pictur', 'chillin'], ['alreadi', 'damn'], ['would', 'sicken', 'number', 'way', 'abl', 'tweet'], ['last', 'year', 'right', 'around', 'time', 'black', 'parad', 'dead', 'came', 'awesom', 'time', 'man'], ['movi', 'pretti', 'interest', 'actual', 'go', 'finish', 'watch', 'probabl', 'see', 'star', 'trek', 'tomorrow', 'lt', 'zq', 'lol'], ['watch', 'jona', 'love', 'dvr'], ['sound', 'like', 'great', 'way', 'start', 'mother', 'day', 'enjoy', 'day'], ['star', 'trek', 'pretti', 'much', 'rock', 'life', 'oh', 'wait', 'rock', 'life'], ['must', 'abl', 'tell', 'reprob', 'despit', 'endors', 'sound', 'pretti', 'smart'], ['happi', 'voic', 'back', 'lt'], ['good', 'luck', 'whit', 'show', 'tonit', 'man', 'ill', 'watch'], ['isp', 'sort', 'gather', 'cheer', 'birthday', 'wish'], ['reunit', 'feel', 'good'], ['love', 'boy', 'make', 'happi', 'look', 'sexiest', 'plain', 'black', 'boxer'], ['said', 'elus', 'tricki'], ['oh', 'amaz', 'two', 'need', 'third', 'yn'], ['yes', 'love', 'seen', 'ep', 'mani', 'time', 'quot', 'line'], ['back', 'first', 'run', 'race', 'still', 'aliv'], ['fabul', 'interraci', 'gangbang', 'woot'], ['love', 'fact', 'jor', 'talk', 'tell', 'want', 'amaz'], ['nurs', 'scratch', 'bump', 'festivus', 'mud', 'wrestl', 'swear', 'still', 'dirt', 'hair', 'good', 'time'], ['ahh', 'not', 'care', 'love', 'movi'], ['blahh', 'tire', 'got', 'go', 'airport', 'pick', 'mom', 'amp', 'amp', 'bore', 'upsid', 'listen', 'backstreet', 'boy'], ['miss', 'way', 'life', 'cook', 'mother', 'saturday', 'night', 'mama', 'love'], ['happi', 'studi', 'nighter', 'pay'], ['sorri'], ['ohh', 'love', 'green', 'purpl', 'black'], ['happi', 'ace', 'final'], ['sittin', 'home', 'watchin', 'monster', 'waitin', 'pizza', 'yum', 'yum'], ['oh', 'cool', 'thank'], ['hahaha', 'cool', 'pic', 'sal', 'made', 'daniel', 'lol'], ['heart', 'sing'], ['bad', 'understand', 'thing', 'know'], ['whoo', 'spcn', 'readi', 'cheer'], ['lol', 'see'], ['heard', 'one', 'song', 'amaz', 'voic', 'stun'], ['dinner', 'amp', 'fam'], ['lol', 'yeah', 'forgot', 'tweetdeck', 'status', 'funni'], ['make', 'feel', 'better', 'studi', 'sat', 'night', 'blackberri'], ['twitter', 'offici', 'best', 'way', 'advertis', 'someth'], ['welcom'], ['happi', 'mother', 'day', 'momma', 'momma', 'current', 'wonder', 'day'], ['love', 'cancuk', 'lt'], ['love', 'song', 'start', 'think', 'one', 'knew', 'one', 'sameperson'], ['practic', 'blackjack', 'skill', 'not', 'look', 'hope'], ['oh', 'bring', 'home', 'full', 'delici', 'one', 'philli', 'fav'], ['amaz', 'day', 'boyfriend', 'good', 'drummer'], ['relax'], ['happi', 'birthday', 'hour', 'minuet', 'haha'], ['ugh', 'fun', 'concert', 'screen', 'crack', 'phone', 'fell'], ['give', 'best'], ['congratul', 'xo'], ['idea', 'complet', 'lost'], ['watch', 'georg', 'lopez', 'went', 'school', 'play', 'basketbal', 'today', 'pretti', 'nice', 'hot'], ['look', 'page', 'realis', 'radio', 'show', 'get', 'play', 'call', 'want', 'love', 'track'], ['watch', 'hope', 'haley'], ['discov', 'whole', 'new', 'beauti'], ['download', 'twitterberri', 'life', 'even', 'conveni'], ['home', 'day', 'pamper', 'mom', 'amp', 'dinner', 'famili', 'current', 'snuggi', 'couch', 'glass', 'wine', 'amp', 'new', 'book', 'ahh'], ['know', 'realli', 'want', 'stuff', 'school', 'next', 'week', 'ill', 'free', 'day', 'week', 'ill', 'hit'], ['make', 'get', 'better', 'believ'], ['fun', 'day', 'boo', 'short', 'fun'], ['good', 'movi'], ['happi', 'mother', 'day', 'sure', 'say', 'lt', 'mum'], ['took', 'go', 'go', 'thank', 'mother'], ['sweet', 'dream'], ['know', 'made', 'differ', 'other', 'feel', 'proud'], ['good', 'day', 'sell', 'feria', 'urbana', 'ladi', 'love', 'felt'], ['rog', 'never', 'heard', 'esti', 'beat', 'acum', 'tweet', 'much'], ['biligu', 'sweatshop', 'lol', 'talk', 'not', 'much', 'got'], ['wow', 'bring', 'back', 'mani', 'happi', 'memori', 'love', 'yes', 'know', 'show', 'age', 'not', 'care'], ['heard', 'st', 'not', 'true', 'shot', 'blown', 'nice', 'big', 'screen'], ['not', 'stop', 'listen', 'new', 'singl', 'paranoid', 'amaz', 'love'], ['talk', 'hubbi', 'convinc', 'great', 'present', 'mommi'], ['homm', 'good', 'day'], ['thank', 'find', 'wonder', 'even'], ['watch', 'pianist', 'dad', 'great', 'movi'], ['feel', 'accomplish', 'got', 'lot', 'done', 'today'], ['happi', 'mother', 'day', 'mom'], ['wish', 'knew', 'play', 'instrument', 'lesson', 'menac', 'missi', 'moo', 'sure', 'piano', 'cello', 'bass', 'whatev', 'want'], ['know', 'ok', 'thank'], ['saw', 'ghost', 'girlfriend', 'past', 'actual', 'realli', 'cute', 'total', 'chick', 'flick', 'mattew', 'mcconaughey', 'smexi'], ['thank', 'man', 'appreci', 'rock', 'sir'], ['thank', 'much', 'rex', 'ff'], ['hey', 'sherri', 'not', 'give', 'marri', 'may', 'brother', 'friend'], ['chillin', 'bore', 'drink', 'margarita', 'txt'], ['lmao', 'know', 'two', 'day', 'good', 'thing'], ['mother', 'day', 'mum', 'ili', 'mummi', 'lol'], ['love', 'hair', 'blowin', 'wind'], ['everyon', 'pleas', 'welcom', 'new', 'friend', 'kari', 'warm', 'follow', 'set', 'twitter', 'account', 'tonight'], ['ok', 'one', 'favorit', 'movi', 'seri', 'star', 'war', 'make', 'dork'], ['yummi', 'mother', 'day', 'mum', 'dad', 'arcel', 'yuum'], ['glad', 'blast'], ['okay', 'thank'], ['riot', 'go', 'girl'], ['love', 'song'], ['get', 'readi', 'go', 'read', 'pray', 'go', 'bed', 'enjoy', 'rest', 'night'], ['funn'], ['relax'], ['kid', 'count', 'day', 'till', 'saturday', 'hope', 'someth', 'rememb', 'live'], ['free', 'fillin', 'app', 'ipod', 'fun', 'addict'], ['happi', 'mother', 'day', 'x', 'amp', 'go', 'docker'], ['jus', 'love', 'doin', 'night', 'done', 'hour'], ['start', 'feel', 'realli', 'old'], ['plan', 'mother', 'day', 'special', 'belov', 'mother'], ['never', 'miss', 'icar', 'son', 'huge', 'crush', 'miranda'], ['sure', 'ill', 'follow', 'hun', 'ohh', 'thank', 'subscrib', 'youtub'], ['told', 'manag', 'sent', 'home', 'afraid', 'troubl', 'send', 'home', 'haha', 'dumb', 'bitch'], ['curri', 'shrimp', 'yesterday', 'lol', 'love', 'seafood'], ['cool', 'save', 'tea'], ['snl', 'tonight', 'go', 'hilari'], ['thank'], ['got', 'back', 'hangin', 'besti', 'pool', 'soo', 'nice'], ['lmfao', 'yea', 'anyon', 'pleas', 'realli', 'pretti'], ['embark', 'larg', 'tour', 'bar', 'project', 'hope', 'not', 'die', 'alcohol', 'poison'], ['lay', 'bed', 'text', 'good', 'night', 'ya'], ['think', 'tonight', 'could', 'not', 'gone', 'perfect'], ['hey', 'sorri', 'not', 'see', 'messag'], ['good', 'end', 'busi', 'day', 'bed', 'full', 'belli', 'sushi'], ['never', 'expect', 'hear', 'beasti', 'boy', 'star', 'trek', 'movi', 'super', 'great', 'flick', 'though', 'pew', 'peww', 'phaser'], ['happi', 'mother', 'may', 'mak', 'love', 'alway', 'xoxo'], ['ty', 'much', 'ff'], ['aw', 'song', 'make', 'think', 'girl', 'scout'], ['want', 'move', 'england', 'quot', 'ello', 'must', 'go', 'loo', 'head', 'caddi', 'quot', 'gahaha', 'awesom', 'accent'], ['oh', 'god', 'ador', 'ilov', 'much', 'inspir', 'nick'], ['nice', 'meet', 'good', 'know', 'anoth', 'one', 'follow', 'actual', 'speak'], ['wonder', 'go', 'sleep', 'well', 'tonight'], ['omg', 'love', 'parent', 'juss', 'got', 'lavend', 'camera', 'earli', 'birthday', 'present'], ['want', 'wish', 'mom', 'happi', 'mother', 'day'], ['ventur', 'forth', 'turkey', 'creek', 'amp', 'fetch', 'boy', 'post', 'prom', 'festiv', 'hope', 'fun'], ['fear', 'not', 'deserv', 'alot', 'care', 'anim', 'get', 'food', 'not', 'worri'], ['thank', 'read', 'ohlala'], ['yup', 'join', 'nin', 'access', 'fun'], ['got', 'total', 'lost', 'pay', 'taxi', 'get', 'back', 'suppos', 'yeah', 'someth', 'like', 'lol'], ['kickin', 'miss', 'babe', 'lolz'], ['purpl', 'pusrs', 'pretti', 'someon', 'tell', 'kati', 'holm'], ['lol', 'true'], ['next', 'year', 'sweet'], ['cool', 'yes', 'ciwwaf', 'awesom'], ['chillin', 'home'], ['everyon', 'mistak', 'make', 'lesson', 'learn', 'not', 'let', 'negat', 'get'], ['quit', 'right', 'cock', 'sound', 'better', 'clock', 'come', 'femal', 'anyway'], ['haciendo', 'mi', 'primer', 'app', 'con', 'thin', 'rack', 'crazi', 'stuff'], ['shower', 'feel', 'refresh', 'long', 'day', 'fair'], ['thank'], ['enjoy', 'famili', 'trump', 'everyth'], ['aww', 'thank', 'babe', 'plan', 'tomorrow'], ['woo', 'hoo', 'parti', 'go', 'fun'], ['sing', 'song', 'film', 'movi', 'best'], ['listen', 'best', 'day', 'life', 'kelli', 'pickler'], ['yaay', 'congrat', 'shmolan', 'graduat', 'proud', 'fun', 'lt'], ['got', 'home', 'tilli', 'danc', 'recit', 'lol', 'spectacular'], ['soo', 'happi', 'demi', 'back', 'twitter'], ['well', 'guess', 'make', 'pretti', 'great', 'pair', 'not', 'think', 'birthday', 'date', 'go', 'happen'], ['thrill', 'prom', 'went', 'well'], ['good', 'night', 'rob', 'sleep', 'well', 'safe', 'travel', 'tomorrow'], ['thank'], ['thank', 'dj'], ['finish', 'watch', 'not', 'love'], ['hang', 'cousin', 'jimmi', 'hope', 'hang', 'friend'], ['great', 'date', 'last', 'find', 'cdcave', 'daniel', 'hilari', 'fun'], ['comedi', 'good', 'luck', 'friend'], ['sweet', 'san', 'fran', 'awesom', 'love'], ['rofl', 'uh', 'huh'], ['hahah', 'love', 'though'], ['hi', 'bunni', 'recent', 'subcrib', 'channel', 'youtub', 'make', 'great', 'stuff', 'kind', 'want', 'say', 'hi'], ['yes', 'realli', 'good', 'even', 'though', 'not', 'sci', 'fi', 'love', 'amp', 'haha', 'know'], ['happi', 'mother', 'day', 'mom'], ['likabl', 'hahahahahahaha', 'still', 'moon'], ['nice', 'place', 'eat', 'sao', 'paulo', 'brazil'], ['enjoy', 'coffe', 'super', 'delici', 'cooki'], ['weirton', 'juli', 'way', 'north', 'tippi', 'top', 'lol', 'not', 'think', 'southern', 'wv', 'folk', 'like', 'us', 'much'], ['omg', 'cur', 'hair', 'cute'], ['hello', 'new', 'follow', 'say', 'hi', 'say', 'nice', 'meet'], ['hi', 'ya', 'demi', 'glad', 'back', 'person', 'love', 'pictur', 'haha'], ['tri', 'dang', 'hardest', 'not', 'watch', 'movi', 'finish', 'book'], ['last', 'song', 'american', 'reject', 'amaz', 'song'], ['real', 'not', 'excit'], ['debut', 'thursday', 'galleri', 'loung', 'fun', 'not', 'wait', 'next', 'one'], ['uh', 'oh', 'hope', 'noth', 'damag'], ['listen', 'echo', 'gorilla', 'zoe', 'ahh', 'love', 'song'], ['today', 'dan', 'bought', 'bio', 'dome', 'realiti', 'bite', 'soundtrack', 'needless', 'say', 'get', 'mayjah', 'point', 'also', 'tummi', 'not', 'happi', 'boo'], ['photo', 'love', 'knew', 'talent', 'photograph', 'journalist'], ['hehe', 'fun', 'tweet'], ['good'], ['spend', 'time', 'momma', 'celebr', 'mother', 'day', 'earli', 'good', 'woodburn'], ['think', 'letitia', 'still', 'tri', 'upload', 'digit', 'problem', 'sure', 'let', 'us', 'know'], ['eagl', 'make', 'saturday', 'night', 'much', 'better'], ['movi', 'realli', 'good'], ['go', 'bed', 'earli', 'got', 'lot', 'import', 'women', 'visit', 'mother', 'day', 'tomorrow', 'midnight', 'tonight', 'happi', 'birthday', 'boo', 'bear'], ['say', 'good', 'morn', 'everyon', 'happi', 'mother', 'day', 'mother', 'hope', 'h'], ['airsoft', 'much', 'fun', 'play', 'brother', 'great', 'bond', 'experi'], ['sister', 'law', 'left', 'prom', 'look', 'soo', 'pretti', 'tear', 'around'], ['hey', 'weirdo', 'haha', 'jk', 'love'], ['chillin', 'bbq', 'gettin', 'drink'], ['steel', 'toe', 'boot', 'good', 'hear', 'comfi', 'hope', 'kodiak', 'terra', 'brand'], ['lmfaoo', 'fuck', 'love', 'showw'], ['nice', 'pc', 'author', 'review', 'tivo', 'vod', 'servic', 'still', 'love', 'tivo'], ['amaz', 'therebi', 'prove', 'not', 'believ', 'anyth', 'see'], ['aww', 'thank', 'hope'], ['happi', 'mother', 'day', 'oh', 'not', 'read', 'yet'], ['oh', 'emm', 'gee', 'quebec', 'day', 'excit'], ['michell', 'not', 'miss', 'fox', 'like', 'interview'], ['gosh', 'freakin', 'bore', 'talk'], ['shawti', 'next', 'like', 'hella', 'good', 'ooww'], ['watch', 'star', 'trek', 'next', 'watch', 'movi', 'theater', 'movi', 'realli', 'worth'], ['got', 'moommi', 'somn', 'special', 'mother', 'day'], ['good', 'next', 'time', 'get', 'ooh', 'know', 'go'], ['saturday', 'good', 'not', 'wait', 'monday', 'night'], ['go', 'uga', 'like', 'better', 'knew', 'ha'], ['hard', 'pleas', 'methink', 'pictur', 'head', 'fine'], ['thank', 'go', 'make', 'joke', 'say', 'look', 'like', 'mine'], ['like'], ['work', 'sever', 'book', 'project', 'due', 'releas', 'within', 'next', 'month', 'need', 'extra', 'pair', 'hand', 'good'], ['watch', 'ocean', 'vega', 'seem', 'appropri'], ['nice', 'dinner', 'hubbi', 'way', 'home', 'min', 'drive', 'citi', 'sigh'], ['love', 'catch', 'peopl', 'sing', 'car', 'even', 'better', 'danc'], ['lol', 'thank'], ['tire', 'hell', 'bed', 'time', 'cara', 'nighti', 'night', 'twitter', 'world'], ['sit', 'wait', 'dough', 'rise', 'someth', 'calm', 'mayb', 'knowledg', 'cinnamon', 'roll', 'soon'], ['know', 'love'], ['wow', 'might', 'counter', 'benedryl', 'enthusiasm'], ['tfarp', 'take', 'moment', 'translat', 'nod', 'quit', 'welcom', 'also', 'dear', 'probabl', 'best', 'stay'], ['way', 'home', 'love', 'long', 'car', 'ride', 'lt'], ['scare', 'lmao', 'someon', 'pls', 'tell'], ['cross', 'golden', 'state', 'nice', 'home'], ['lol', 'cute', 'way', 'happi', 'mother', 'day', 'ladi'], ['r', 'yvonn', 'not', 'seen', 'googl', 'group', 'day', 'miss', 'ya'], ['aww', 'two', 'cutest', 'god', 'love', 'hair'], ['think', 'dream', 'howev', 'memori', 'suck', 'mayb', 'not'], ['not', 'ya', 'know', 'peopl', 'love', 'human', 'societi'], ['found', 'earlier', 'today', 'go', 'uncl'], ['gah', 'got', 'song', 'itun', 'happi', 'awesom', 'keep'], ['likelyy', 'need', 'save', 'money', 'practic', 'ass'], ['almost', 'legal', 'limit', 'db', 'garag'], ['make', 'delici', 'pasta'], ['lol', 'love', 'thing'], ['flashlight', 'tag', 'love', 'play', 'game', 'dark'], ['wish', 'mom', 'world', 'happi', 'relax', 'mother', 'day', 'may', 'get', 'spend', 'day', 'feet', 'pamper'], ['alright', 'add', 'egg', 'mayb', 'sort', 'leftov', 'meat', 'not', 'bad', 'lt'], ['tomorrow', 'mother', 'day', 'n', 'sis', 'go', 'make', 'onigiri', 'go', 'kewl', 'not', 'wait', 'tomorrow', 'gt', 'lt'], ['oohh', 'yaay', 'like', 'love', 'ya'], ['glad', 'hear', 'tournament', 'soon', 'ksn', 'say', 'quot', 'need', 'practic', 'quot'], ['got', 'new', 'silverstein', 'cd', 'aha', 'amaz', 'high', 'recomend'], ['ooh', 'question', 'chain', 'hang', 'low', 'not', 'know', 'sorri'], ['think', 'go', 'fun', 'mayb', 'chang', 'come'], ['exact', 'pic', 'except', 'hubbi', 'amp', 'chihuahua', 'tucker', 'cute'], ['posit', 'thinker', 'sure', 'keep', 'around'], ['bore', 'need', 'peopl', 'rsmv', 'jagex', 'not', 'let', 'say', 'rsmv', 'unless', 'first', 'word', 'say', 'sentenc', 'sad'], ['beauti', 'dream', 'snuggl', 'beauti', 'babi', 'done', 'outdoor'], ['lol', 'r', 'not', 'loser', 'drove', 'hour', 'day', 'need', 'rest', 'day', 'still', 'tire', 'lol'], ['tri', 'make', 'feel', 'home'], ['not', 'wait', 'crack', 'open', 'doubt', 'learn', 'well', 'support', 'evangel'], ['ahh', 'imagin', 'look', 'luckyy', 'hope', 'fun'], ['thank', 'real', 'name', 'nadia'], ['great', 'hope', 'run', 'end', 'woo', 'hoo', 'got', 'love'], ['happi', 'mommah', 'day', 'mom'], ['welcom', 'welcom'], ['song', 'call', 'stolen', 'soo', 'amaz', 'dashboard', 'confession'], ['gave', 'homeless', 'ladi', 'name', 'rubi', 'ice', 'cream', 'sandwich', 'cigarett', 'deed', 'day', 'p'], ['chill', 'feel', 'realli', 'nice'], ['welcom', 'twitter', 'love', 'not', 'wait', 'see', 'next', 'month'], ['kind', 'swear', 'alway', 'feed', 'someon'], ['forgot', 'much', 'love', 'song', 'itun', 'love', 'shuffl', 'love', 'watch', 'prank', 'ap', 'tour'], ['yes', 'haahaa', 'break', 'jellybeaniess'], ['oh', 'believ', 'soo', 'think', 'belong', 'elsewher', 'say', 'not', 'think'], ['mine', 'lt'], ['happi', 'mother', 'day', 'mother'], ['ftsk', 'merci', 'merced', 'amaz', 'tonight', 'alway'], ['thank', 'makeup', 'art', 'come', 'hous', 'everi', 'morn', 'ha', 'ha'], ['thank', 'afrin', 'nasal', 'spray', 'also', 'got', 'giant', 'teacup', 'tonight'], ['happi', 'mother', 'day', 'special', 'mom', 'love', 'mommi'], ['got', 'home', 'hour', 'track', 'feel', 'real', 'good', 'run', 'nice', 'ab', 'work', 'push', 'up', 'haha'], ['interest', 'today', 'say', 'least', 'overal', 'good', 'day'], ['watch', 'white', 'hous', 'dinner', 'speech', 'barack', 'mani', 'kind', 'awesom'], ['thank', 'follow', 'friday', 'love'], ['hi', 'eric', 'hope', 'beauti', 'saturday'], ['soo', 'happi', 'kellz', 'back', 'tn', 'bout', 'hang', 'time'], ['quot', 'say', 'look', 'yummi', 'amp', 'want', 'tast', 'human', 'not', 'quot', 'lmfao', 'make'], ['best', 'sticker', 'ever', 'also', 'dig', 'hair', 'gotten', 'long', 'sinc', 'seen', 'last'], ['thank', 'yes', 'yes', 'hooray'], ['joke', 'love'], ['star', 'trek', 'great', 'yet', 'minor', 'detail', 'need', 'work', 'give', 'thumb', 'regardless'], ['mm', 'chocki', 'cake', 'oven', 'smell', 'delici'], ['umm', 'come', 'twin', 'slurpe', 'car', 'twin', 'go', 'pretti', 'epic'], ['beauti', 'outsid', 'wish', 'new', 'york', 'citi', 'area', 'pretti', 'cool', 'hip', 'trendi'], ['fun', 'doll', 'mom', 'danc', 'funni'], ['averag', 'per', 'hour', 'work', 'today', 'got', 'love', 'holiday'], ['listen', 'last', 'night', 'underground', 'screen', 'awesom', 'job'], ['quot', 'quot', 'calendar', 'quot', 'colland', 'quot', 'bahaha', 'part', 'hilari', 'cours', 'whole', 'thing', 'hilari'], ['bif', 'love', 'bulid'], ['aim', 'get', 'readi', 'go', 'bed', 'run', 'tommorow', 'mother', 'day', 'wish', 'luck'], ['mom', 'watch', 'new', 'video', 'actual', 'lol', 'love', 'xoxo'], ['realli', 'good', 'day', 'today'], ['hahhaa', 'okaay', 'ili', 'lmfao'], ['minotouro', 'fight'], ['final', 'go', 'bed', 'got', 'work', 'lot', 'love'], ['right', 'time', 'happi', 'face'], ['read', 'cryin', 'read', 'laughin', 'enjoy', 'ride', 'enlighten', 'inspir', 'letter', 'young', 'sister', 'thank', 'hill'], ['saw', 'zack', 'miri', 'make', 'porno', 'soo', 'good'], ['hungryy', 'go', 'eat', 'tradit', 'indian', 'pakistani', 'way', 'woowoo', 'hahaha', 'gt'], ['pik', 'hair', 'braid', 'scrub', 'make', 'relaxx', 'tonight', 'fun'], ['told', 'ya', 'good', 'girl', 'see', 'halo', 'everyth'], ['hey', 'tduke', 'flwd', 'immedi', 'dhmptn', 'mention', 'bit', 'tattoo', 'love', 'twitter'], ['love', 'app', 'thing', 'hella', 'awesom', 'bro'], ['sorri', 'got', 'behind', 'follow', 'still', 'catch', 'follow', 'folk', 'includ'], ['welcom'], ['relax', 'night', 'home', 'best', 'peopl'], ['quot', 'coome', 'feel', 'right', 'quot', 'hahaha'], ['fought', 'hour', 'claim', 'victori', 'hate', 'electron'], ['came', 'back', 'nice', 'bike', 'ride', 'famili', 'refresh', 'thank', 'shower'], ['right', 'pull', 'chair', 'welcom'], ['play', 'mythic', 'brawl', 'order', 'get', 'good', 'screenshot', 'instead', 'got', 'perfect'], ['cute'], ['bought', 'cheesecak', 'ice', 'cream', 'last', 'week', 'think', 'good', 'suck', 'much', 'take'], ['interest', 'watch', 'snl', 'ciara', 'justin', 'timberfak'], ['love', 'mom', 'happi', 'mother', 'day', 'mommi'], ['made', 'night', 'way', 'funni'], ['noth', 'perfect', 'life', 'darn'], ['hope', 'weather'], ['good', 'more'], ['women', 'scienc', 'amp', 'technolog', 'confer', 'la', 'jolla', 'interest', 'day', 'met', 'realli', 'great', 'peopl'], ['feelin', 'realli', 'aw', 'mono', 'suck', 'much', 'music'], ['thank', 'ffs', 'friend'], ['nice', 'idea', 'gift', 'crochet', 'good', 'idea', 'look', 'onlin', 'youtub', 'video', 'show', 'lefti', 'crochet'], ['want', 'say', 'taylor', 'swift', 'hayley', 'william', 'great', 'love', 'voic'], ['feel', 'like', 'dress', 'heck', 'amp', 'put', 'make', 'haha'], ['relax'], ['twitter', 'text', 'ipod', 'love', 'invent', 'mutitask'], ['search', 'ryan', 'carera', 'amp', 'josh', 'kelley', 'realli', 'good'], ['rock', 'guy', 'world', 'night', 'make', 'pancak', 'next', 'morn'], ['hellerr', 'new', 'followerss', 'tricina', 'amp', 'uhhm', 'cool'], ['realli', 'excit', 'queen', 'bee', 'power', 'mom', 'list', 'feel', 'realli', 'realli', 'honor', 'nielsenpowermom'], ['give', 'mother', 'anyth', 'special', 'make', 'cake', 'make', 'sure', 'mine', 'get', 'stressfre', 'day', 'cheesi', 'work'], ['ahh', 'wonder', 'adaptor'], ['happi', 'mother', 'day'], ['know', 'love'], ['love', 'new', 'profil', 'pic'], ['thank', 'great', 'time'], ['basebal', 'game', 'whoo', 'hoo', 'banquet', 'yesterday', 'hyhtt', 'soo', 'fun'], ['woah', 'realli', 'good', 'rain', 'earlier', 'rather', 'nice'], ['bring', 'hk', 'loung', 'tomorrow', 'drink', 'till', 'kareok', 'think', 'nice', 'sunday'], ['oh', 'usual', 'warn', 'new', 'follow', 'tend', 'canuck', 'game', 'apolog', 'advanc'], ['happi', 'mothr', 'day', 'thaa', 'mom', 'outt', 'thr'], ['loll', 'cours', 'amp', 'love', 'new', 'song'], ['better', 'also', 'yes', 'unf', 'unf', 'lt', 'still', 'not', 'gotten', 'way', 'smack'], ['hug', 'love', 'mamabear', 'happi', 'mom', 'day', 'case', 'not', 'see', 'around', 'tomorrow'], ['got', 'back', 'sing', 'loud', 'concert', 'fuckin', 'amaz'], ['cute'], ['midg', 'definit', 'tie', 'first', 'complet', 'dumb', 'yeah', 'punk', 'inde'], ['happi', 'mother', 'day', 'oh', 'love', 'mom', 'heheh', 'happi', 'mom', 'day'], ['glad', 'lot', 'happier', 'barakitten', 'lt', 'see', 'yah', 'juli'], ['aww', 'thank', 'glad', 'appreci', 'weather', 'much', 'yesterday'], ['extrem', 'clever', 'dear'], ['fantast', 'thank'], ['lucki', 'awesom'], ['come', 'kirk', 'hook', 'wii', 'eet'], ['back', 'long', 'day', 'naz', 'gunna', 'crash', 'tomorrow', 'mother', 'day', 'edit', 'photo', 'today', 'hangin', 'mom', 'etc'], ['good', 'home'], ['great', 'weekend', 'mononok', 'may', 'tweet', 'insid', 'movi', 'theater', 'either', 'monday', 'tuesday', 'lol'], ['final', 'make', 'headway', 'famili', 'room', 'home', 'final', 'begin', 'look', 'like', 'way', 'dial', 'go', 'die'], ['spend', 'night', 'mom', 'tommi', 'order', 'pizza', 'hut', 'yum'], ['aww', 'bad', 'not', 'would', 'entertain', 'thought', 'enter'], ['wake', 'yuup', 'still', 'go', 'tonight', 'better', 'believ'], ['accumul', 'money', 'use', 'fanci', 'financ', 'app', 'think', 'get', 'anoth', 'cd', 'ira', 'save', 'hous', 'crazi'], ['wind', 'love', 'low', 'key', 'day'], ['parti', 'long', 'twitter', 'see', 'ya', 'mornin'], ['haha', 'state', 'pride', 'import'], ['mee', 'sound', 'delici'], ['thank', 'followfriday'], ['hope', 'nerdprom', 'sound', 'like', 'lot', 'fun', 'thank'], ['look', 'forward', 'read', 'post', 'like', 'bullshit', 'write', 'often', 'learn', 'thing'], ['end', 'magic', 'dream', 'win', 'along', 'sway', 'back', 'forth', 'within', 'site', 'sleep', 'mommi'], ['time', 'finish', 'essay', 'sunday', 'woop'], ['omg', 'pic', 'youu', 'look', 'cuut'], ['succes', 'love'], ['watch', 'anoth', 'episod', 'jona', 'better', 'hannah', 'montana', 'much', 'true'], ['hi', 'ty', 'good', 'morn', 'happi', 'mom', 'day', 'mom', 'love', 'entir', 'famili', 'ad', 'fb', 'love', 'sweet'], ['aural', 'good'], ['hungri', 'singl', 'head', 'golf', 'rang', 'soon'], ['haha', 'love', 'aime'], ['hope', 'great', 'weekend', 'say', 'hi', 'fam'], ['thank', 'ff'], ['true', 'think', 'import', 'sensit', 'relat', 'other', 'empathi', 'remind', 'not', 'judg', 'book', 'cover'], ['got', 'yr', 'home', 'amp', 'hous', 'amp', 'alway', 'bring', 'friend', 'hope', 'bless', 'day'], ['rain', 'rain', 'rain', 'wow', 'actual', 'love', 'rain'], ['aww', 'jim', 'jam', 'good', 'dodg', 'meatbal', 'woo'], ['molli', 'born', 'birthday', 'cue', 'twilight', 'zone', 'music'], ['happi', 'mother', 'day', 'mang', 'thank', 'love'], ['wish', 'mother', 'flatworld', 'happi', 'amp', 'awesom', 'mother', 'day'], ['way', 'order', 'yer', 'merch', 'yesterday', 'lt'], ['yes', 'want', 'keep', 'go', 'would'], ['oo', 'studi', 'today', 'outsid', 'wear', 'sundress', 'hope', 'not', 'get', 'awkward', 'tan', 'line', 'haha'], ['sorri', 'squirrellist', 'talk', 'black', 'sliver', 'squirrel'], ['favourit', 'song', 'tonight', 'cheer', 'tokyo', 'polic', 'club'], ['bahaha', 'look', 'like', 'kung', 'fu', 'panda', 'wake', 'morn'], ['love', 'well'], ['think', 'alway', 'offtop', 'sometim', 'inappropri', 'germin', 'quot', 'fruit', 'pick', 'quot', 'joke', 'etc'], ['fun', 'tonight'], ['welcom', 'deserv', 'followfriday', 'everi', 'day'], ['ohh', 'bad', 'yes', 'heh', 'heh'], ['realli', 'realli', 'like', 'song', 'love', 'stori', 'taylor', 'swift'], ['thank', 'advic', 'went', 'doctor', 'slept', 'lot', 'yesterday', 'must', 'med'], ['got', 'new', 'ipod', 'life', 'good'], ['way', 'not', 'know', 'sing', 'rof', 'without', 'doubt', 'fave', 'done', 'idol', 'thus', 'far', 'moment'], ['twitter', 'soo', 'pretti', 'damn', 'cool'], ['amend', 'right', 'big', 'pimpin', 'got', 'say', 'posit', 'right', 'best', 'man', 'time', 'tonight', 'thrd'], ['would', 'think', 'pres', 'would', 'afraid', 'would', 'pun', 'k'], ['truth'], ['decid', 'wolf', 'futur', 'star', 'trek', 'logo', 'game', 'would', 'much', 'cooler', 'chewi', 'star', 'war'], ['beauti', 'song', 'anyon', 'could', 'use', 'pick', 'tonight'], ['hot', 'personifi'], ['lol', 'twitter', 'addict'], ['blackberri', 'ran', 'juic', 'middl', 'miser', 'twitter', 'email', 'beck', 'call', 'truli', 'aw'], ['woke', 'delight', 'nap', 'not', 'desrib', 'much', 'success', 'involv', 'nap', 'sat', 'rhubarb'], ['happi', 'mother', 'day'], ['get', 'see', 'hope', 'meet', 'guy', 'next', 'week', 'rotr', 'not', 'wait', 'adelita', 'way', 'invinc'], ['pue', 'bien', 'small', 'world', 'small', 'world', 'yo', 'amo', 'la', 'chiquita', 'esa', 'great', 'friend'], ['made', 'cake', 'mi', 'madr', 'goodd'], ['excel', 'point'], ['realli', 'cool'], ['congratul', 'check', 'one', 'list'], ['teach', 'peopl', 'beauti', 'twitter'], ['usher', 'guy', 'made', 'mother', 'day', 'realli', 'awesom', 'today', 'thank', 'come', 'earli', 'prep', 'surpris', 'gift', 'mom'], ['oh', 'awesom', 'yahoo', 'good', 'night', 'sleep', 'tight', 'not', 'let', 'bed', 'bug', 'bite'], ['dakota', 'first', 'bath', 'sinc', 'spay', 'heaven'], ['yes'], ['mine', 'hayley', 'great'], ['hayley', 'william', 'pretti', 'much', 'amazz'], ['taylor', 'back', 'nashvill', 'la', 'well', 'trip', 'ya', 'fun', 'love', 'ya', 'gir'], ['woot', 'woot', 'super', 'cool'], ['ton', 'fun', 'w', 'muffin', 'today'], ['happi', 'mother', 'day', 'mum', 'life', 'not'], ['saw', 'new', 'star', 'trek', 'movi', 'good', 'zachari', 'quinto', 'amazingg'], ['laundri', 'tonight', 'guess', 'admit', 'pave', 'way'], ['doubl', 'cheeseburg', 'fri', 'golden', 'sicker', 'dog', 'tomorrow'], ['star', 'trek', 'actual', 'realli', 'good'], ['oh', 'yes', 'amaz', 'nice', 'next', 'go', 'drive', 'trust', 'us', 'haha'], ['fun', 'haha', 'guy', 'american', 'reject', 'look', 'like', 'crack'], ['sure', 'long', 'said', 'glad', 'like'], ['yeah', 'freedom', 'awesom', 'great', 'littl', 'independ'], ['dw', 'funni'], ['girl', 'make', 'giggl', 'twinz', 'twinz', 'godda', 'hit', 'bbq'], ['need', 'chang', 'way', 'instead', 'weak', 'love', 'great', 'role', 'model'], ['get', 'readi', 'concert', 'tonight', 'yay'], ['elop', 'not', 'wait', 'see', 'pictur', 'dress', 'breath', 'take'], ['first', 'night', 'myer', 'not', 'lydia', 'actual', 'excit', 'summer'], ['lao', 'mein', 'spanikopita', 'haha', 'would', 'know'], ['anim', 'ad', 'work', 'one', 'favorit', 'thing', 'much', 'saturday', 'night', 'fun'], ['leon', 'look', 'supa', 'fli', 'mini', 'couch'], ['final', 'made', 'jp', 'lick', 'coolidg', 'corner', 'oreo', 'soft', 'serv'], ['quot', 'not', 'rape', 'scream', 'surpris', 'quot', 'custom', 'said', 'haha', 'via', 'lmao'], ['got', 'back', 'six', 'flag', 'wick', 'fun', 'even', 'though', 'almost', 'die'], ['haha', 'thank', 'histori', 'invent', 'televis', 'influenc', 'america', 'lol'], ['write', 'music', 'lit', 'final', 'paper', 'mozart', 'ein', 'klein', 'nashtmusik', 'mom', 'give', 'actual', 'great', 'time'], ['mm', 'mcdonald', 'coffe', 'soo', 'go', 'hookah', 'tonight', 'abbster'], ['way', 'still', 'not', 'believ', 'awesom', 'newjabbakidz', 'perform', 'scream', 'pc'], ['noth', 'better', 'grandaught', 'smile', 'noth', 'feel', 'better', 'big', 'hug', 'grandkid', 'hoot'], ['saw', 'shoot', 'star', 'made', 'wish'], ['lol', 'fine', 'way', 'weekend'], ['finish', 'ysc', 'runthrough', 'servic', 'go', 'awesom'], ['help', 'pay', 'reactiv'], ['watch', 'quot', 'thing', 'quot', 'comcast', 'miss', 'boo', 'like', 'crrazi'], ['thank', 'follow'], ['lmao', 'haha', 'nice', 'lolz', 'good', 'though', 'wait', 'lol'], ['good', 'morn', 'everbodi'], ['mom', 'pril'], ['right'], ['good', 'night', 'sleep', 'good', 'mornin', 'xd'], ['alright', 'parti', 'success', 'fun', 'amp'], ['know', 'excit'], ['mm', 'late', 'night', 'bruster', 'ice', 'cream', 'om', 'nom', 'nom', 'nom'], ['happi', 'mother', 'day', 'mom', 'mother', 'world'], ['way', 'still', 'not', 'believ', 'awesom', 'newjabbakidz', 'perform', 'scream', 'pc'], ['reach', 'cellgroup', 'leader', 'hous', 'surpris', 'dri', 'haha'], ['not', 'ya', 'love', 'free', 'night', 'catch', 'dvr', 'show', 'antm', 'ha'], ['best', 'day', 'ever', 'miss', 'tomorrow'], ['food', 'look', 'amaz', 'dessert', 'frozen', 'grand', 'marnier', 'souffl', 'cours', 'eat', 'bar'], ['lone', 'battl', 'friend', 'fought', 'valiant'], ['got', 'back', 'greenlak', 'nice', 'day', 'today'], ['best', 'husband', 'ever', 'realli', 'lucki', 'hope', 'wonder', 'saturday', 'even'], ['haha', 'nice', 'ring', 'let', 'us', 'get', 'use', 'ok', 'iloveyoutoo'], ['way', 'still', 'not', 'believ', 'awesom', 'newjabbakidz', 'perform', 'scream', 'pc'], ['great', 'mother', 'day'], ['cool', 'guid', 'best', 'tip', 'not', 'use', 'unless', 'absolut', 'need'], ['zz', 'take', 'mom', 'breakfast', 'tomorrow', 'shall', 'quit', 'treat'], ['thank', 'guy', 'follow'], ['pretti', 'hope', 'win'], ['happi', 'mother', 'day', 'ya', 'tomorrow'], ['read', 'status', 'updat', 'amp', 'want', 'b', 'sure', 'follow', 'list', 'hope', 'r', 'wondefl', 'wkend'], ['not', 'care', 'netsexor', 'cam', 'rout', 'heaven', 'howev', 'lobster', 'sound', 'super', 'good', 'almost', 'tempt', 'go', 'get'], ['one', 'wish', 'video', 'compil', 'thrust'], ['nice', 'long', 'nap'], ['haha', 'thank'], ['write', 'research', 'tire', 'foolish', 'educ', 'amp', 'move', 'forward', 'go', 'marri', 'white', 'boy', 'right'], ['go', 'canada', 'made', 'nikki', 'payn', 'comic', 'well', 'soo', 'yeah', 'funni', 'perv', 'teen', 'peopl', 'famili'], ['hey', 'pleasant', 'surpris'], ['jump', 'nearest', 'bridg', 'not'], ['whoop', 'start', 'trek', 'start', 'duh'], ['hey', 'jodi', 'ugg', 'bore', 'made', 'sunda', 'c', 'monday', 'hahaha', 'ryme', 'loll', 'cu', 'school'], ['happi', 'sunday'], ['omg', 'much', 'fun', 'watc', 'hous', 'bunni', 'courto', 'isa', 'ledg', 'send', 'link', 'lt'], ['love', 'mom', 'best', 'mom', 'planet'], ['sometim', 'wish', 'twitter', 'facebook', 'quot', 'like', 'quot', 'could', 'give', 'thumb', 'great', 'job', 'either', 'way', 'suck', 'way'], ['weird', 'mood', 'muahaz'], ['much', 'fun', 'famili', 'happi', 'birthday', 'beauti', 'aunt'], ['crappi'], ['good', 'morn'], ['great', 'point', 'not', 'shit', 'wood', 'sara', 'know', 'better', 'haha'], ['love', 'paramor', 'welcom', 'back'], ['tsx', 'nice', 'cuz', 'new', 'handl', 'nice', 'not', 'hors'], ['would', 'love', 'sleep', 'pete', 'lmfao', 'jk'], ['hey', 'guy', 'went', 'jenni', 'hous', 'today', 'much', 'fun', 'everyon', 'els', 'guy', 'doo'], ['hope', 'great', 'day', 'tomorrow', 'happi', 'mother', 'day', 'let', 'us', 'know'], ['new', 'song', 'amaz'], ['feel', 'special', 'first', 'guy', 'give', 'flower'], ['holi', 'smoke', 'star', 'trek', 'freak', 'awesome'], ['yeah', 'think', 'ahaha'], ['hey', 'huge', 'fan', 'hope', 'fun', 'wango', 'tango'], ['got', 'back', 'awesom', 'need', 'danc', 'often', 'overal', 'awesom', 'night'], ['walk', 'street', 'harlem', 'home', 'sweet', 'home'], ['hahaa', 'awesome'], ['got', 'done', 'watch', 'bedtim', 'stori', 'love', 'movi'], ['yep', 'toler', 'noth', 'facebook', 'group'], ['feel', 'like', 'watch', 'twilight', 'amp', 'enjoy'], ['proud', 'nau', 'graduat', 'friend', 'get', 'readi', 'celebr', 'tonight', 'intern'], ['guy', 'look', 'nice'], ['wtf', 'lmao', 'got', 'hit', 'head', 'bloodi', 'ball'], ['mgm', 'grand', 'mraz', 'stage', 'doubl', 'back', 'open', 'lot', 'old', 'memori', 'flood', 'back'], ['congratul', 'win', 'indi', 'award'], ['good', 'day'], ['alright', 'sorri', 'think', 'go', 'anyway'], ['realis', 'got', 'home', 'left', 'mine', 'fridg', 'welcom', 'like'], ['alright', 'not', 'want', 'overdu', 'lol', 'funni', 'nite', 'nite'], ['go', 'bed', 'love', 'jona', 'brother', 'last', 'time', 'megan', 'togeth', 'weekend', 'premier', 'jona', 'lt'], ['best', 'kind', 'gum', 'ever', 'bought', 'pack'], ['got', 'home', 'show', 'open', 'fantast', 'thank', 'everyon', 'came'], ['long', 'pain', 'mile', 'today', 'knee', 'ach', 'approach', 'year', 'rough', 'not', 'accept', 'well', 'glass', 'draft', 'help'], ['guy', 'awesom', 'coupl'], ['enjoy', 'first', 'day', 'summer'], ['nice', 'see', 'twitter'], ['good', 'catch', 'thank', 'put', 'new', 'widget'], ['happi', 'mother', 'day'], ['awesom', 'want', 'roll', 'becom', 'mogul', 'status'], ['ooh', 'storm', 'alway', 'welcom', 'news', 'happi', 'mother', 'day'], ['mother', 'citi', 'terrel', 'texa', 'district', 'council', 'seat', 'lol', 'happi', 'mother', 'day'], ['pic', 'ah', 'probabl', 'see', 'work', 'point', 'hope', 'grow', 'much'], ['happi', 'mother', 'day', 'mum'], ['mrskutcher', 'amp', 'aplusk', 'two', 'funni'], ['good', 'weekend'], ['happi', 'mother', 'day'], ['happi', 'mother', 'day', 'mum'], ['like', 'cooki', 'go', 'love', 'cooki', 'lar', 'teten', 'cooki', 'come', 'see', 'us'], ['got', 'back', 'grandpar', 'supris', 'anniversari', 'soo', 'much', 'fun'], ['good', 'day', 'go', 'get', 'bed'], ['fort', 'green', 'brooklyn', 'flea', 'love', 'look', 'forward', 'next', 'weekend', 'alreadi'], ['haha', 'watch', 'funni', 'ass', 'video', 'youtub', 'made', 'day'], ['not', 'ever', 'weig', 'north', 'avoid', 'drive', 'home'], ['shock', 'amp', 'put', 'thing', 'whole', 'new', 'empow', 'light', 'not'], ['well', 'propel', 'peopl', 'chang', 'direct', 'point', 'wast', 'day', 'someth', 'lost', 'passion'], ['well', 'tonight', 'would', 'good', 'time', 'watch'], ['thank', 'mom', 'seed', 'larger', 'alreadi', 'crack', 'plant', 'hope', 'avalina', 'not', 'dud'], ['snappi', 'deliv', 'tea', 'ice', 'cream', 'love', 'sister'], ['go', 'church', 'momma', 'day', 'almost'], ['great', 'parti', 'alenka', 'happi', 'birthday', 'chicki', 'lt'], ['sweet', 'tri', 'earn', 'crown', 'gluten', 'free', 'bake'], ['bonfir', 'fave'], ['make', 'wish'], ['patrick', 'come', 'say', 'hi'], ['haha', 'right'], ['alway', 'champion', 'leagu', 'parti', 'awesom'], ['way', 'happi', 'mom', 'day', 'hannah', 'mom', 'han', 'mom', 'yey', 'mom', 'unit', 'day'], ['grill', 'chicken', 'broccolli', 'water', 'yummi', 'healthi', 'well', 'put', 'butter', 'veggi', 'whatev'], ['got', 'littl', 'much', 'sun', 'today'], ['lol', 'yes', 'total', 'agre', 'blog', 'well'], ['honest', 'say', 'themat', 'big', 'part', 'blog', 'enthusiam', 'love', 'abl', 'want'], ['happi', 'great', 'glowi', 'ravey', 'beeri', 'night', 'smokey', 'pizzari', 'night', 'cool', 'friend', 'love', 'liz', 'x'], ['watch', 'chelsea', 'late', 'love', 'lt'], ['tonight', 'good', 'night', 'everyon'], ['well', 'could', 'not', 'get', 'real', 'clear', 'shot', 'got', 'best', 'peopl', 'walk', 'admit', 'er'], ['congrat', 'proud', 'girl'], ['matter', 'love', 'take', 'pick', 'ha'], ['wish'], ['happi', 'birthday', 'sorri', 'blank', 'one', 'sister', 'mess'], ['loov', 'star', 'trek', 'run', 'famili'], ['thank'], ['l', 'ice', 'grand', 'french', 'vanilla', 'soy', 'milk', 'starbuck', 'mean', 'summaa', 'come'], ['new', 'passion'], ['not', 'make', 'smoke', 'thank', 'r'], ['girl', 'crazi', 'love', 'hahaha', 'got', 'yo', 'lp', 'chap'], ['awesom', 'mayb', 'someday', 'find', 'book', 'bestsel', 'list', 'lol'], ['roflmfao', 'love', 'us', 'better', 'not'], ['peanut', 'butter', 'soup', 'amaz', 'everyth', 'els', 'soup', 'higher', 'form', 'amaz'], ['cute', 'man', 'cute', 'cours', 'remind', 'scion'], ['thank', 'fabric', 'addict', 'late', 'bought', 'soo', 'much'], ['realli', 'awesom'], ['listen', 'metal', 'shop', 'mooney', 'good'], ['happi', 'mother', 'day'], ['nice', 'order', 'mom', 'gift', 'sister', 'someth', 'differ', 'unexpect'], ['thank', 'first', 'one', 'wish', 'happi', 'mother', 'day'], ['could', 'not', 'true', 'like', 'momma', 'style'], ['heart', 'girl', 'let', 'us', 'hang', 'soon'], ['watch', 'fav', 'play', 'game', 'quot', 'ever', 'notic', 'men', 'start', 'act', 'around', 'spring', 'time', 'quot', 'shant', 'smith'], ['perfect', 'night', 'nj'], ['god', 'good'], ['not', 'feel', 'pressur', 'right', 'happi', 'mother', 'day', 'peopl'], ['probabl', 'coolest', 'thing', 'ever', 'done'], ['anyth', 'bookmark', 'keychain', 'surpris'], ['lmao', 'dimpl', 'naww', 'cute', 'ok', 'ill', 'tri', 'rememb', 'first', 'winter', 'dimpl', 'day'], ['boy', 'hes', 'cute', 'hes', 'got', 'six', 'pack', 'yum', 'fun', 'touchin'], ['today', 'love', 'day', 'fun', 'even'], ['wish', 'quot', 'like', 'quot', 'option', 'like', 'fb', 'thing', 'like'], ['definit'], ['free', 'free', 'peski', 'registr', 'enjoy'], ['found', 'best', 'songd', 'stuck', 'head', 'relient', 'k', 'know', 'everi', 'word', 'finish'], ['love', 'life', 'late', 'look', 'forward', 'go', 'see', 'samantha', 'hang', 'natali', 'right'], ['makeup', 'cute', 'dress', 'readi', 'go'], ['congrat', 'graduat', 'colleg'], ['beauti', 'albeit', 'windi', 'time', 'night'], ['love', 'black', 'eye', 'pea', 'mani', 'memori', 'watch', 'hulk'], ['love', 'guy', 'amaz'], ['iloveyoumore'], ['good', 'luck', 'babi'], ['thank'], ['love', 'gossip', 'girl', 'episod', 'wrath', 'con'], ['gift', 'publish', 'episod', 'align', 'sensit', 'level', 'min', 'yoga', 'class'], ['put', 'tv', 'canuck', 'game', 'score', 'yaay', 'come', 'vanciti', 'babi', 'know', 'not', 'believ', 'watch', 'hockey', 'either'], ['super', 'bueno', 'ftw', 'proud', 'guy'], ['tell', 'obvious', 'real', 'life', 'make', 'great', 'entertain', 'tv', 'great', 'tri', 'figur', 'killer'], ['tell', 'us', 'experi', 'love', 'youu'], ['jona', 'absolut', 'heartwarm', 'time', 'bed', 'goodnight'], ['end', 'te', 'funniest', 'see', 'know', 'paranoif', 'alway', 'stuck', 'head', 'love'], ['aha', 'mom', 'super', 'power', 'guilt'], ['realli', 'bahaha', 'love', 'relat', 'peopl', 'haha'], ['got', 'reconnect', 'dear', 'friend', 'tonight', 'lucki', 'mani', 'great', 'peopl', 'life', 'bless'], ['go', 'celebr', 'mother', 'day', 'famili', 'go', 'start', 'parti', 'tonit'], ['fun', 'night', 'bekah', 'talkin', 'stuff', 'wuv'], ['dedic', 'today', 'mother', 'day', 'video', 'without', 'mom', 'dad', 'would', 'not', 'tweet'], ['lucki', 'belong'], ['nice', 'cousin', 'left', 'hous', 'daughter', 'daddi', 'girl', 'sweet'], ['happi', 'mother', 'day', 'beach', 'famili', 'warm', 'clear', 'night', 'beauti', 'full', 'moon'], ['make', 'video', 'hitrecord', 'hope', 'come', 'well', 'first', 'record'], ['alon', 'home', 'nice', 'nice'], ['sure', 'wife', 'seem', 'like', 'cool', 'cat'], ['hang', 'roomi', 'ador', 'gentlemen', 'live', 'great', 'peopl', 'good', 'talk', 'discuss', 'boy', 'issu'], ['woah', 'love', 'new', 'twitter', 'app', 'mani', 'new', 'thing', 'got', 'finish', 'watch', 'video', 'good'], ['hey', 'david', 'hot'], ['great', 'time', 'surpris', 'parti', 'got', 'good'], ['fun', 'got', 'retweet', 'bot'], ['lol', 'tiz', 'good', 'song'], ['star', 'trek', 'good', 'time'], ['crawl', 'bed', 'super', 'happi', 'penguin', 'tonight'], ['justin', 'timberlak', 'soo', 'funni'], ['phase', 'success', 'self', 'discoveri', 'vital', 'phase', 'min', 'away', 'cool', 'amp', 'classi', 'babi', 'shout', 'quot', 'quot', 'yeah', 'mane'], ['dude', 'awesom'], ['excit', 'pari', 'ooh', 'lala', 'look', 'forward', 'know', 'long', 'long', 'time', 'love', 'hug', 'n', 'kiss', 'g'], ['today', 'alot', 'fun', 'love', 'famili', 'sammi', 'hernandez', 'caitlin', 'hugh', 'goodnight'], ['love', 'john', 'mayer', 'updat', 'model', 'hot', 'sun', 'sweati', 'jk', 'serious'], ['nice', 'good', 'night'], ['sin'], ['perfect', 'song'], ['heart', 'face'], ['play', 'ghost', 'onlin', 'realli', 'interest', 'new', 'updat', 'kirin', 'pet', 'metamorph', 'third', 'job', 'not', 'wait', 'dragon', 'pet'], ['new', 'pickkshaa', 'realli', 'big', 'look', 'milki', 'yaay'], ['birthday', 'may', 'right', 'probabl', 'happi', 'birthday', 'anyway'], ['pretti', 'babi'], ['oh', 'yah', 'angel', 'came', 'harrass', 'tri', 'break', 'hous', 'lol', 'burgen'], ['not', 'wait', 'see', 'boy', 'tomorrow'], ['watch', 'beauti', 'amp', 'beast', 'haha'], ['thank', 'good', 'friend', 'come', 'hang', 'ear', 'know'], ['awesom', 'kind'], ['nice', 'win', 'dodger', 'giant'], ['whoohoo', 'went', 'get', 'movi', 'junk', 'food', 'women', 'night', 'mwahaha', 'gt'], ['um', 'realli', 'scari', 'pleas', 'safe', 'way', 'ill', 'orlando', 'next', 'week'], ['got', 'good', 'happi', 'mother', 'day'], ['ha', 'total', 'go', 'journal', 'major', 'perfect', 'fit'], ['white', 'hous', 'thing', 'lifesav'], ['today', 'event'], ['take', 'fun'], ['watch', 'one', 'fine', 'day', 'eat', 'cereal', 'start', 'good', 'sunday', 'good', 'movi'], ['follow', 'new', 'sanctuari', 'fan', 'see', 'wonder', 'sanctuarysunday', 'good', 'meet'], ['thank', 'great', 'even', 'better', 'soon', 'get', 'wallet', 'grubbi', 'littl', 'hand', 'lol'], ['go', 'cincinnati', 'day', 'old', 'korea', 'date', 'someon', 'special'], ['watch', 'quot', 'steel', 'magnolia', 'quot', 'go', 'bed', 'babysit', 'one', 'tomorrow', 'give', 'mommi', 'gift', 'night', 'lt'], ['husband', 'think', 'twitter', 'make', 'creeper', 'whatev'], ['retweet', 'pleas', 'awesom', 'kawaii', 'anim', 'cosplay', 'item'], ['awesom', 'famili', 'own', 'flower', 'love', 'kid', 'seem', 'lot', 'fun'], ['lol', 'good', 'men', 'watch', 'flick', 'sigh', 'good', 'flick', 'far', 'call', 'quot', 'said', 'quot'], ['yes', 'thank'], ['would', 'soo', 'honour', 'cld', 'chk', 'beat', 'perhap', 'sm', 'advic', 'wat', 'nd', 'improv', 'da', 'overal', 'sound', 'music'], ['good', 'not', 'think', 'join', 'later', 'hyper', 'hell', 'though', 'whee'], ['turn', 'hope', 'get', 'neww', 'cd', 'funki', 'reel', 'music', 'todayi'], ['thank', 'follow'], ['rough', 'hubbi', 'knee', 'surgeri', 'help', 'end', 'let', 'us', 'know', 'result', 'keep', 'prayer'], ['care', 'hockey'], ['way', 'earli', 'anyway', 'nigth', 'night', 'love'], ['got', 'degre', 'bs'], ['not', 'wait', 'next', 'twitter'], ['look', 'like', 'fun'], ['thank', 'download', 'trial', 'version', 'stuffit', 'work', 'good', 'advic'], ['yeah', 'hope', 'not', 'mayb', 'save', 'get', 'christma', 'find'], ['want', 'wish', 'mom', 'happi', 'mother', 'day', 'hope', 'treat', 'like', 'queen'], ['yet', 'understand', 'sentenc', 'ever', 'type', 'kind', 'learn', 'foreign', 'languag', 'amp', 'love', 'quot'], ['good', 'starship', 'trooper', 'cool', 'citizen'], ['greg', 'back', 'top', 'love', 'nascar'], ['guy', 'got', 'someon', 'saran', 'wrap', 'tuesday', 'video', 'shall', 'awesom'], ['like', 'seuss', 'quot', 'know', 'love', 'not', 'fall', 'asleep', 'realiti', 'final', 'better', 'quot'], ['two', 'new', 'favorit', 'prayer', 'quot', 'help', 'help', 'help', 'quot', 'quot', 'thank', 'thank', 'thank', 'quot'], ['rocki', 'kind', 'littl', 'rockpool', 'amp', 'octopi', 'amp', 'shell', 'amp', 'stuff', 'want', 'beach', 'perfect', 'overcast', 'day'], ['thank', 'carri', 'crazi'], ['hubbi', 'adoarbl', 'babi', 'brother'], ['day', 'must', 'look', 'hard', 'good', 'thing'], ['bad', 'rum', 'experi', 'colleg', 'still', 'not', 'recov'], ['aww', 'cute'], ['nice', 'clutch'], ['must', 'ask', 'cub', 'fan', 'not', 'fathom'], ['yay', 'break'], ['happi', 'mother', 'day', 'pat', 'carey'], ['food', 'yummi', 'whose', 'wash', 'dish', 'not', 'not', 'rofl'], ['oh', 'well', 'good', 'get', 'weather', 'updat', 'instead', 'jk'], ['shall', 'annoy', 'tweet', 'tomorrow'], ['pfftt', 'know', 'like', 'stay', 'busi', 'awesom'], ['enjoy', 'night'], ['chicago', 'rock', 'sock'], ['four', 'hour', 'basebal', 'game', 'least', 'crew', 'spent', 'much', 'make', 'cubbi', 'look', 'bad'], ['hahahaha', 'nice', 'gave', 'bio', 'cos', 'not', 'know', 'hell', 'hello', 'chem'], ['bowl', 'cousin', 'awesom'], ['power', 'not', 'see', 'love', 'storm'], ['haha', 'thank'], ['anoth', 'birthday', 'w', 'special', 'friend'], ['love', 'weekend'], ['strip', 'club', 'pick'], ['aw', 'yay'], ['pride', 'next', 'weekend', 'long', 'beach'], ['goodnight'], ['watch', 'movi', 'holiday', 'forgotten', 'feel', 'good', 'movi', 'love', 'even'], ['ok', 'time', 'bed', 'good', 'night', 'twitter'], ['go', 'ride', 'perfect', 'night', 'go', 'chill'], ['nice', 'dinner', 'mom', 'start', 'chicken', 'roll', 'go', 'cook', 'overnight', 'rest', 'tomorrow'], ['not', 'watch', 'star', 'trek', 'tonight', 'head', 'love', 'dinner', 'fun', 'board', 'game', 'night'], ['good', 'luck', 'doubt', 'hilari', 'realli', 'hope', 'see', 'dress', 'kind', 'foam', 'food', 'item', 'go'], ['wh', 'correspond', 'dinner', 'rock', 'wanda', 'syke', 'hilari', 'obama', 'not', 'bad', 'happi', 'mother', 'day', 'mom'], ['watch', 'one', 'fav', 'movi', 'sparkl', 'go', 'get', 'food', 'later'], ['week', 'hope', 'next', 'week', 'even', 'better', 'nyc', 'day'], ['watch', 'tv', 'best', 'peopl', 'whole', 'world', 'mum', 'sis', 'agus', 'love', 'twitter', 'later', 'ha'], ['came', 'back', 'karaok', 'amp', 'eat', 'dinner', 'emili', 'soo', 'much', 'fun'], ['yes', 'lol', 'good', 'one', 'bottom', 'alway', 'top'], ['good', 'day', 'lot', 'stretch', 'sleep', 'sun'], ['bioshock', 'fantast', 'first', 'time', 'play', 'sleep', 'bioshock', 'tomorrow'], ['happi', 'mother', 'day', 'go', 'help', 'mine', 'right', 'deserv', 'guy'], ['ha', 'thought', 'would', 'enjoy', 'famili', 'guy', 'refer', 'bore'], ['poor', 'live', 'germani', 'favourit', 'cheap', 'saturday', 'one', 'away'], ['parti', 'great', 'time', 'got', 'rington', 'yay'], ['margarita', 'momo', 'miss'], ['heh', 'heh', 'odd', 'amus', 'thank'], ['time', 'go', 'swim', 'freez', 'water', 'kali', 'yeah'], ['thank', 'link', 'made', 'smile'], ['case', 'yeah', 'start', 'work', 'tomorrow', 'excit'], ['haha', 'wish', 'coudl', 'meet', 'stop', 'seattl', 'time', 'home', 'starbuk', 'love', 'david'], ['glad', 'final', 'done', 'final'], ['get', 'not', 'go', 'lol', 'least', 'not', 'get', 'hope'], ['back', 'soap', 'soo', 'fun'], ['hahaah', 'crys', 'blow', 'fuse', 'typic', 'move'], ['yay', 'go', 'leav', 'earlier', 'not', 'wait', 'get', 'back', 'hawthorn'], ['would', 'like', 'put', 'fruiti', 'articl', 'websit', 'permit'], ['add', 'shop', 'favorit', 'love', 'needl', 'wrap', 'right', 'needl', 'mess', 'basket'], ['feet', 'not', 'forget', 'crunch', 'product', 'day', 'today', 'though'], ['watch', 'snl', 'love', 'life', 'host'], ['thee', 'ladi', 'get', 'retard'], ['wear', 'quot', 'purpl', 'passion', 'quot', 'opi', 'absolut', 'love'], ['outta', 'shower', 'bad', 'justin', 'could', 'not', 'spend', 'night', 'haha'], ['crack', 'amp', 'phootoboothingisfunforbunni', 'volumen', 'ein'], ['dad', 'gave', 'old', 'blackberri', 'not', 'old', 'not', 'even', 'scroll', 'ball', 'want', 'bold'], ['today', 'fun', 'lt', 'meet', 'boardi', 'acoust', 'set', 'soo', 'phenomen'], ['watch', 'snl', 'gahh', 'fort', 'soo', 'funti'], ['thank', 'tri', 'behav'], ['cooki', 'good'], ['time', 'bed', 'hope', 'saturday', 'love', 'mine'], ['enough', 'today', 'good', 'night'], ['watch', 'snl', 'yay', 'host', 'love'], ['jona', 'rock', 'tonight', 'go', 'bed', 'write', 'lil', 'bit', 'night', 'bless'], ['feel', 'pretti', 'good', 'check', 'say'], ['watch', 'bodi', 'film'], ['fam', 'well', 'hope'], ['love', 'sex', 'tragedi', 'high', 'interest', 'influenc', 'classic', 'modern', 'world'], ['think', 'snapshot', 'befoor', 'vid', 'record', 'seesmic', 'ladi', 'not', 'look', 'like', 'freak', 'sayin'], ['yay', 'fun'], ['love', 'ladi', 'progress', 'commerci', 'funni'], ['yay', 'hit', 'subscrib', 'youtub', 'go', 'lol'], ['okay', 'new', 'jona', 'episod', 'awesom'], ['got', 'lot', 'shop', 'done', 'excit', 'bout', 'new', 'travel', 'journal', 'go', 'go', 'sleep', 'watch', 'movi', 'cousin'], ['whoop', 'not', 'last', 'tweet'], ['haha', 'kid', 'listen', 'day', 'long', 'bud'], ['happi', 'mother', 'day', 'minut', 'everyon'], ['mani', 'thank', 'mate'], ['aww', 'wish', 'younger', 'sis', 'older', 'one', 'bet', 'younger', 'sis', 'love', 'much'], ['love', 'breakfast', 'pancak'], ['way', 'home', 'see', 'rodney', 'atkin', 'love', 'thank', 'bob'], ['want', 'trip', 'boston', 'next', 'month', 'need', 'addit', 'l', 'motiv', 'save', 'belov', 'daughter', 'want', 'go'], ['love', 'new', 'twitter', 'two', 'kraussey', 'haha'], ['bone', 'show', 'check', 'pb', 'amp', 'check', 'write', 'play', 'check', 'simpl', 'joy', 'still', 'even', 'greatest', 'gone'], ['happi', 'birthday', 'happi', 'birthday', 'happi', 'birthday', 'happi', 'birthday', 'happi', 'birthday', 'mani'], ['love', 'youu', 'nick', 'santino', 'thirteen', 'dayss'], ['found', 'exit', 'take', 'thank'], ['saw', 'confess', 'fell', 'love', 'hugh', 'danci', 'accent', 'need', 'tomorrow', 'new', 'top', 'want'], ['great', 'night', 'nice', 'meet', 'last', 'night', 'sweetheart', 'xoxoxo', 'bye'], ['omg', 'found', 'thnx'], ['voic', 'smile', 'eye', 'laugh', 'hes', 'great', 'rolemodel'], ['start', 'great', 'mother', 'day', 'season'], ['alway', 'good', 'see', 'even', 'cyberspac'], ['blink', 'fast', 'better', 'lol', 'thank'], ['shoutz', 'mix', 'site', 'go', 'b', 'nervvoouuss'], ['hehe', 'nz', 'magic', 'place', 'earth'], ['jump', 'shower', 'long', 'day', 'work', 'shall', 'feel', 'ahmaz', 'math'], ['thanx', 'sis', 'b', 'sure', 'let', 'know', 'mani', 'peopl', 'r', 'pray'], ['great'], ['omj', 'episod', 'jona', 'great', 'funni', 'wish', 'pizza', 'girll', 'lol', 'lt'], ['wife', 'love'], ['lmao', 'glad', 'guy', 'like'], ['exact', 'one', 'think', 'bestt'], ['final', 'black', 'disney', 'princess'], ['yeah', 'ranga', 'make', 'sens'], ['watch', 'babi', 'snl', 'babi', 'look', 'greaat'], ['hahah', 'thank', 'tradewind', 'odyssey', 'bump'], ['well', 'one', 'thing', 'lay', 'floor', 'could', 'not', 'shape'], ['sti', 'fine', 'bout'], ['almost', 'got', 'sharpi', 'face', 'fall', 'asleep', 'sick', 'suck'], ['not', 'realli', 'trust', 'judgement', 'vouch', 'jk', 'think', 'becom', 'friend'], ['youtub', 'channel', 'demilynnmus', 'haha', 'love', 'sing', 'amp', 'stuff', 'yea'], ['haha', 'okay', 'fun', 'haha'], ['awesom', 'saw', 'ad', 'myspac', 'could', 'pleas', 'gt', 'not', 'lt', 'tag', 'photo', 'thank'], ['hawk', 'lost', 'good', 'time'], ['pass', 'earli', 'river', 'sound', 'amaz', 'cozi', 'bed', 'cozi', 'dog'], ['peter', 'follow', 'oh', 'fun', 'europ'], ['joke', 'puppi', 'maddi', 'look', 'exact', 'like', 'maui', 'cute'], ['great'], ['state', 'chees', 'yum', 'green', 'pastur', 'everywher', 'super', 'friend', 'lutheran'], ['go', 'inlaw', 'tonight', 'hope', 'new', 'niec', 'need', 'kid', 'inlaw'], ['fiinaallyy', 'home', 'drive', 'day', 'speed', 'ticket', 'torenti', 'fun', 'time'], ['hi', 'jenna', 'hope', 'well', 'think', 'wish', 'best', 'lot', 'love', 'new', 'york'], ['take', 'dog', 'weather', 'perfect', 'rite', 'suck', 'becuz', 'not', 'come', 'hahaha'], ['retweet', 'other', 'good', 'tweet', 'least', 'day', 'get', 'involv', 'thing', 'twitter'], ['greek', 'season', 'two', 'love', 'show'], ['happi', 'mother', 'dayi', 'love', 'mummyy'], ['love', 'lubbock', 'strip', 'run'], ['tell', 'truth', 'know', 'skill'], ['sweet', 'deal', 'want', 'see', 'movi', 'methink', 'may', 'star', 'trek', 'movi', 'night', 'time', 'hmm'], ['awesom', 'day'], ['hehe', 'true', 'wonder', 'come'], ['live', 'long', 'prosper', 'fb'], ['love', 'love', 'love', 'silverstein', 'work', 'tomorrow', 'boo'], ['love', 'boyfriend', 'love', 'mac', 'n', 'chees', 'even', 'took', 'work'], ['uqh', 'soo', 'boredd', 'supposedd', 'asleep', 'cuzz', 'wakk', 'upp', 'earlyy', 'juss', 'cantt', 'sleepp', 'omq', 'tomorroww', 'iss', 'mother', 'dayi'], ['made', 'mani', 'new', 'friend', 'twitter', 'around', 'usa', 'anoth', 'bike', 'across', 'usa', 'trip', 'would', 'amaz', 'see', 'peopl'], ['gave', 'mommi', 'mother', 'day', 'purpl', 'ipod'], ['notic', 'wellwood', 'teeth', 'tonight', 'nice'], ['want', 'say', 'happi', 'mother', 'day', 'mommi'], ['aww', 'sweet', 'glad', 'home', 'happi', 'mother', 'day'], ['look', 'not', 'see', 'heck'], ['omg', 'fold', 'laundri', 'match', 'sock', 'perfect', 'pair', 'good', 'laundri', 'fold', 'day'], ['everyon', 'go', 'hometown', 'show', 'excit', 'get', 'go', 'thame', 'street', 'go', 'see', 'origin', 'thame', 'river', 'bitch', 'ohh'], ['want', 'join', 'twit', 'club'], ['wish', 'everyon', 'good', 'night'], ['still', 'wait', 'beer', 'moldovan', 'least', 'happi', 'came'], ['yao', 'rest', 'season', 'home', 'saturday', 'phone', 'fix'], ['go', 'bed', 'goodnight', 'x'], ['curious', 'case', 'benjamin', 'button', 'excit', 'fuck', 'movi'], ['sleep', 'rest', 'day', 'busi', 'howev', 'got', 'spend', 'last', 'favorit', 'babysitte', 'kid', 'great'], ['realli', 'glad', 'abl', 'watch', 'game'], ['bow', 'hard'], ['deserv'], ['lol', 'tweet', 'funni', 'met', 'calgari', 'awesom', 'not', 'wait', 'next', 'hp', 'movi'], ['dog', 'pic', 'rolf', 'one', 'snow', 'stuck', 'quot', 'look', 'could', 'kill', 'look', 'quot', 'way', 'funni'], ['aww', 'boog', 'not', 'ya', 'enjoy', 'ya', 'selv', 'especi', 'lil', 'cousin'], ['oppos', 'twitter', 'talk', 'peopl', 'sl', 'fun', 'alreadi', 'way', 'mani', 'way', 'distract'], ['pleeas', 'pleeas', 'make', 'dj', 'drop'], ['good', 'morn'], ['hey', 'steve', 'think', 'awesom', 'actor', 'love', 'everi', 'movi', 'love', 'offic'], ['sean', 'watch', 'hous', 'thousand', 'corp'], ['luh'], ['fever', 'gone', 'thank', 'jen'], ['let', 'us', 'make', 'last', 'forev'], ['awe', 'thank'], ['yay', 'get', 'see', 'ddub', 'men', 'alway', 'keep', 'happi', 'amp', 'motiv'], ['ultim', 'shirt', 'fold', 'tool', 'saw', 'use', 'one', 'big', 'bang', 'theori', 'episod'], ['k', 'fiasco', 'wrap', 'good', 'go', 'back', 'studi', 'midterm'], ['pretti', 'cute'], ['shout'], ['best', 'bestfriend', 'whole', 'world', 'mother', 'day', 'present', 'ambien', 'klonopin', 'quarter', 'woohoo', 'smh'], ['ah', 'thank', 'appreci'], ['cool', 'glad', 'everyon', 'nice', 'date', 'night', 'mayb', 'one', 'day', 'ill', 'get', 'one'], ['excit', 'r', 'r', 'mother', 'day'], ['afraid', 'def', 'product', 'nri', 'karan', 'johar', 'watch', 'lot', 'classic', 'semest'], ['good', 'luck', 'want', 'see', 'wait', 'outsid', 'buse', 'see', 'autograph', 'though'], ['loser', 'baha', 'dude', 'go', 'come', 'amp', 'put', 'pictur', 'myspac', 'realli', 'quick'], ['fuze', 'give', 'away', 'cape', 'komen', 'race', 'cure', 'today', 'would', 'alway', 'love', 'hug', 'hun'], ['definit', 'usual', 'found', 'critic', 'know', 'virtual', 'noth', 'constitut', 'good', 'movi', 'rare', 'wrong'], ['baaha', 'amp', 'healthi', 'choic', 'friend'], ['wow', 'tiz', 'almost', 'midnit', 'bedtim', 'ha', 'gnite', 'gorgeous', 'peopl', 'hadthebestdayev'], ['matter', 'bet', 'would', 'great', 'love', 'right', 'not', 'go'], ['aww', 'still', 'awesom', 'fun', 'though', 'assum'], ['happi', 'hs', 'haha', 'know', 'would'], ['krys', 'run', 'mud', 'bath', 'nice', 'french', 'food', 'napa', 'jim'], ['not', 'sad', 'make', 'proud'], ['moveout', 'fun', 'thank', 'vt', 'student', 'work', 'make', 'vt', 'best', 'possibl'], ['appar', 'left', 'front', 'door', 'wide', 'open', 'go', 'show', 'mom', 'laptop', 'coffe', 'tabl', 'love', 'area'], ['sound', 'awesom'], ['sorri', 'not', 'twitter', 'ap', 'phone', 'text', 'repli', 'internet'], ['gorgeous', 'day', 'work', 'master', 'garden', 'plant', 'sale', 'trim', 'smoke', 'bush', 'write'], ['danc', 'around', 'clean', 'hous', 'love', 'sunday', 'far'], ['facebook', 'page', 'not', 'email', 'pictur', 'bang', 'not', 'like', 'blame', 'kitti'], ['sorri', 'run', 'uncl', 'terri', 'not', 'live', 'potenti', 'expect', 'next', 'return'], ['say', 'past', 'week', 'miss', 'play', 'spade', 'drinkin', 'chillin', 'good', 'old', 'day', 'let', 'know', 'babi'], ['take', 'big', 'man', 'type', 'sad', 'tweet', 'like'], ['soo', 'spent', 'day', 'sit', 'home', 'front', 'comput', 'love', 'day'], ['amaz', 'concert', 'got', 'realli', 'good', 'video', 'pictur'], ['like', 'crazi', 'witti', 'humor'], ['thank', 'babe', 'doin', 'even'], ['thank', 'work'], ['thank', 'tomorrow', 'teas', 'mom', 'tell', 'mother', 'day', 'gift'], ['nice', 'elis', 'roll', 'thas', 'wassup', 'fun', 'ladi'], ['cool', 'qik', 'stuff', 'newsroom', 'sometim', 'lol'], ['awesom', 'congrat', 'complet', 'not', 'believ', 'cycl', 'distanc', 'cottag', 'though', 'day'], ['not', 'put', 'behind', 'wheel', 'lmfao', 'today', 'fun'], ['good', 'luck', 'c', 'funn'], ['ok', 'clear', 'cach', 'everyth', 'fine'], ['comput', 'geek', 'entertain', 'think'], ['thank', 'concern', 'guy', 'stitch', 'later', 'well', 'whew'], ['accept', 'maid', 'applic', 'would', 'nice', 'would', 'start', 'first', 'thing', 'tomorrow', 'would', 'make', 'wonder', 'mother', 'day', 'present'], ['paramor', 'song', 'one', 'best', 'current', 'listen', 'quot', 'emerg', 'quot'], ['lesson', 'final', 'done', 'tomorrow', 'morn', 'look', 'forward', 'speak', 'high', 'schooler', 'date'], ['total', 'plain', 'simpl', 'hate', 'thoe', 'bridezilla', 'show', 'groom', 'would', 'run', 'far', 'far', 'away'], ['love', 'da', 'movi', 'say', 'anyth'], ['haha', 'know', 'sorri', 'typo', 'last', 'ps', 'said', 'sucha', 'cute', 'movi', 'aww'], ['join', 'facebeek', 'loser', 'friend', 'ami'], ['may', 'new', 'fav', 'number'], ['gone', 'miss', 'ya', 'laugh', 'bittersweet', 'lookin', 'forward', 'home', 'not', 'wait', 'till', 'nx', 'semest'], ['go', 'eat', 'rice', 'fri', 'chicken', 'sederhana', 'padang', 'restaur', 'yummi'], ['fantast'], ['yeayi', 'good'], ['thank', 'share', 'appreci', 'honesti', 'not', 'tweet', 'odd', 'hour', 'got', 'littl', 'tweet', 'happi'], ['mm', 'thank', 'get', 'stone', 'eat', 'cool'], ['love', 'also', 'like', 'new', 'profil', 'pic'], ['vancouv', 'classi', 'canuck'], ['day', 'look', 'better', 'better', 'betterr'], ['long', 'day', 'much', 'fun', 'though', 'tomorrow', 'much'], ['quit', 'peacock', 'oceanograph', 'choic', 'new', 'favorit', 'play'], ['yay', 'tell', 'said', 'congrat'], ['look', 'forward', 'see', 'share'], ['happi', 'mother', 'day', 'mum'], ['pictur', 'pretti', 'day', 'fb'], ['hey', 'girl', 'yeah', 'allergi', 'kick', 'random', 'time', 'hmph'], ['know', 'guess', 'hope', 'would', 'revit', 'plot', 'line', 'well', 'instead', 'revert', 'old', 'clich'], ['think', 'steph', 'enjoy', 'first', 'mother', 'day', 'tomorrow'], ['eat', 'ice', 'cream', 'cake', 'bomb'], ['left', 'quot', 'quot'], ['dude', 'tri', 'vegetarian', 'thing', 'last', 'month', 'good', 'luck', 'go', 'vegan', 'intens', 'good', 'move', 'though'], ['tri', 'learn', 'tweet', 'good', 'hope'], ['know', 'say', 'noth', 'love', 'dude'], ['hope', 'fun', 'tonight'], ['happi', 'mother', 'day'], ['thank', 'greet'], ['oh', 'yeah', 'right', 'thank', 'remind'], ['saw', 'lil', 'girl', 'big', 'eye', 'hair', 'like', 'dora', 'explor', 'cute'], ['saw', 'star', 'trek', 'amaz', 'serious', 'good', 'entir', 'cast', 'excel', 'spock', 'kirk', 'especi', 'want', 'see'], ['lol', 'sound', 'fun'], ['hey', 'sorri', 'late', 'plan', 'post', 'facebook', 'twitpic'], ['fantast', 'saturday'], ['nice', 'time', 'littl', 'grown'], ['happi', 'mother', 'day', 'sent', 'messag', 'mom', 'got', 'phone', 'call', 'wish', 'one', 'day', 'live', 'citi', 'take', 'care'], ['learn', 'lot', 'anoth', 'person', 'not', 'tri', 'better', 'oneself', 'love', 'happi', 'goodnight'], ['fun', 'time', 'concert', 'almost', 'got', 'pictur', 'taylor', 'momsen', 'freakin', 'next', 'line', 'left'], ['miley', 'cyrus', 'great', 'actress'], ['thank', 'elain', 'clip', 'review', 'scrapbook'], ['thank'], ['watch', 'yes', 'man', 'bahaha', 'movi', 'mess'], ['haha', 'ya', 'friend', 'total', 'kick', 'parti', 'occas'], ['ad', 'name', 'twitter', 'account', 'learn', 'use', 'amaz', 'thing'], ['saw', 'today', 'beauti', 'look', 'good', 'glad', 'see', 'wonder', 'turnout'], ['pshh', 'thank'], ['hello', 'gorgeous', 'girl', 'nice', 'new', 'pic', 'today'], ['ooh', 'sorri', 'late', 'smash'], ['horoscop', 'websit', 'use', 'chang', 'around', 'like'], ['lucki', 'day', 'gone', 'larg', 'amount', 'littl', 'stress', 'detali', 'get', 'bit', 'gruesom'], ['thank', 'share', 'friend'], ['iknoww', 'not', 'mani', 'peopl', 'know', 'though', 'like', 'keep', 'littl', 'secret'], ['go', 'wow', 'bit', 'later', 'twitter', 'lt'], ['interview', 'view', 'away', 'thanx', 'read', 'peopl', 'mattmccoy'], ['hit', 'hay', 'came', 'goodnight', 'world', 'inhabit'], ['jbeauti', 'gud', 'enuh', 'jus', 'sayin', 'hi', 'n', 'hopin', 'avin', 'gud', 'nite', 'ladi', 'day', 'dat', 'better'], ['sew', 'shirt', 'fail', 'scream', 'quesadilla', 'quesadiaa', 'bombb', 'lt', 'tri', 'scream', 'anoth', 'day'], ['today', 'bore', 'lot', 'homework', 'tomorrow', 'amaz', 'not', 'wait'], ['head', 'downtown', 'drink', 'danc'], ['curs', 'igloo', 'dweller'], ['thank', 'ad', 'glad'], ['festiv', 'not', 'hehe'], ['updat', 'woow', 'haha'], ['margarita', 'great', 'combo'], ['wow', 'text', 'would', 'get', 'tire'], ['trend', 'topic', 'ahh', 'happi', 'birthday', 'pierr', 'bouvier'], ['awesom', 'spent', 'day', 'studyin', 'chillin', 'lil', 'goin', 'bed', 'slowli', 'gettin', 'colder', 'paraguay', 'winter', 'comin'], ['wednesday', 'mom', 'make', 'huge', 'special', 'dinner', 'amp', 'whatnot', 'celebr', 'new', 'singl', 'ya', 'knoww'], ['not', 'worri', 'ava', 'distract', 'flight'], ['recov', 'sick', 'anyon', 'want', 'bring', 'soup'], ['need', 'vent'], ['spent', 'even', 'gala', 'high', 'school', 'drama', 'compani', 'anniversari', 'lot', 'memori'], ['anytim', 'aim', 'pleas'], ['hey', 'babe', 'follow', 'love', 'da', 'show'], ['rock', 'world', 'soo', 'funni', 'lt'], ['good', 'night', 'peep', 'give', 'mom', 'greatest', 'love', 'xx'], ['pop', 'see', 'samson', 'delilah', 'arvo', 'hear', 'good'], ['see', 'not', 'shave', 'head', 'love', 'cut', 'glad', 'not', 'shave', 'hair', 'pretti'], ['hopin', 'sydney', 'less', 'week', 'got', 'visa', 'thursday', 'whoot', 'whoot'], ['worri', 'go', 'abp', 'right', 'want', 'someth'], ['great', 'talk', 'grace', 'awesom', 'god', 'somehow', 'start', 'remot', 'control', 'work'], ['thank', 'much', 'neitherr'], ['yay', 'get', 'errand', 'done', 'oh', 'assort', 'thing', 'top', 'crap', 'race', 'haha'], ['happi', 'mother', 'day', 'well'], ['oh', 'yeah', 'know', 'met', 'take', 'trash', 'hhaha'], ['sorri', 'darl', 'place', 'tonight', 'not', 'mean', 'neglect'], ['popular'], ['sure', 'let', 'mom', 'know', 'fabul', 'think', 'almost', 'mother', 'day'], ['wish', 'leigh', 'happi', 'mother', 'day', 'midnight', 'ny'], ['bottl', 'reisl', 'time', 'favorit'], ['oh', 'man', 'suck', 'price', 'pay', 'org', 'chart', 'respons', 'stuff'], ['goodnight'], ['thank', 'much'], ['two', 'word', 'hot', 'pocket', 'delcious', 'food', 'ever', 'creat'], ['happi', 'birthday', 'not', 'get', 'anyth', 'best', 'wish'], ['long', 'weekend', 'thank', 'god', 'sleep', 'monday'], ['justin', 'timberlak', 'andi', 'samberg', 'mother', 'lover', 'skit', 'snl', 'great'], ['super', 'excit'], ['ok', 'mother', 'fuck', 'duet', 'hyster', 'lol'], ['lucki', 'e', 'went', 'jealous'], ['tell', 'zach', 'amp', 'jer', 'said', 'happi', 'birthday', 'seem', 'like', 'cool', 'brother', 'lucki', 'haha'], ['thank', 'much', 'definit', 'pass', 'along', 'amaz', 'mother'], ['would', 'never', 'believ', 'five', 'year', 'later', 'would', 'femal', 'engin', 'make', 'track'], ['yay', 'block', 'parti', 'bomb', 'blockhead', 'lt', 'dave', 'thank', 'support', 'nkotb'], ['esta', 'perdonada', 'porqu', 'sigu', 'tom', 'conrad', 'know', 'made', 'awesom'], ['greet', 'advanc', 'haha'], ['amaz', 'unproduct', 'day', 'love', 'time', 'go', 'catch', 'sleep'], ['wed', 'recept', 'fun', 'thought'], ['send', 'love', 'amp', 'respect', 'mommi', 'twittervers', 'inspir'], ['sleep', 'beauti', 'love', 'grad'], ['not', 'think', 'ever', 'tierd', 'sleep', 'tomorrow'], ['midnight', 'outta', 'happi', 'mother', 'day', 'fellow', 'mommi', 'may', 'everyon', 'special', 'day'], ['good', 'night', 'happi', 'mother', 'day'], ['welcom', 'book', 'good', 'remind', 'escap', 'cube'], ['happi', 'mother', 'day', 'mom', 'awesom', 'mom', 'help', 'savechuck'], ['lol', 'thank', 'like', 'top', 'go', 'enjoy', 'long'], ['dislik', 'rumor', 'cyndi', 'made', 'look', 'like', 'not', 'like'], ['like', 'bride', 'sens', 'humor', 'wore', 'wed', 'gown', 'accid'], ['want', 'greet', 'mom', 'happi', 'mother', 'day', 'may', 'enjoy', 'day'], ['miss', 'lol'], ['edward', 'hope'], ['happi', 'mother', 'day', 'gunna', 'crawl', 'ball', 'act', 'like', 'not', 'exist', 'lmfaoo'], ['happi', 'mother', 'day', 'wonder', 'mom'], ['get', 'night', 'great', 'mood'], ['hate', 'hate', 'hate', 'hate', 'hate', 'hate', 'mother', 'day'], ['happi', 'mother', 'day', 'well', 'good', 'one'], ['happi', 'mother', 'day', 'mom', 'mom'], ['heh', 'send', 'dem', 'get', 'dem', 'jen', 'shock', 'found', 'mani', 'last', 'day', 'earlier', 'week', 'noth'], ['hope', 'mom', 'enjoy', 'mother', 'day', 'gift'], ['well', 'keep', 'post', 'come', 'fulli', 'thank'], ['scream', 'like', 'maniac', 'thing', 'could', 'not', 'scream', 'ride', 'suck', 'fun', 'everyth'], ['good', 'luck', 'tomorrow'], ['happi', 'mother', 'day'], ['nice', 'captur'], ['happi', 'mother', 'day', 'mother', 'mom', 'get', 'special', 'gift', 'today'], ['lol', 'look', 'youtub', 'later', 'thank'], ['doin', 'fine', 'relaxin', 'work', 'hard', 'work'], ['good', 'lord', 'man', 'recommend', 'dark', 'amp', 'stormi', 'casablanca'], ['haha', 'wish', 'bfa', 'photographi'], ['hope', 'get', 'see', 'htb', 'next', 'week', 'la', 'realli', 'soon', 'not', 'wait'], ['sweet', 'not', 'livin', 'saturday', 'night'], ['quot', 'quot', 'offici', 'one', 'say', 'happi', 'mother', 'day', 'love'], ['an', 'dog', 'ass'], ['chillin', 'waitin', 'hunni', 'babi', 'get', 'work', 'get', 'drink', 'finishin', 'da', 'song'], ['agre', 'complet', 'attitud', 'amp', 'chutzpah'], ['enjoy', 'whole', 'relax', 'thing'], ['saw', 'new', 'star', 'trek', 'movi', 'day', 'strong', 'recommend'], ['guess', 'true'], ['watch', 'said', 'happi', 'mother', 'day'], ['aw', 'honey', 'relaxin', 'probabl', 'best'], ['thank'], ['honor', 'hear', 'name', 'breezi', 'track', 'hope', 'like', 'shit'], ['pretti', 'tire', 'nice', 'full', 'day'], ['noth', 'like', 'lost', 'marathon', 'long', 'day', 'work'], ['oh', 'guess', 'offici', 'big', 'nerd', 'heard', 'movi', 'great', 'even', 'not', 'like', 'trek'], ['thank', 'love'], ['stellar', 'look', 'great'], ['work', 'mother', 'day', 'slideshow', 'cake', 'card', 'balloon', 'deserv', 'best'], ['lol', 'glad', 'like'], ['hug', 'hug', 'hug', 'glad', 'feel', 'better'], ['awesom', 'bless'], ['thank', 'much'], ['good', 'know'], ['yes', 'would', 'love', 'cowbel'], ['wish', 'mom', 'happi', 'amp', 'bless', 'mother', 'day'], ['yeah', 'scoreless', 'tonight'], ['happi', 'mother', 'dayi'], ['realli', 'nice', 'smoothi', 'baulko', 'shop'], ['happi', 'mother', 'day', 'mother', 'twittervill'], ['kind', 'figur', 'would', 'probabl', 'unabl', 'reason', 'lot', 'thing', 'manga', 'happen', 'way', 'happen'], ['go', 'town', 'friend', 'long', 'time', 'not', 'seen', 'feel', 'fresh'], ['got', 'caught', 'rain', 'sand', 'monsoon', 'way', 'home', 'even', 'though', 'look', 'like', 'complet', 'idiot'], ['go', 'profil', 'ill', 'help', 'right', 'next'], ['dr', 'hook', 'awesom'], ['moon', 'soo', 'pretti'], ['downtown', 'drink', 'celebr', 'cav', 'victori'], ['sunburn', 'venic', 'watch', 'fred', 'excit'], ['dad', 'retel', 'saskatoon', 'amp', 'g', 'stori', 'love', 'hear', 'guy', 'said', 'never', 'heard'], ['justin', 'funni', 'snl', 'ciara', 'fix', 'perform'], ['word', 'liana', 'corber', 'moreov', 'wiaih', 'humbl', 'experi', 'surpris', 'decent', 'night'], ['lovesick', 'give', 'call', 'go', 'bowl', 'complain', 'love'], ['seem', 'happi'], ['want', 'wish', 'mommi', 'happi', 'mother', 'day'], ['not', 'wait', 'get', 'doll', 'go', 'tonight'], ['hey', 'oprah', 'watch', 'show', 'hugh', 'jackman', 'love', 'sexi'], ['thelma', 'amp', 'louis', 'good', 'movi'], ['not', 'want', 'complet', 'hypocrit', 'attend', 'event', 'time', 'iron'], ['baiterss', 'hope', 'tonight', 'fun'], ['congratul', 'maricar', 'chu', 'wish', 'best', 'world'], ['twitter', 'know', 'photographi', 'run', 'also', 'popular', 'photographi', 'blog'], ['night', 'ya', 'tomorrow'], ['well', 'gracia', 'haha', 'play'], ['oh', 'jordan', 'readi', 'next', 'contest', 'babi', 'wait', 'kiss', 'brazil', 'love'], ['aww', 'hope', 'fli', 'jt', 'episod', 'usual', 'realli', 'good', 'earli', 'far', 'ep', 'hass', 'disappoint'], ['keep', 'crown', 'shut', 'mouth', 'know', 'mean'], ['happi', 'mother', 'day', 'mother'], ['home', 'maddi', 'tire', 'go', 'bed', 'afterward'], ['like', 'clarifi', 'unabl', 'acc', 'review', 'vibrat', 'not', 'testrun', 'not', 'invitaiton', 'freebi'], ['movi', 'sleep', 'today', 'good', 'day', 'h'], ['swipe', 'last', 'packag', 'fruit', 'snack', 'hell', 'yeah', 'finish', 'shall', 'read', 'next', 'nerd'], ['fixin', 'clean', 'hous', 'mom', 'mother', 'day'], ['thank', 'let', 'know', 'print', 'galleri', 'would', 'like', 'work', 'detail'], ['happi', 'mother', 'dayi', 'mother', 'especi', 'mine'], ['nice', 'hear', 'love', 'best', 'friend', 'sister', 'hug'], ['love', 'big', 'brother', 'much'], ['hope', 'enjoy', 'wisdom'], ['not', 'bad', 'made', 'card', 'mom', 'nice', 'nap', 'finish', 'work', 'wrote', 'bill', 'surpris'], ['realli', 'drunk', 'realli', 'happi'], ['well', 'go', 'sleep', 'peopl', 'night', 'twitter', 'love', 'ya', 'welcom', 'home'], ['nice', 'meet', 'mike', 'video', 'produc', 'cf', 'miami'], ['dad', 'know', 'got', 'drunk', 'today', 'not', 'get', 'troubl'], ['seen', 'coupl', 'time', 'like'], ['seen', 'coupl', 'time', 'like'], ['worth', 'wait', 'bust', 'gut'], ['gahh', 'freak', 'lip', 'ring', 'go', 'death', 'never', 'cooraper', 'jack', 'haha'], ['famili', 'girl', 'love', 'guy', 'smile'], ['happi', 'mother', 'day', 'mommi'], ['hey', 'kelvin', 'day', 'fantast', 'far', 'get', 'readi', 'famili', 'mother', 'day', 'function', 'short'], ['ee', 'came'], ['wait', 'recip', 'simpli', 'recip', 'sorri'], ['happi', 'mother', 'day', 'ekin', 'sayang', 'mak'], ['lilash', 'guess', 'right', 'oh', 'camera', 'use', 'insan', 'qualiti'], ['bev', 'sometim', 'kind', 'day', 'need', 'relax'], ['talk', 'babe', 'amaz'], ['fuzzbal', 'fun', 'mother', 'day'], ['oh', 'tonight', 'look', 'forward'], ['fantast', 'jj', 'question', 'alreadi', 'teacher', 'pet'], ['definit', 'true', 'beauti'], ['best', 'art', 'attack', 'thank', 'follow'], ['night', 'cute', 'k', 'love', 'frog'], ['got', 'bunch', 'present', 'mail', 'mama', 'excit', 'open', 'birthday', 'day'], ['thank', 'one', 'day', 'time', 'right'], ['ooh', 'love', 'sweet', 'potato', 'fri', 'definit', 'go'], ['happi', 'mother', 'day', 'love', 'mami'], ['oh', 'yeah', 'happi', 'mother', 'day', 'everi', 'mom', 'friend', 'mom'], ['love', 'chocol', 'must', 'pms'], ['met', 'sarah', 'kelli', 'wow', 'amaz', 'woman', 'god', 'gave', 'free', 'got', 'love', 'free', 'merch'], ['sign', 'spend', 'time', 'hubbi', 'goodnight', 'day', 'tweepl', 'happi', 'mother', 'day'], ['littl', 'happi', 'wine', 'jeje', 'ok', 'free', 'time', 'care', 'jaja', 'love', 'day'], ['glad', 'like'], ['would', 'not', 'tweet', 'without', 'thank', 'share', 'tonight'], ['yes', 'love', 'manchest', 'orchestra', 'sigur', 'ross', 'band', 'never', 'heard', 'ill', 'give', 'listen', 'thank'], ['hi', 'dale', 'welcom', 'man', 'hope', 'weekend', 'go', 'well', 'think', 'would', 'enjoy', 'desert', 'paradis', 'fun', 'fun', 'fun'], ['okay', 'happi', 'watch', 'second', 'episod', 'jona', 'youtub', 'think', 'tomorrow', 'famili', 'go', 'oliv', 'garden', 'mother', 'day'], ['love', 'perform', 'snl', 'tonight', 'damn', 'funni'], ['oh', 'hilari', 'comment', 'fact', 'much'], ['good', 'day', 'bed', 'nite', 'tweep'], ['took', 'amaz', 'power', 'nap', 'ever', 'starbuck', 'time'], ['ahh', 'would', 'good', 'reason', 'heh', 'hope', 'goe', 'well', 'hun'], ['cute', 'thank', 'share', 'pleas', 'direct', 'messag', 'go', 'bed', 'jame', 'know', 'want'], ['roxi', 'right', 'palmad', 'stuff', 'pretti', 'cool'], ['sli', 'parti', 'enjoy', 'life', 'parti'], ['hi', 'hope', 'everybodi', 'safe', 'amp', 'fun', 'weekend'], ['sound', 'fun'], ['thank', 'synn'], ['long', 'fun', 'day', 'relax', 'tv', 'mom', 'sleep'], ['readi', 'tomorrow', 'mommi', 'get', 'gift', 'mother', 'day', 'hope', 'love'], ['thank', 'freakin', 'ball', 'great', 'compani', 'awesom', 'could', 'girl', 'want', 'love', 'ya'], ['omg', 'sorri', 'hear', 'keep', 'finger', 'cross', 'find', 'someth'], ['saw', 'ghost', 'girlfriend', 'past', 'bf', 'movi', 'predict', 'funni', 'love'], ['happi', 'mother', 'day', 'mother', 'goodnight', 'everyon', 'els'], ['one', 'watch', 'justin', 'timberlak', 'snl', 'greatt', 'hilari'], ['fun', 'webcam', 'caroo'], ['dream', 'last', 'night', 'sing', 'first', 'avid', 'dream', 'croon', 'away'], ['yeah', 'knew', 'link', 'complet', 'amaz', 'sing', 'phantom'], ['soo', 'happi', 'thank', 'babi', 'best', 'day', 'life'], ['possibl', 'nyquil', 'get', 'tonight', 'though', 'doctor', 'monday', 'hope', 'swine', 'googl', 'map'], ['nope', 'not', 'worri', 'possibl', 'worri', 'goog', 'design', 'person', 'tast', 'actual'], ['saw', 'tour', 'month', 'ago', 'boston', 'good', 'glad', 'final', 'got', 'see'], ['gave', 'mommi', 'mother', 'day', 'present', 'ticket', 'aerosmith', 'favorit', 'band', 'everr', 'yay', 'good', 'reaction'], ['thank', 'blast'], ['tiir', 'go', 'bed', 'drink', 'lead', 'make', 'boy', 'later', 'forget', 'name', 'not', 'drink', 'kid', 'goodnight'], ['happi', 'mother', 'day'], ['aww', 'thank', 'jon', 'old', 'told', 'sleep', 'clean', 'hous', 'best', 'mom', 'day', 'present', 'ever'], ['thank', 'jonathan', 'proud', 'mommi', 'yr', 'old', 'girl', 'yr', 'old', 'boy'], ['love', 'jona', 'brother', 'trend', 'topic', 'mayb', 'taylor', 'turn', 'next'], ['hi', 'deni', 'grab', 'coffe', 'would', 'love', 'catch', 'jordan'], ['leme', 'put', 'bottl', 'ciroc', 'make', 'popular'], ['welcom', 'xuxu'], ['would', 'not', 'happen', 'ravit', 'not', 'ask', 'met', 'thru', 'twitter', 'friend', 'love', 'social', 'media', 'way'], ['drink', 'smoke', 'grown', 'though'], ['happi', 'mother', 'day', 'mi', 'mother', 'thank', 'whatev'], ['aww', 'thank', 'jon', 'appreci'], ['imagin', 'would', 'say', 'quot', 'bitch', 'quot', 'lol', 'haha', 'not', 'cuz', 'cool'], ['love', 'love', 'love', 'pot', 'psycolog', 'friday', 'night', 'treat'], ['tire', 'even', 'though', 'not', 'much', 'today', 'glad', 'got', 'catch', 'second', 'half', 'cav', 'game'], ['account', 'homework', 'nice', 'got', 'project', 'lt'], ['jona', 'brother', 'concert', 'greaatt'], ['veronica', 'go', 'rock', 'stage', 'tomorrow', 'happi', 'mother', 'day', 'everyon'], ['hear', 'piss', 'haha'], ['love', 'name'], ['happi', 'mother', 'day', 'mom'], ['aww', 'cute'], ['incred', 'great', 'day', 'hahaha'], ['finish', 'giraff', 'get', 'sleep', 'super', 'excit', 'tomorrow'], ['hey', 'beauti'], ['thank', 'enjoy', 'dinner', 'tomorrow'], ['great', 'hear', 'saw', 'slumdog', 'millionair', 'yes', 'bollywood', 'thing', 'end'], ['good', 'show'], ['listen', 'maylen', 'wonder', 'not', 'pull', 'mani', 'cool', 'southern', 'metal', 'lick'], ['tomorrow', 'mother', 'day', 'get', 'mom', 'not', 'gift', 'tell', 'love'], ['new', 'motorcycl', 'pop', 'cabl', 'alreadi', 'ride', 'hard'], ['rare', 'treat', 'rare', 'ap', 'earli', 'may', 'make', 'open', 'bell', 'pdx', 'farmer', 'mkt', 'new', 'goal'], ['soo', 'excit', 'see', 'also', 'crazi', 'begin', 'dayss', 'yahoo'], ['sit', 'kaust', 'offic', 'sun', 'shine', 'surround', 'busi', 'peopl', 'ace'], ['went', 'friend', 'hous', 'watch', 'good', 'old', 'season', 'episod', 'supernatur', 'lt', 'damn', 'love', 'show', 'soo', 'fuck', 'much'], ['yes', 'though', 'perhap', 'not', 'think', 'like', 'vagu', 'seem', 'popper', 'term'], ['coldston', 'kayla', 'fat', 'guy', 'matter'], ['hope', 'not', 'go', 'far', 'sometim', 'feel', 'like', 'renounc', 'root'], ['fri', 'oreo', 'downtown', 'vega', 'went', 'park', 'cousin', 'best', 'day', 'everr', 'happi', 'mommi', 'day'], ['hey', 'guy', 'not', 'know', 'rememb', 'want', 'say', 'excit', 'see', 'guy', 'go', 'far'], ['sleepi', 'time', 'happi', 'mother', 'day', 'current', 'futur', 'mom', 'around', 'globe'], ['goodknight', 'twitterland', 'happi', 'mother', 'day', 'blockhead', 'momma', 'wonder', 'day'], ['live', 'dat', 'glamor', 'life'], ['tonight', 'snl', 'not', 'dissapoint', 'lol'], ['sure', 'upload', 'could', 'wait', 'got', 'home', 'enjoy', 'parti'], ['snoop', 'uncl', 'coolest', 'dancer', 'ever'], ['gt', 'gt', 'blond', 'keep', 'fail', 'driver', 'licens', 'test', 'gt', 'gt', 'gt', 'gt', 'gt', 'everytim', 'stop', 'jump', 'back', 'seat'], ['wow', 'tweet', 'night', 'look', 'like', 'total', 'made', 'day'], ['boyfriend', 'better', 'mine', 'hell'], ['know', 'not', 'one', 'harder'], ['realli', 'laugh', 'loud', 'see', 'limo', 'front', 'macdonald', 'funni'], ['absolut', 'love', 'thank'], ['holla', 'happi', 'earli', 'mother', 'day'], ['watch', 'rescuer', 'dru', 'ate', 'mickey', 'disney', 'sequel', 'done'], ['way', 'backstreet', 'boy', 'rememb', 'gasp', 'use', 'song', 'chuck', 'like', 'omfg', 'way'], ['okay', 'well', 'thank', 'beauti'], ['thank', 'tell', 'friend', 'twitter', 'say'], ['awesom', 'rachel', 'n', 'birthday', 'parti', 'today', 'fun', 'way', 'seen', 'sam', 'prom', 'pix', 'gorgeous'], ['never', 'realiz', 'good', 'techmem', 'actual', 'read', 'duh', 'avid', 'tech', 'crunch', 'reader', 'much', 'better'], ['haha', 'cute', 'ps', 'thank', 'repli', 'made', 'day', 'haha'], ['star', 'trek', 'soo', 'awesom', 'spock', 'kirk', 'hillari', 'see', 'soon'], ['tri', 'figur', 'twitter', 'thing', 'quit', 'excit'], ['thank', 'sweeti', 'not', 'wait', 'set', 'sail', 'next', 'week'], ['must', 'adwancrd', 'sens', 'humor', 'funni'], ['aww', 'wish', 'brew', 'b'], ['barack', 'obama', 'legend', 'watch', 'dinner', 'speach', 'pretti', 'funni'], ['sound', 'interest'], ['minut', 'happi', 'mother', 'day', 'amaz', 'mom', 'go', 'bed'], ['thank', 'come', 'tonight', 'made', 'happi'], ['nice', 'not', 'see', 'firework', 'sure', 'heard'], ['look', 'forward', 'orang', 'juic', 'fri', 'egg', 'cinnamon', 'roll', 'tomorrow', 'morn'], ['yes', 'right', 'church'], ['great', 'night', 'friend'], ['star', 'trek', 'pure', 'awesom', 'love', 'lt', 'great', 'see'], ['word', 'yayi', 'twitter', 'dark', 'lol'], ['aww', 'lovi', 'yes', 'love', 'total', 'finish', 'buffalo', 'sammich', 'hit', 'new', 'bongi', 'lt'], ['bake', 'experi', 'result', 'delici', 'sweet', 'rich', 'almost', 'sweet'], ['aww', 'sweeti', 'hope', 'mom', 'wonder', 'mother', 'day'], ['v', 'ever', 'come', 'back', 'kind', 'comfi'], ['great', 'seein', 'guy', 'today', 'look', 'happi', 'love', 'let', 'us', 'hang', 'soon', 'love'], ['ty', 'sweetheart'], ['good', 'night', 'everybodi', 'love', 'phillip', 'xo'], ['yes', 'must', 'much', 'fun', 'sxsw', 'guy', 'pj', 'parti', 'room'], ['hi', 'barb', 'frm', 'ia', 'new', 'tweetin', 'enjoy', 'read', 'tweet', 'seem', 'like', 'wonder', 'know', 'wonder', 'actress'], ['yea', 'way', 'go', 'super', 'excit', 'great', 'midwest', 'resourc', 'midwest', 'pride'], ['okay', 'thank'], ['today', 'better', 'panda', 'ealli', 'cheer', 'not', 'know', 'happi', 'like', 'legit', 'happi'], ['yo', 'mom', 'day', 'today', 'big', 'mom', 'duke', 'behav'], ['ok', 'hit', 'point', 'relax', 'head', 'bed', 'sleep', 'well', 'happi', 'mother', 'day', 'mom', 'night'], ['alway', 'thought', 'scuba', 'dive', 'would', 'give', 'entir', 'new', 'perspect', 'world', 'chicken', 'help'], ['happi', 'mother', 'day'], ['thank'], ['oh', 'not', 'ya', 'lol', 'enjoy'], ['thank', 'much', 'mom', 'sweet', 'think', 'us'], ['watch', 'scariest', 'place', 'earth', 'love', 'stuff'], ['happi', 'mother', 'day', 'mother', 'entir', 'world', 'deserv', 'day', 'us', 'right'], ['also', 'wish', 'two', 'love', 'mother', 'amp', 'special', 'mother', 'day', 'enjoy'], ['quot', 'organ', 'forget', 'peopl', 'fail', 'quot', 'preach', 'convert', 'peopl'], ['fun'], ['think', 'would', 'good', 'radio', 'like', 'awesom', 'music', 'great', 'person'], ['weird', 'need', 'lay', 'smoke', 'talk'], ['aww', 'got', 'photo', 'cute', 'bunni'], ['make', 'german', 'appl', 'slice', 'nom', 'nom', 'nom'], ['thank'], ['got', 'see', 'favorit', 'guy', 'back', 'long', 'island', 'head', 'back', 'citi', 'tomorrow', 'monday', 'boyfriend', 'lt'], ['back', 'bingo', 'fun', 'night'], ['thank', 'god', 'starbuck'], ['thank', 'ladi'], ['hug', 'back'], ['fun'], ['happi', 'mother', 'day', 'ladi', 'moment', 'cherish', 'children', 'today', 'let', 'moment', 'cherish', 'return'], ['happi', 'mother', 'day', 'mother'], ['woke', 'happi', 'mommi', 'day', 'everyon', 'mom', 'grandma'], ['not', 'know', 'blog', 'awesom'], ['deserv', 'much', 'better', 'hang', 'good', 'thing', 'come', 'wait'], ['thai', 'food', 'natali', 'love', 'stuff', 'make', 'smile'], ['gudluck'], ['total', 'best', 'part', 'day', 'studi', 'haha', 'ok', 'realli', 'leav', 'holli', 'short', 'peac'], ['oh', 'ps', 'sinc', 'alreadi', 'probabl', 'say', 'quot', 'happi', 'mother', 'day', 'quot', 'mom', 'mother'], ['chicken', 'beer', 'good', 'compani', 'make', 'good', 'night'], ['thank', 'havin', 'us', 'overr'], ['much', 'fun', 'tonight', 'soo', 'excit', 'get', 'home', 'go', 'sleep'], ['happi', 'mother', 'day', 'fabul', 'mom', 'world', 'would', 'not', 'run', 'without', 'us', 'keep', 'good', 'work', 'enjoy', 'day'], ['absolut', 'love', 'r', 'mani', 'thing'], ['realli', 'want', 'llike', 'realli', 'start', 'hate', 'way', 'messag', 'great', 'one', 'known', 'dylan'], ['mayb', 'get', 'statu', 'sainthood', 'seek', 'not', 'victim', 'like', 'peopl'], ['well', 'enough', 'mushi', 'famili', 'talk', 'bed', 'stubborn', 'go'], ['not', 'get', 'fast', 'enough'], ['choir', 'banquet', 'could', 'ever', 'dream', 'happi', 'parti', 'lauren'], ['fan', 'year', 'inspir', 'truli', 'idol', 'best', 'wish'], ['sheboygan', 'teekay', 'kid', 'fight', 'angus', 'ryan', 'mall', 'mcdonald', 'high', 'parti', 'beer', 'pong', 'drink', 'drive', 'home', 'fun', 'night'], ['firework', 'kboom', 'concert', 'second', 'best', 'ever', 'last', 'year', 'show', 'lt', 'sigh', 'gt'], ['tyler', 'perri', 'hilari', 'think', 'bed', 'though', 'tweet', 'ya', 'morn', 'goodnight'], ['dude', 'new', 'star', 'trek', 'burger', 'king', 'commerci', 'bud', 'light', 'burger', 'king', 'proud', 'man'], ['parti', 'awesom', 'soo', 'tire', 'bye', 'ps', 'happi', 'momma', 'day'], ['happi', 'birthday'], ['mm', 'love', 'app', 'guess', 'real', 'thing', 'help', 'work', 'effici'], ['hope', 'take', 'offer', 'one', 'day'], ['happi', 'mommi', 'day'], ['may', 'still', 'not', 'like', 'hear', 'name', 'much', 'blackhawk', 'canuck'], ['feel', 'like', 'need', 'catch', 'twitter', 'not', 'done', 'much', 'weekend'], ['kickass', 'day', 'full', 'seaworld', 'retard', 'year', 'old', 'guy', 'origin', 'win', 'day'], ['ok', 'star', 'trek', 'fan', 'given', 'new', 'movi', 'good', 'review', 'get', 'excit'], ['thank'], ['need', 'watch', 'white', 'hous', 'correspond', 'dinner', 'would', 'cheer'], ['list', 'music', 'put', 'finish', 'touch', 'mother', 'day', 'present', 'cool', 'part', 'not', 'cost', 'thing'], ['orrall', 'fun'], ['aww', 'yeah', 'love', 'one', 'rememb', 'see', 'great', 'america', 'tassi', 'great', 'memori'], ['mhmm', 'not', 'know', 'thought', 'show', 'freak', 'peopl', 'yeah', 'total', 'understand', 'guy', 'vn', 'sound', 'cool'], ['wonder', 'weekend', 'love', 'famili', 'amp', 'friend', 'awesom', 'happi', 'mother', 'day', 'mommi', 'lt'], ['granni', 'linda', 'happi'], ['happi', 'mother', 'day'], ['think', 'castl', 'fun'], ['thank', 'ami', 'full', 'hot'], ['luck', 'done'], ['welcom', 'aboard', 'new', 'follow', 'thank', 'honor'], ['not', 'stop', 'play', 'fallout', 'game', 'addict', 'like', 'crack', 'bad', 'dream', 'repair', 'gun', 'sleep'], ['awsom', 'salad', 'recommend', 'get', 'spicey', 'buffalo', 'chicken', 'salad'], ['happi', 'mother', 'day', 'motherss', 'lt'], ['not', 'mom', 'dad', 'hmm', 'well', 'forward', 'link', 'mom', 'embarrass'], ['hii', 'miss'], ['well', 'fun', 'even'], ['omgood', 'final', 'back', 'dinner', 'fam', 'bam'], ['absolut', 'incred', 'offici', 'favorit', 'jona', 'franki', 'man'], ['yeah', 'jimmi', 'fallon', 'back', 'skit', 'yay'], ['need', 'date', 'wed', 'realli', 'not', 'want', 'go', 'alon', 'may', 'chanc'], ['hey', 'look', 'twitter', 'kewl'], ['anoth', 'fun', 'night', 'chill', 'wit', 'homi', 'green', 'turtl', 'n', 'time'], ['amaz', 'beer', 'pong', 'brother'], ['amaz', 'due', 'time', 'constraint', 'could', 'visit', 'meadow', 'pine', 'forest', 'shall', 'post', 'imag', 'later'], ['goodnight', 'goodby'], ['sweet', 'jayce', 'think'], ['quot', 'graverobb', 'graverobb', 'sometim', 'wonder', 'even', 'quot', 'fun', 'tonight'], ['love'], ['weird', 'oh', 'draw'], ['ohh', 'kayi', 'fasho', 'go', 'tonight', 'fun'], ['love', 'mindi', 'favorit', 'employe'], ['sowwi', 'work', 'idiot', 'call', 'want', 'break', 'day'], ['goin', 'ta', 'bed', 'goodnit', 'jessica'], ['happi', 'mother', 'day', 'mom'], ['fun', 'flashi', 'fed', 'sure', 'import', 'cheeto', 'eat', 'ass', 'fit', 'lol'], ['thank', 'joeman'], ['ashotn', 'look', 'great', 'look', 'fantast', 'alway', 'two', 'still', 'newlyw', 'glow', 'forev', 'true', 'love'], ['like', 'hr', 'shirt', 'inspir', 'think', 'say', 'would', 'never', 'actual', 'wear'], ['wonder', 'marri', 'night', 'love', 'lt'], ['hey', 'everyon', 'mix', 'first', 'singl', 'quot', 'r', 'quot', 'soo', 'excit'], ['go', 'bed', 'cuz', 'get', 'like', 'seven', 'thirti', 'someth', 'tomorrow', 'today', 'actual', 'not', 'bad', 'day'], ['make', 'sure', 'call', 'yur', 'mother', 'amp', 'tell', 'much', 'love', 'tell', 'love', 'bringin', 'world'], ['go', 'bed', 'today', 'anoth', 'good', 'unev', 'day'], ['sound', 'good', 'taylor', 'kelli', 'tour', 'togeth', 'pure', 'genious'], ['determin', 'slarm', 'around', 'hous', 'eat', 'egg', 'sandwich', 'smoke', 'bowl', 'sound', 'like', 'splendid', 'even'], ['haha', 'love', 'dnt', 'regret', 'tyga', 'lt', 'random', 'deleon', 'sing', 'tifanni', 'blew', 'haha', 'like', 'one', 'line', 'xd'], ['love', 'album', 'guy', 'not', 'wait', 'offici', 'releas', 'curious', 'top', 'use'], ['thing', 'know', 'star', 'trek', 'joke', 'tina', 'fey', 'twitter', 'quot', 'may', 'quot'], ['great', 'night'], ['greeaatt', 'babe', 'amaz'], ['beach', 'phenomen'], ['haha', 'yup', 'still', 'terribl', 'headach', 'super', 'swollen', 'puffi', 'eye', 'not', 'think', 'go'], ['fun'], ['gotten', 'better', 'keep'], ['not', 'test', 'find', 'cancer', 'stuff', 'regard', 'case', 'posit', 'result', 'would', 'good', 'thing'], ['bed', 'famili', 'wonder', 'day', 'plan', 'today', 'happi', 'mother', 'day'], ['happi', 'mother', 'day', 'mama', 'great', 'appreci', 'mama'], ['thank', 'head', 'ethan', 'watch'], ['go', 'bed', 'goodnight'], ['love', 'mom', 'yo', 'amo', 'mi', 'thank', 'mommi', 'ti', 'amo', 'con', 'tutto', 'il', 'mio', 'cuor', 'happi', 'mother', 'day'], ['smore', 'plus', 'jacuzzi', 'equal', 'amaz'], ['go', 'get', 'comp', 'go', 'back', 'parti', 'safe', 'amp', 'fun'], ['hot', 'cuppa', 'coffe', 'made', 'milk', 'amp', 'fortifi', 'monin', 'irish', 'coffe', 'syrup', 'bliss'], ['juss', 'boredd'], ['happi', 'birthday', 'chip', 'sister'], ['lol', 'trash', 'kitchen'], ['lool', 'chip', 'ketchup', 'ya', 'waili', 'let', 'us', 'fish', 'finger', 'not', 'sure', 'bake', 'bean', 'though'], ['hahaha', 'thaank', 'brazil'], ['aww', 'cuti'], ['thank', 'hour', 'ahead'], ['saw', 'piec'], ['aww', 'thank', 'amp', 'welcom', 'lol'], ['go', 'bed', 'busi', 'day', 'mother', 'day', 'madr', 'te', 'amo'], ['notic', 'yesterday', 'actual', 'realli', 'happi', 'startrek'], ['home', 'last', 'happi', 'mother', 'mother', 'special', 'thank', 'father', 'bought', 'tulip', 'princess', 'adult', 'swim', 'time', 'anim'], ['lol', 'great', 'episod'], ['hmm', 'miracl', 'use', 'twitter', 'fun', 'tweet'], ['potter', 'also', 'categori', 'hehe', 'lt', 'love', 'much'], ['funni', 'love', 'almost', 'fell', 'haha'], ['happi', 'mom', 'day', 'mom'], ['nice', 'way', 'fall', 'asleep'], ['brief', 'brb', 'goodnight', 'not', 'catch', 'later', 'got', 'ck', 'someth'], ['not', 'get', 'treatment', 'go', 'hang', 'pool', 'hot', 'tub'], ['follow', 'cool'], ['rescu', 'two', 'ador', 'pit', 'mix', 'pup', 'today', 'lc', 'brodi', 'look', 'adopt', 'info', 'pic'], ['sound', 'cool', 'post', 'video'], ['happi', 'mother', 'day', 'grown', 'n', 'happi', 'amp', 'lil', 'prego', 'smut', 'lol', 'play', 'everyon', 'love', 'happi', 'mother', 'day', 'amp', 'god', 'bless'], ['love', 'twitter'], ['love', 'ice', 'cream', 'love', 'cake', 'cooki', 'cream', 'ice', 'cream', 'cake', 'top'], ['juss', 'drop', 'wife', 'love'], ['good', 'morn', 'good', 'luck', 'beliv'], ['sorri', 'miss', 'farm', 'today', 'dm', 'would', 'like', 'photo', 'today'], ['thank'], ['happi', 'mother', 'day', 'mom', 'tough', 'job', 'total', 'worth'], ['may', 'need', 'think', 'take', 'mine'], ['happi', 'mother', 'day', 'mom'], ['subway', 'alway', 'tast', 'better', 'els', 'pay'], ['aw', 'thas', 'good', 'glad', 'happi', 'jus', 'chillin'], ['love', 'tweet', 'sweet'], ['not', 'know', 'supervillian', 'fail', 'saw', 'januari', 'warfield', 'sf', 'legit', 'show', 'sure'], ['thank', 'jon', 'sweet'], ['elain', 'onlin', 'mommi', 'give', 'good', 'advic'], ['back', 'best', 'parti', 'ever'], ['beauti', 'bride', 'go', 'love', 'marri', 'life', 'absolut', 'rock', 'congrat'], ['yeah', 'not', 'buy', 'one', 'hot', 'minut'], ['say', 'quot', 'happi', 'mother', 'day', 'quot'], ['sister', 'graduat', 'today', 'amaz', 'super', 'emot', 'wow'], ['sorri', 'sweetpea', 'almost'], ['yeah', 'love', 'cali', 'much'], ['happi', 'mother', 'day'], ['nah', 'not', 'twiter', 'follow', 'fabul'], ['would', 'love', 'slice', 'summer', 'piper', 'lemonad', 'stand', 'think', 'could', 'jump', 'trampolin'], ['ooh', 'good', 'thank', 'head', 'bro'], ['love', 'wit', 'fool', 'colleg', 'hill'], ['not', 'meet', 'rosi', 'donnel', 'still', 'fun', 'night'], ['soo', 'win', 'powerbal', 'jackpot', 'impos', 'formid', 'upon', 'weather'], ['want', 'say', 'lt', 'music', 'scene', 'aesthet', 'n', 'danger', 'radio', 'hope', 'get', 'see', 'guy', 'day'], ['incas', 'forget', 'happi', 'mother', 'day', 'mom', 'mommi', 'best', 'one', 'world'], ['happi', 'mother', 'day'], ['hey', 'everyon', 'mix', 'first', 'singl', 'quot', 'r', 'quot', 'soo', 'excit'], ['eh', 'better', 'excit', 'see', 'ryan', 'hurley', 'tomorrow'], ['would', 'still', 'rather', 'shoe', 'instead', 'bed', 'work', 'tommorow', 'love', 'cold', 'weather'], ['haha', 'phew', 'never', 'said'], ['yup', 'pretti', 'sure', 'summer', 'could', 'not', 'start', 'better', 'one', 'year'], ['leav', 'fight', 'tire', 'voic', 'hurt'], ['want', 'come', 'back', 'onlin', 'talk', 'gossip', 'horribl', 'thing', 'transpir', 'today'], ['tire', 'think', 'go', 'go', 'bed'], ['way', 'saw', 'ellen', 'yesterday', 'late', 'compar', 'usa', 'awesom'], ['not', 'want', 'tell', 'think', 'bodi', 'odour'], ['love', 'boy'], ['awesom', 'pedicur', 'today'], ['go', 'alley', 'birthday', 'prima'], ['dream'], ['welcom'], ['got', 'pool', 'go', 'watch', 'tv', 'stuff', 'comput'], ['know', 'booski', 'everywher', 'amp', 'thank', 'reassur', 'love'], ['happi', 'mama', 'day', 'mama'], ['happi', 'mother', 'day', 'woman', 'men', 'made', 'mother'], ['goodnight'], ['way', 'ear', 'get', 'better', 'time', 'final', 'say', 'goodnight', 'twitter', 'world', 'even', 'though', 'alreadi', 'asleep', 'xoxo'], ['congratul', 'phil', 'packer', 'complet', 'london', 'marathon', 'x', 'shine', 'exampl', 'us', 'x'], ['thank', 'dear', 'wish', 'best'], ['ador'], ['would', 'panic', 'littl', 'mayb', 'read', 'orbitron', 'gym', 'like', 'els', 'fail'], ['happi', 'mother', 'day', 'mommii', 'owt', 'theaa', 'amp', 'ii', 'think', 'ii', 'got', 'thaa', 'hang', 'thii', 'thi', 'yay'], ['live', 'long', 'prosper', 'lol', 'star', 'trek', 'best'], ['quot', 'never', 'give', 'someth', 'not', 'go', 'day', 'without', 'think', 'quot', 'like', 'quot'], ['saw', 'perform', 'love', 'thank', 'mc', 'mong'], ['tonight', 'art', 'show', 'success'], ['happi', 'happi', 'joy', 'joy', 'good', 'enough'], ['tire', 'goodnight', 'twitter', 'mother', 'day', 'happi', 'mother', 'day', 'lov', 'moomi', 'lt', 'yayi', 'god', 'bless'], ['may', 'pc', 'love', 'anyway', 'mayb', 'someday', 'becom', 'mac'], ['wish', 'good', 'night', 'everybodi'], ['good', 'morn'], ['happi', 'mother', 'day', 'mom', 'sure', 'heart', 'mankind'], ['feel', 'nice', 'got', 'big', 'ass', 'smile', 'face', 'reason', 'take', 'ass', 'sleep', 'right', 'lol'], ['goodnight', 'actual', 'great', 'night', 'see', 'daniel', 'tomorrow'], ['seem', 'grandmoth', 'found', 'way', 'break', 'pipe', 'hous', 'go', 'go', 'fix', 'blur', 'woman'], ['goodnight'], ['stick', 'alright', 'whole', 'sketchi', 'world', 'wait', 'taken', 'advantag'], ['thank', 'dude'], ['thank'], ['happi', 'mother', 'day'], ['much', 'excit', 'go', 'back', 'school'], ['happi', 'motherss', 'dayi', 'sister', 'decid', 'make', 'decor', 'hous', 'andd', 'danc', 'sang', 'hahaa'], ['happi', 'mother', 'day', 'gift', 'mother', 'ever', 'equal', 'gift', 'life'], ['happi', 'mother', 'day', 'hahaha'], ['aw', 'glad', 'would', 'one'], ['not', 'go', 'lie', 'love', 'ace', 'cake', 'woop', 'lost'], ['love', 'mom'], ['good', 'luck', 'pump'], ['ahh', 'love', 'hes', 'thee', 'best'], ['happi', 'mother', 'day'], ['rest', 'well'], ['go', 'soon', 'hope', 'hear', 'late', 'nite', 'humor'], ['man', 'sweep', 'worri'], ['ohh', 'awesom', 'probabl', 'coulda', 'gotten', 'gift', 'ticket', 'outta', 'foil', 'queen', 'lol'], ['aww', 'sweet', 'tt', 'sure', 'love', 'good', 'son'], ['final', 'holiday'], ['lol', 'great', 'movi'], ['time', 'go', 'sleep', 'almost', 'night', 'everyon', 'happi', 'mother', 'day', 'mom'], ['hope', 'get', 'better', 'know', 'best', 'medic', 'attent', 'not', 'let', 'know', 'right'], ['thank'], ['glad', 'def', 'need', 'pick', 'drama', 'free'], ['twittervers', 'much', 'twitter', 'love'], ['hahaha', 'use', 'phone', 'everywher', 'use'], ['hah', 'knock', 'wood', 'pc', 'never', 'crash', 'laptop', 'care', 'stuff', 'mayb'], ['pack', 'leav', 'inlaw', 'hous', 'head', 'home', 'sweet', 'home', 'nice', 'weekend', 'back', 'work', 'hour'], ['well', 'thank', 'phone'], ['thank', 'appreci'], ['aw', 'not', 'sad', 'give', 'ginger', 'littl', 'pat', 'head', 'mwah'], ['ah', 'found', 'weird', 'screen', 'name', 'name', 'war', 'jazz'], ['cont', 'told', 'love', 'bean', 'toast', 'cute'], ['home', 'chelsea', 'jam', 'session', 'lt', 'chelsea', 'abbi', 'luh'], ['high', 'five', 'fan', 'final', 'write', 'fanci', 'news', 'post', 'short', 'want', 'get', 'mod', 'soon', 'possibl'], ['great', 'dinner', 'great', 'friend', 'follow', 'cupcak'], ['happi', 'mother', 'day', 'mom'], ['test', 'theori', 'right', 'arm', 'strum', 'got', 'feelin', 'hum', 'new', 'tune'], ['check', 'thank', 'good', 'luck', 'book', 'bella'], ['happi', 'mother', 'day', 'mother'], ['hi', 'nice', 'meet'], ['great', 'patio', 'perfect', 'busi', 'bed', 'ahh'], ['happi', 'mother', 'day', 'mommi', 'exspeci', 'mine', 'love', 'mommi'], ['super', 'massiv', 'sandwich', 'mom', 'made', 'last', 'night', 'ohh', 'yummi', 'way', 'happi', 'mother', 'day', 'mom'], ['hey', 'hey', 'problem'], ['yippe', 'darl', 'girl', 'love', 'soo', 'much', 'thrill', 'found'], ['hour', 'min', 'pressur', 'need', 'hurri'], ['ili', 'babe', 'sweet', 'dream'], ['sweeni', 'todd', 'awesom', 'movi', 'best'], ['yess', 'talk', 'hott', 'guy', 'happi', 'ass', 'fuk'], ['thank', 'gut', 'follow', 'mean', 'lot'], ['nah', 'not', 'tell', 'diego', 'donminican', 'spot', 'get', 'fuck'], ['aww', 'thank', 'honey', 'didja', 'get', 'mommi', 'daddi'], ['whenev', 'mama', 'let', 'us'], ['jaw', 'drop', 'gasp', 'whatev', 'mean', 'sweet', 'pie', 'allow', 'coach', 'amp', 'cancer', 'amp'], ['finish', 'watch', 'star', 'trek', 'imax', 'could', 'watch', 'night', 'live', 'long', 'prosper'], ['taco', 'bell', 'tramp', 'yessir'], ['watch', 'snl', 'guess', 'justin', 'funni', 'hahahah'], ['glad', 'make', 'sumon', 'smile'], ['haha', 'lol', 'one', 'ef', 'cool', 'got', 'gorgeous', 'repres', 'time'], ['tire', 'go', 'sleep', 'night', 'everyon'], ['drink', 'hot', 'chocol', 'yummi'], ['thing', 'look', 'better', 'better', 'think', 'might', 'quit', 'happi'], ['think', 'fall', 'love', 'xx', 'iloveyou'], ['big', 'man', 'embrac', 'tear'], ['well', 'someth', 'thaz', 'quick', 'pleas'], ['happi', 'mother', 'day'], ['delici', 'sushi', 'niko', 'niko', 'vermont', 'hollywood', 'mm'], ['aww', 'happi', 'mother', 'day'], ['tomorrow', 'mother', 'day', 'good', 'food', 'amp', 'present', 'mom', 'good', 'back', 'amp', 'go', 'junction', 'coolest', 'peopl', 'olli'], ['nice', 'momma', 'day'], ['awesom'], ['yeah', 'told', 'stanley', 'time', 'want', 'slap', 'girl', 'icki', 'bitch', 'encorag', 'bad', 'behavior'], ['hahhahah', 'realli', 'made', 'laugh', 'loudd', 'ahahahahahahahahah', 'fuunni'], ['thank', 'cheer', 'back'], ['happi', 'mother', 'day', 'mom', 'everi', 'mom', 'everywher', 'stroll', 'beach', 'later', 'hope'], ['love', 'could', 'not', 'stop', 'one', 'pictur', 'first', 'one', 'priceless', 'speedo', 'great', 'kudo', 'mom'], ['great', 'dinner', 'wonder', 'girlfriend'], ['lol', 'nice', 'love', 'concert', 'aha', 'go', 'post', 'pic'], ['suffic', 'breath', 'okay', 'invit', 'mine', 'not', 'promis', 'fun', 'time', 'jinx'], ['thank'], ['thank', 'name', 'strike', 'everi', 'time', 'see', 'friend', 'mine', 'use', 'belofsouthi', 'email'], ['cool', 'thank', 'much', 'love'], ['see', 'birthday', 'visit', 'haha', 'wack', 'saturday'], ['love', 'mine', 'happi', 'day', 'mom', 'john', 'taylor', 'much', 'love'], ['not', 'bad', 'not', 'combin', 'fx', 'nice', 'like', 'window', 'better', 'vista', 'far', 'vista', 'win', 'reborn'], ['watch', 'quot', 'marley', 'amp', 'quot', 'cute', 'movi', 'go', 'watch', 'quot', 'twilight', 'quot', 'soon', 'love'], ['happi', 'mother', 'day', 'go', 'cook', 'someth', 'thank', 'good', 'tablespot'], ['john', 'ohh', 'like', 'like', 'best', 'show', 'ever', 'lt', 'main'], ['play', 'puppi'], ['got', 'prom', 'fun', 'prom', 'text'], ['not', 'wait', 'watch', 'next', 'season', 'hero'], ['plus', 'happi', 'mother', 'day', 'sweeti'], ['tri', 'look', 'iowa', 'state', 'fair', 'art', 'entri', 'inform', 'hope', 'get', 'piec', 'year', 'mayb', 'win', 'someth', 'get', 'notic'], ['send', 'happi', 'mama', 'day', 'shout', 'greatest', 'ever', 'kick', 'ass', 'day', 'everyday', 'love', 'son'], ['happi', 'mother', 'day', 'kadi'], ['want', 'cooki', 'breakfast', 'luckili', 'adult'], ['hous', 'muse', 'page', 'live'], ['sit', 'nathan', 'eddi', 'amp', 'brenden', 'chill', 'haha', 'great', 'day', 'love', 'life'], ['quot', 'hear', 'wonder', 'quot'], ['well', 'happi', 'mother', 'day', 'ahahahahahaha'], ['better', 'not', 'one', 'better', 'summari'], ['happi', 'go', 'sleep', 'lolz'], ['love', 'moorre'], ['enjoy', 'star', 'trek', 'pleas'], ['lol', 'omg', 'repli', 'back', 'peopl', 'thank'], ['poor', 'thing', 'come', 'watch', 'tv', 'hous', 'lol'], ['happi', 'mother', 'day', 'everyon'], ['ha', 'total', 'post', 'updat', 'lightn', 'outsid', 'pretti'], ['saw', 'snl', 'must', 'overjoy', 'final', 'go'], ['goonight', 'twitter', 'hope', 'better', 'tomorrow'], ['happi', 'mother', 'day', 'mama', 'bear'], ['final', 'abl', 'get', 'flight', 'control', 'ipod', 'best', 'game', 'app', 'damn', 'chopper', 'lol'], ['yes', 'yes', 'yes', 'lotsa', 'fun', 'not', 'wait', 'not', 'like', 'make', 'shaun', 'much', 'front', 'though', 'cos', 'ill', 'get', 'awkard', 'haha'], ['teas'], ['recommend', 'guess', 'sinc', 'bought', 'someth', 'featur', 'hope', 'bring', 'busi'], ['danica', 'team', 'not', 'end', 'world', 'hope', 'great', 'race'], ['ugh', 'hate', 'photobucket', 'amaz', 'place', 'edit', 'pictur', 'use', 'time'], ['not', 'total', 'awesom', 'see', 'reboot', 'crew', 'nice'], ['watch', 'star', 'trek', 'well', 'done', 'think', 'see', 'want', 'join'], ['sweeni', 'todd', 'deadset', 'one', 'best', 'movi', 'time'], ['yus', 'realli', 'nice'], ['listen', 'new', 'demo', 'song', 'go', 'fantast', 'done'], ['understand', 'comput', 'fun'], ['bed', 'hot', 'date', 'sudoku', 'mayb', 'chapter', 'two', 'read', 'stay', 'awak', 'long', 'great', 'night', 'tweep'], ['teehe', 'glad', 'entertain', 'ye'], ['tonight', 'hilariouss', 'love', 'everyon', 'there'], ['love', 'attempt', 'poetri'], ['love', 'friend', 'wish', 'came', 'true', 'lt', 'addit', 'gray', 'matter', 'one', 'cutest', 'movi', 'ever'], ['sunday', 'last', 'day', 'appl', 'not', 'come', 'kick', 'el', 'farolito', 'mission', 'street'], ['glad', 'littl', 'prissi', 'well', 'obvious', 'much', 'love', 'treatment', 'get'], ['ha', 'think', 'got', 'like', 'two', 'hour', 'sleep', 'last', 'night', 'earli', 'start', 'tomorrow', 'chillin', 'sleep', 'need'], ['not', 'care', 'get', 'mad', 'like', 'speak', 'mind', 'alreadt', 'crazi', 'help', 'not', 'go', 'da', 'deep', 'edg', 'fuck'], ['thank'], ['goodnight', 'love'], ['not', 'wait', 'go', 'bed'], ['thank', 'soo', 'much', 'need', 'day', 'five', 'kid', 'lol'], ['wow', 'pretti', 'much', 'amaz', 'love', 'wolverin'], ['got', 'nail', 'done', 'day', 'sweet'], ['lmao', 'yeaa', 'iight', 'n', 'shuld', 'put', 'tha', 'flick', 'panti', 'head', 'juss', 'joke'], ['fan', 'dream', 'littl', 'dream', 'kiss', 'appear', 'like', 'dawson', 'creek', 'make', 'flick'], ['great', 'time', 'parti', 'mackenzi'], ['sweet', 'dream'], ['play', 'ethan', 'love', 'babi'], ['sure', 'intent', 'turn', 'thought', 'process', 'silli'], ['dad', 'drunk', 'ass', 'today', 'success'], ['rey', 'mysterio', 'awesom'], ['happi', 'mother', 'day', 'amaz', 'women', 'put', 'us', 'crazi', 'demand', 'children', 'thank', 'much'], ['awesom', 'feel', 'fulfil', 'not', 'go', 'work', 'soo', 'mani', 'peopl', 'summer', 'total', 'excit'], ['woke', 'coffe', 'listen', 'music', 'read', 'feel', 'great'], ['socksi', 'plucki', 'independ', 'caspar', 'lazi', 'attent', 'seek'], ['awesom', 'girl', 'scout', 'day', 'dodger', 'stadium', 'two', 'awesom', 'olymp', 'athlet', 'joanna', 'hay', 'heather', 'bown'], ['yeah', 'want', 'love', 'quot', 'fall', 'slowli', 'quot', 'song', 'keep', 'play', 'head'], ['happi', 'mother', 'day'], ['not', 'want', 'hurt'], ['steak', 'catch', 'day'], ['law', 'power', 'robert', 'green', 'littl', 'bit', 'much', 'anyon', 'interest', 'copi', 'dm'], ['mom', 'wear', 'shrug', 'bought', 'not', 'wait', 'c', 'n'], ['think', 'go', 'go', 'outsid', 'john', 'cage', 'moment', 'music', 'major', 'rejoic'], ['love', 'memori', 'almost', 'like', 'favourit', 'book'], ['not', 'go', 'cruis', 'wish', 'go', 'vacat', 'thank', 'though'], ['not', 'fuckin', 'wait', 'mate', 'goin', 'fantast', 'made', 'week'], ['sure', 'tell', 'mom', 'love', 'thank', 'put'], ['thank', 'hope', 'turn', 'top', 'week'], ['come', 'vancouv', 'throw', 'stuff', 'onto', 'ice', 'thought', 'canuck', 'suppos', 'polit', 'stuff'], ['make', 'margarita', 'watch', 'milk', 'good', 'time'], ['download', 'music', 'hour', 'love', 'happen'], ['thank', 'ami', 'video', 'awesom', 'see', 'tmh', 'amaz', 'bounci', 'bounci', 'bounci'], ['overcom', 'whatev', 'dart', 'enemi', 'may', 'tri', 'stop', 'got', 'stay', 'focus', 'tweetz', 'god', 'bless'], ['het', 'r', 'finish', 'clean', 'pond', 'not', 'stay', 'long', 'get', 'wrinkl', 'kid'], ['busi', 'talk', 'mom', 'bhabhi', 'like', 'card', 'bro', 'made', 'wait', 'sis', 'get', 'back', 'church'], ['yay', 'not', 'wait', 'come', 'bookstor', 'get', 'new', 'book'], ['movi', 'pretti', 'good', 'kind', 'predict', 'point', 'good', 'action', 'sequenc'], ['drink', 'yay'], ['good', 'hear', 'allah', 'aapko', 'sehat', 'de'], ['say', 'much', 'like', 'new', 'twitteriff'], ['jayce', 'debat', 'team', 'rock', 'hous', 'opportun', 'repres', 'us', 'tunsia', 'africa', 'go', 'jayce'], ['thank', 'nice', 'appreci'], ['nope', 'tomorrow', 'tire', 'need', 'bed'], ['ah', 'rememb', 'hope', 'good', 'news', 'come', 'hope', 'soon', 'someon', 'know', 'may', 'happyd', 'commenc'], ['love', 'time', 'low'], ['hmm', 'bu', 'tour', 'cool', 'say'], ['truli', 'prais', 'god', 'greatest', 'mother', 'world', 'happi', 'mother', 'day', 'mother', 'read', 'enjoy', 'day'], ['happi', 'mother', 'day'], ['woop', 'meant', 'agre', 'repli', 'lol', 'happi', 'mother', 'day', 'well', 'tti', 'soon'], ['ugh', 'amaz', 'night', 'time', 'bed', 'know', 'go', 'sleep', 'well', 'get', 'earli', 'good', 'night'], ['omg', 'amaz', 'twist', 'crazi', 'awesom', 'movi'], ['yw', 'get', 'realli', 'hot', 'middl', 'summer', 'like', 'right', 'perfect', 'less', 'hour', 'away'], ['good', 'night', 'erin', 'would', 'not', 'say', 'earli', 'old'], ['thankyou', 'yes', 'parti'], ['clean', 'laundri', 'nail', 'paint', 'product', 'saturday', 'night'], ['realli', 'good'], ['spend', 'qt', 'hubbi'], ['put', 'quot', 'quot', 'usernam', 'wow'], ['ok', 'offici', 'quot', 'old', 'least', 'feel', 'likewis', 'old', 'amp', 'tiredd', 'amp', 'wast'], ['write', 'mother', 'day', 'card', 'mom', 'gran', 'hurray'], ['go', 'bed', 'plan', 'tomorrow', 'hang', 'around', 'good', 'night', 'peopl', 'lt'], ['amazingg', 'replyy', 'dream', 'come', 'true', 'would', 'repli'], ['lauren', 'see', 'hill', 'lol', 'seem', 'like', 'great', 'friend'], ['good', 'littl', 'saturday', 'not', 'includ', 'bed', 'bath', 'beyond', 'border', 'list', 'not', 'wait', 'tomorrow', 'good', 'day', 'plan'], ['yay'], ['awesom', 'night', 'citi'], ['final', 'hit', 'friend', 'thank'], ['thank', 'ff', 'followfriday'], ['happi', 'mother', 'day', 'mom', 'love'], ['omg', 'patron', 'fav', 'jealous', 'icant', 'make', 'serious', 'alabama', 'visitin', 'fam'], ['time', 'reissu', 'album', 'vinyl', 'yess', 'would', 'fab', 'fab', 'fab'], ['hang', 'kevin', 'tomorrow', 'goe', 'product'], ['enjoy', 'cool', 'breez', 'beach', 'help', 'relax', 'unwind'], ['awesom', 'saw', 'thursday', 'night', 'great', 'perfect', 'cast'], ['watch', 'twilight', 'lt', 'watch', 'audio', 'commentari', 'soo', 'funni'], ['write', 'mother', 'day', 'card', 'mom', 'aunt', 'amyy', 'not', 'wait', 'mommi'], ['want', 'sleep', 'xd', 'song', 'head', 'make', 'crazi', 'not', 'know', 'write', 'song', 'not', 'hahhaha'], ['thank', 'friend', 'went', 'watch', 'movi', 'ate', 'chocol', 'chip', 'pancak', 'one', 'friend', 'hous', 'fabul'], ['awesom', 'fruit', 'veget', 'juic', 'open', 'lam', 'noodl'], ['coz', 'love'], ['aww', 'happi', 'mother', 'day', 'girli', 'kingston', 'lucki', 'great', 'mommi'], ['love', 'friend', 'drew', 'fun', 'tonight'], ['celebr', 'play', 'dez', 'moin', 'tdwp'], ['friend', 'gone', 'sushi', 'movi', 'laughter', 'need', 'fun'], ['need', 'b', 'get', 'sleep', 'night', 'good', 'sunday'], ['hug', 'kathi', 'though', 'mom', 'heaven', 'know', 'smile', 'accomplish', 'amp', 'peopl', 'keep', 'posit'], ['nope', 'san', 'leandro', 'marina', 'hope', 'well'], ['receiv', 'excel', 'birthday', 'present', 'parti', 'usual', 'success'], ['first', 'happi', 'mother', 'day', 'second', 'make', 'us', 'think', 'way', 'feel', 'way', 'feel', 'not', 'know', 'wish'], ['go', 'drink', 'mojito', 'lay', 'watch', 'movi', 'hubbi', 'goodnight', 'fellow', 'tweeter'], ['satisfi', 'review'], ['happi', 'frickin', 'birthday', 'tri', 'not', 'bitter', 'share', 'day', 'love', 'wife', 'mother'], ['happi', 'mother', 'day', 'mother'], ['immens', 'pleasur', 'entertain', 'pride', 'amp', 'prejudic', 'time', 'must', 'say', 'find', 'much', 'agreeabl'], ['cont', 'right', 'fake', 'btches', 'not', 'mess', 'real', 'one', 'ahh', 'love', 'real', 'btches', 'excit'], ['happi', 'mother', 'day', 'hug', 'love', 'zoe'], ['thank', 'ok', 'tweet', 'road'], ['omg', 'wango', 'tango', 'fuck', 'awsom', 'love', 'babi', 'take'], ['ay', 'uu', 'happi', 'mother', 'day'], ['not', 'sound', 'appet'], ['miss'], ['nice', 'meet', 'tonight', 'amp', 'thank'], ['pheasant', 'dream', 'kaotic', 'one'], ['not', 'earli', 'say', 'run', 'eastern', 'time', 'hope', 'fun', 'audit', 'canada', 'ftw'], ['yoko', 'ono', 'ben', 'lee', 'easi'], ['yes', 'see', 'tonight', 'delici', 'dinner', 'chef', 'geoff', 'chez', 'hope', 'see'], ['explor', 'site', 'find', 'cool', 'stuff'], ['glad', 'vent', 'thank', 'bestfriend'], ['marri', 'year', 'wonder', 'man'], ['awesom', 'tell', 'good', 'might', 'watch'], ['sorri', 'loss', 'know', 'feel', 'lucki', 'cat'], ['woo', 'twitter', 'kind', 'suck', 'without'], ['yay', 'mother', 'day', 'love', 'mi', 'madr'], ['watch', 'season', 'episod', 'hous', 'bed', 'great', 'bedtim', 'stori'], ['look', 'forward', 'dinner', 'famili', 'friendss', 'happi', 'mother', 'day', 'mom'], ['mother', 'day', 'happi', 'mother', 'day', 'mom'], ['fun', 'late', 'night', 'talk', 'good', 'night', 'world'], ['ahh', 'soo', 'smart', 'thank', 'school', 'thought'], ['aww', 'thank'], ['keep', 'prayer', 'welcom', 'back', 'tx', 'hope', 'good', 'safe', 'flight'], ['great', 'meet', 'thank', 'use', 'hope', 'ate', 'got', 'sleep'], ['good', 'old', 'friend', 'new', 'job', 'anoth', 'good', 'day', 'work', 'paycheck', 'day', 'even', 'better'], ['watch', 'quot', 'take', 'two', 'quot', 'classic', 'lol'], ['thank', 'one', 'hit', 'patron', 'sinc'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['wine', 'saginaki', 'friend', 'good', 'time'], ['would', 'rather', 'end', 'heart', 'broken', 'regret', 'not', 'take', 'chanc'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['ate', 'much', 'vegetarian', 'pizza', 'dinner', 'good'], ['awesom', 'fruit', 'veget', 'juic', 'open', 'lam', 'noodl', 'fb'], ['got', 'la', 'miss', 'hawaii', 'alreadi', 'dang'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['yeah', 'yeah', 'gd', 'night'], ['pick', 'boston', 'legal', 'season', 'enjoy', 'matter', 'offens', 'denni', 'love', 'denni', 'crane', 'riot'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['whoa', 'twilight', 'board', 'game', 'aahaha'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['whole', 'food', 'barton', 'spring', 'yogurt', 'spot', 'amp', 'oasi', 'perfect', 'day', 'austin'], ['watch', 'episod', 'love', 'throwback', 'first', 'episod', 'use', 'sprinkler', 'theori'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['post', 'late', 'got', 'back', 'see', 'star', 'trek', 'awesom'], ['love', 'want', 'share', 'wish', 'would', 'made'], ['watch', 'youtub', 'vid', 'sing', 'paranoid', 'live', 'cute', 'sing', 'lol'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['wait', 'go', 'bed', 'great', 'weekend'], ['live', 'empir', 'bottl', 'servic', 'rock', 'connect'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['delet', 'lott', 'facebook', 'friend', 'ask', 'friend', 'want', 'not', 'idgaf'], ['ahh', 'soo', 'smart', 'thank', 'school', 'thought', 'taught'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['home', 'bed', 'super', 'duper', 'excit', 'tomorrow'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['agre', 'spongebob', 'better'], ['watch', 'quot', 'say', 'anyth', 'quot', 'great', 'movi', 'start', 'point', 'love', 'john', 'cusack'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['thank'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['fun', 'wango', 'tangoo'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['sound', 'good', 'say', 'hi', 'run', 'alway', 'alway', 'coffe'], ['fun', 'day', 'theatr', 'glad', 'back', 'town'], ['good'], ['sound', 'like', 'got', 'fan', 'danstorc'], ['thank'], ['realli', 'ought', 'pay', 'attent', 'phone', 'tweet', 'sure', 'moiv', 'better'], ['know', 'thank', 'ok'], ['go', 'dear', 'love', 'janell'], ['wow', 'nice', 'laptop'], ['like', 'goo', 'goo', 'doll', 'heard', 'quot', 'iri', 'quot', 'absolut', 'love'], ['joe', 'photograph', 'famili', 'rehears', 'alway', 'fun', 'first', 'coupl', 'day', 'least'], ['noth', 'much', 'juss', 'realli', 'bore', 'hbu'], ['lol', 'thank', 'penni', 'tri', 'believ'], ['one', 'good', 'friend', 'state', 'cover', 'thank'], ['yeah', 'twitter', 'lot', 'fun', 'babe', 'especi', 'got', 'peopl', 'talk', 'lol', 'amp', 'sound', 'good', 'lol'], ['fun', 'show', 'grab', 'bite', 'eat'], ['not', 'know', 'right', 'bore', 'refus', 'studi', 'suggest'], ['love', 'hot', 'policemen', 'come', 'work'], ['also', 'certain', 'cd', 'camp', 'certain', 'somebodi', 'gave', 'yeah', 'guy', 'video', 'realli', 'frickin', 'hot'], ['like'], ['happi', 'mother', 'day'], ['not', 'stop', 'smile', 'best', 'mood', 'right'], ['mother', 'happi', 'mother', 'day', 'happi', 'sunday', 'may'], ['thank', 'incred', 'support', 'mean', 'much', 'constant', 'bless', 'amp', 'thank'], ['enjoy', 'time', 'rest', 'drive', 'mother', 'day'], ['ahahaha', 'funni'], ['wow', 'tager', 'rock', 'awesom', 'perform'], ['dinner', 'parti', 'great', 'happi', 'full', 'client', 'like', 'end', 'day'], ['good', 'nite', 'everybodi', 'lt', 'babi', 'boy', 'gt'], ['oh', 'tonight', 'good', 'night'], ['omg', 'famous', 'amanda', 'woman', 'person', 'thingi', 'hug', 'around'], ['thank'], ['basic', 'want', 'world', 'kno', 'best', 'best', 'friend', 'love', 'lt'], ['quot', 'nappi', 'quot', 'da', 'new', 'quot', 'n', 'quot', 'da', 'way', 'ilov', 'quot', 'nappi', 'quot', 'braid', 'igot', 'quot', 'quot', 'homi', 'lol'], ['happi', 'mother', 'day', 'love', 'mommi'], ['chang', 'default', 'pic', 'sinc', 'show', 'much', 'love'], ['got', 'vast', 'show', 'amp', 'kick', 'ass', 'mindblow', 'live', 'cd', 'sang', 'fave', 'song', 'n', 'awe'], ['aww', 'problem', 'sorri', 'tha', 'loss'], ['hey', 'kathi', 'happi', 'mother', 'day'], ['cute', 'kitti'], ['excit', 'tonight', 'parti', 'ron'], ['aww', 'son', 'gave', 'purpl', 'g', 'shock', 'mother', 'day'], ['happi', 'mother', 'day', 'mother', 'world'], ['quot', 'dream', 'better', 'world', 'come', 'quot', 'could', 'live', 'word', 'dude'], ['cool', 'hi', 'sam'], ['aww', 'love', 'daddi', 'work', 'day', 'week', 'almost', 'day', 'still', 'tri', 'go', 'sf', 'us'], [], ['happi', 'mother', 'day', 'everyon', 'mother', 'grandmoth', 'great', 'women', 'salut'], ['oh', 'kimmi', 'realli', 'give', 'one', 'week', 'get', 'home', 'hangout', 'better', 'get', 'see', 'lt'], ['thank'], ['watch', 'bronco', 'vs', 'chief', 'montana', 'vs', 'elway', 'nfl', 'network', 'still', 'nightmar', 'game', 'fu', 'kc'], ['good', 'thank', 'hope', 'enjoy', 'weekend'], ['happymothersday', 'mom'], ['enjoy', 'ride'], ['good', 'day', 'ya', 'happi', 'mom', 'day'], ['happi', 'mother', 'day', 'mommi', 'love'], ['special', 'happi', 'mother', 'day', 'mommi'], ['hug', 'okay', 'make', 'sure'], ['ofici', 'mother', 'day', 'hug', 'amp', 'kissa', 'mom', 'today', 'everyday', 'cook', 'good', 'idea', 'make', 'enchilada', 'suiza'], ['yeah', 'brain', 'rock', 'happi', 'share', 'knowledg', 'carri'], ['goodnight', 'tweep'], ['much', 'not', 'unless', 'one', 'pillow', 'end', 'suffoc', 'one', 'sleep', 'next'], ['amazinq', 'quess', 'alway', 'qreat', 'excus', 'wear', 'tini', 'dress', 'amp', 'heel'], ['woo', 'cav', 'happi', 'mother', 'day'], ['done', 'ew'], ['bout', 'go', 'bed', 'happi', 'mother', 'day', 'ladi', 'especi', 'th', 'takin', 'care', 'thier', 'kid', 'love', 'momma'], ['thank', 'kelli', 'mean', 'lot', 'figur', 'apt', 'thing', 'yet'], ['take', 'lot', 'pic', 'realli', 'pretti', 'lot', 'palm', 'tree'], ['not', 'mani', 'thing', 'better', 'sleep', 'window', 'open'], ['sam', 'go', 'shoot', 'self'], ['incred', 'happi', 'person', 'energi', 'love', 'danc', 'amp', 'thing', 'one', 'earth', 'peopl'], ['love', 'daddi', 'dad', 'appreci', 'daughter', 'day', 'not', 'mine'], ['thank', 'isay', 'kamusta', 'ang', 'bulacan', 'histor', 'gimmick', 'ang', 'gilmor', 'shop', 'trip'], ['not', 'bad', 'good', 'luck'], ['today', 'best', 'lt', 'eff', 'yeah', 'lt'], ['jane', 'austen', 'book', 'pride', 'prejudic', 'amp', 'emma', 'great', 'also', 'northang', 'abbey'], ['never', 'ceas', 'amaz'], ['hey', 'sam', 'happi', 'mother', 'day'], ['amaz', 'tonight', 'glad', 'could', 'share', 'babi', 'sunshin'], ['lol', 'hubbi', 'think', 'wive', 'nut'], ['pretti', 'soon', 'go', 'unfollow', 'cut', 'quick', 'grow', 'quot', 'habit', 'quot', 'love', 'challeng'], ['true', 'would', 'hahaha', 'love'], ['loll', 'colleg', 'love', 'blog', 'funni'], ['not', 'mother', 'day', 'west', 'coast', 'tyvm'], ['hey', 'kevin', 'yeah', 'one', 'go', 'toughi', 'sure', 'not', 'much', 'sleep', 'oh', 'well', 'hour', 'go'], ['aw', 'cute'], ['rofl', 'love', 'trina'], ['twitter', 'reunion', 'would', 'awesom', 'meet', 'lol', 'iwond', 'iget', 'pull'], ['enjoy', 'weekend', 'sis', 'xx'], ['drive', 'make', 'ahh', 'margarita', 'best'], ['cheif', 'beat', 'top', 'tabl', 'woo', 'go', 'sky', 'sport', 'virtual', 'rugbi', 'point'], ['plain', 'white', 'sara', 'life', 'get', 'amaz'], ['energi', 'sweeti'], ['cool'], ['tiger', 'woo', 'babi', 'omfg', 'cleveland', 'blast', 'sleep'], [], ['classic', 'snl', 'digit', 'short', 'tonight', 'mother', 'lover', 'ha', 'ha', 'good'], ['ooh', 'kno', 'eekk', 'rock', 'gt'], ['welcom', 'famili', 'new', 'pillow', 'go', 'lay', 'head', 'tonight'], ['ha', 'look', 'twitter', 'game', 'harmless', 'fun', 'despit', 'author', 'twitter', 'book', 'tri', 'talk', 'stuff'], ['down', 'live', 'abalon', 'sashimi', 'bottl', 'sake', 'happi'], ['yup', 'us', 'spend', 'time', 'mom', 'sis', 'aunt', 'great', 'mother', 'day'], ['happi', 'mother', 'dayi'], ['leg', 'fuck', 'sore', 'feet', 'hurt', 'walk', 'whataday'], ['bed', 'church', 'morn', 'happi', 'mother', 'day'], ['close', 'tri', 'yummi'], ['think', 'super', 'cute'], ['yeah', 'georg', 'say', 'someth', 'word', 'otherwis', 'jiberish', 'junk', 'love', 'joy', 'happi', 'ahh', 'see', 'nice'], ['new', 'song', 'cobra', 'starship', 'amaz'], ['got', 'home', 'stacey', 'love', 'wed'], ['happi', 'mother', 'day', 'mom', 'take', 'load', 'least', 'day'], ['yeah', 'basic', 'awesom'], ['make', 'egg', 'tart', 'amp', 'chines', 'egg', 'pud', 'yum'], ['thank', 'sweet', 'dream'], ['happi', 'mother', 'day'], ['say', 'late', 'goodnight', 'peopl'], ['life', 'exhiler', 'famili', 'kingdom', 'good', 'summer', 'sport', 'swim', 'ocean', 'night', 'kristin'], ['love', 'summer', 'not', 'forget', 'peopl', 'tomorrow', 'mother', 'day'], ['lol', 'not', 'twitter', 'hate', 'song', 'way'], ['one', 'fake', 'quot', 'quot', 'follow', 'haha', 'wish', 'would', 'instead'], ['great', 'day'], ['like'], ['ah', 'sorri', 'hear', 'saw', 'pic', 'chi', 'look', 'cool', 'got', 'beagl'], ['ps', 'love', 'new', 'profil', 'pic'], ['like'], ['ok', 'repli', 'happi', 'mother', 'day', 'inde'], ['hey', 'thank', 'anoth', 'great', 'day', 'go', 'sleep', 'chat', 'tomorrow', 'sweet', 'dream'], ['got', 'nashvill', 'ihop', 'staff', 'hit', 'dougi', 'mayn', 'fuck', 'night'], ['late', 'alreadi', 'pop', 'bridg', 'sinc', 'miss', 'tv', 'lt', 'blair', 'amp', 'jo'], ['pleas', 'snl', 'everi', 'week', 'could', 'not', 'quit', 'laugh', 'nite', 'ever'], ['love', 'show', 'would', 'total', 'go', 'time', 'bandit', 'deadliestcatch', 'tpg', 'quot', 'love', 'ocean', 'crab', 'leg', 'suspens', 'quot'], ['errbodi', 'pleas', 'check', 'id', 'appreci', 'bunch'], ['probabl', 'one', 'best', 'surpris', 'realli', 'amaz'], ['someth', 'like', 'happen', 'close', 'side', 'door', 'hard', 'engin', 'lock'], ['haha', 'aww', 'hun', 'bet', 'creativ'], ['thanx', 'mang', 'due', 'june', 'yezzir', 'first', 'babi', 'boi'], ['oh', 'like', 'idea'], ['thank'], ['candl', 'wax', 'enjoy'], ['would', 'like', 'thank', 'normal', 'random', 'work', 'internet', 'actual', 'stay', 'moment', 'saw', 'tweet'], ['thanx', 'birthday', 'wish', 'ray'], ['goodnight', 'everyon', 'happi', 'mother', 'day', 'mother'], ['kind', 'feel', 'ignor', 'anyway', 'sunday', 'arvo', 'go', 'lunch', 'amp', 'wine'], ['welcom', 'back', 'see', 'tomorrow', 'come', 'pick', 'gift'], ['thank', 'god', 'final', 'found'], ['window', 'happi', 'got', 'sum', 'wick', 'new', 'featur'], ['happi', 'mother', 'day', 'mom', 'soon', 'mom'], ['thank', 'much', 'discount', 'code', 'look', 'forward', 'tri', 'pad'], ['thank', 'follow'], ['twitter', 'reunion', 'would', 'awesom', 'meet', 'lol', 'iwond', 'iget', 'pull'], ['happi', 'mother', 'day', 'mumm', 'xoxo'], ['diamond', 'yaayi', 'tomorow', 'diamond', 'danc', 'best', 'still'], ['happi', 'mother', 'day', 'wonder', 'mother', 'world', 'includ'], ['keep', 'suggest', 'love', 'classic'], ['hundreth', 'updat', 'happi', 'mother', 'day', 'love', 'mum', 'even', 'fuss', 'fight', 'still', 'one'], ['happi', 'mother', 'day', 'justin', 'timberlak', 'version', 'mother', 'day', 'gift', 'funni'], ['realli', 'ultra', 'sweet'], ['evryon', 'come', 'spam', 'much', 'blogtv', 'glitch', 'might', 'work'], ['wish', 'happi', 'mother', 'day'], ['live', 'danni', 'noriega', 'stickam', 'said', 'hey', 'love'], ['good', 'time', 'prom', 'play', 'jona', 'brother', 'pretti', 'much', 'made', 'night'], ['sober', 'brittney', 'becki', 'brit', 'lt'], ['jeff', 'amp', 'look', 'long', 'last', 'love', 'not', 'like', 'men'], ['yes', 'acquir', 'master', 'art', 'christian', 'loong', 'journey', 'complet', 'thank'], ['twitter', 'reunion', 'would', 'awesom', 'meet', 'lol', 'iwond', 'iget', 'pull'], ['made', 'tonight', 'watch', 'littl', 'kid', 'swim', 'watch', 'movi', 'haha', 'love', 'babysit', 'haha'], ['proud', 'hous', 'detox', 'amber', 'hallucin', 'evil'], ['jon'], ['wish', 'happi', 'fabul', 'mother', 'day'], ['goodnight'], ['thank', 'take', 'compliment', 'may'], ['feel', 'realli', 'bless', 'super', 'awesom', 'best', 'friend'], ['thank', 'happi', 'mother', 'day', 'mother', 'also', 'snl', 'tonight'], ['happi', 'mother', 'day', 'mom'], ['twitter', 'reunion', 'would', 'awesom', 'meet', 'lol', 'iwond', 'iget', 'pull'], ['one', 'greatest', 'day', 'ever', 'spent', 'whole', 'day', 'besti', 'amp', 'celebr', 'instal', 'friend', 'love', 'oh', 'much', 'lt'], ['got', 'kansa', 'citi', 'excit', 'fun', 'weekend', 'famili', 'sis', 'parker', 'josh'], ['happi', 'mama', 'day', 'ladi', 'good', 'day'], ['mother', 'even', 'soon', 'mother', 'gt', 'happi', 'mother', 'day'], ['envi', 'love', 'best', 'club', 'ever'], ['good', 'night', 'mile', 'trail', 'peek', 'climb', 'morn', 'fun', 'time', 'ahead'], ['thank', 'jk', 'love', 'ya', 'death'], ['night', 'night', 'everyon', 'happi', 'mother', 'day', 'mother'], ['twitter', 'reunion', 'would', 'awesom', 'meet', 'lol', 'iwond', 'iget', 'pull'], ['ahaha', 'okay', 'thank'], ['relax', 'daughter', 'watch', 'friend'], ['stun', 'weather', 'could', 'not', 'ask', 'better'], ['think', 'amaz', 'present', 'whole', 'quot', 'keep', 'review', 'item', 'quot', 'tax', 'thing', 'blogher', 'awesom'], ['thank', 'follow', 'thing', 'join', 'interest'], ['enjoy', 'sunday', 'much', 'parent', 'revis', 'like', 'sunday'], ['twitter', 'reunion', 'would', 'awesom', 'meet', 'lol', 'iwond', 'iget', 'pull'], ['although', 'drama', 'move', 'forward', 'smile', 'count', 'bless', 'everyday', 'action', 'speak', 'volum', 'soo', 'inspir'], ['friend', 'umm', 'thank', 'follow', 'enjoy', 'ride', 'make', 'mani', 'trip', 'got', 'go', 'get'], ['happi', 'like', 'pee', 'see', 'feel', 'warm', 'sensat'], ['via', 'thank', 'tiff'], ['must', 'truli', 'amaz', 'woman', 'phenomen', 'son'], ['next', 'wk', 'c', 'drs', 'mayb', 'would', 'love', 'go', 'mac', 'grill', 'john', 'not', 'thought'], ['thank', 'well'], ['happi', 'mother', 'day'], ['pick', 'stuff', 'miss', 'time', 'think', 'miss', 'joke'], ['kind', 'want', 'smack', 'darn', 'skeleton', 'though'], ['night', 'twitter', 'love', 'happi', 'yo', 'momma', 'day', 'luff', 'mummi'], ['sweetest', 'love', 'cuz'], ['happi', 'mother', 'day'], ['smoothi', 'long', 'hard', 'day', 'heaven'], ['wish', 'mama', 'organ', 'happi', 'mother', 'day'], ['haha', 'awesom', 'good', 'job'], ['boo', 'life', 'wine', 'lucki', 'eight', 'ball', 'tonight'], ['thank'], ['spirit', 'week', 'tuesday', 'make', 'eight', 'die', 'later', 'school', 'wednesday', 'thursday', 'final', 'sleep', 'friday'], ['hell', 'yeah', 'belgian', 'beer', 'bomb', 'p'], ['nice', 'go', 'bathroom', 'not', 'hear', 'sound', 'gentl', 'run', 'water'], ['ooc', 'goodnight'], ['like', 'tweet', 'deck', 'tri', 'one', 'recomend', 'thank'], ['friday', 'favorit', 'peopl', 'ever', 'made', 'reserv', 'like', 'peopl', 'hahah'], ['great'], ['honey', 'great', 'health'], ['cool', 'think', 'del', 'go', 'korea', 'time', 'fun'], ['noth', 'excit', 'new', 'toy', 'play', 'though', 'happi', 'mother', 'day', 'ladi'], ['mind', 'tell', 'book', 'cuz', 'barn', 'nobl', 'today', 'found', 'book', 'look', 'promis'], ['happi', 'mother', 'day', 'mummi', 'love', 'xo'], ['mother', 'day', 'good'], ['get', 'readi', 'bed', 'happi', 'mother', 'day', 'mother'], ['today', 'someth', 'amaz', 'fell', 'love', 'coupon'], ['wish', 'mother', 'happi', 'mother', 'day'], ['welcom', 'network', 'buddi'], ['hey', 'pinki', 'order', 'stuff', 'site', 'gave', 'got', 'yesterday', 'mail', 'pretti', 'thank'], ['love', 'chicago', 'tonight', 'amaz'], ['excit', 'mother', 'day', 'big', 'year', 'amp', 'olivia', 'final', 'old', 'enough', 'excit', 'amp', 'understand'], ['love', 'da', 'sexi', 'ladiez', 'ya', 'beauti', 'uniqu', 'sexi', 'smart', 'not', 'let', 'nigga', 'call', 'bitch', 'cuz', 'ladi', 'ya', 'worth', 'dat', 'mean'], ['happi', 'mother', 'day', 'mother', 'not', 'one', 'call', 'someth', 'along', 'line'], ['not', 'yet', 'would', 'like', 'know', 'okay', 'mum', 'ask', 'mumm', 'hopefuli', 'go', 'tell', 'us', 'soon'], ['omg', 'kim', 'possibl', 'disney', 'channel', 'right', 'glu', 'screen'], ['alway', 'welcom', 'hun'], ['fun', 'night', 'need', 'break', 'love', 'man', 'ef', 'hilari', 'good', 'night', 'twitter', 'world', 'sweet', 'dream'], ['love', 'babi', 'see', 'cool'], ['happi', 'mother', 'day', 'vicki', 'mother', 'read'], ['yeahh', 'haha', 'mine', 'mariel', 'love', 'ur', 'fav', 'mcr', 'song'], ['make', 'momma', 'happi', 'mother', 'day', 'card', 'lt', 'love', 'mommi'], ['make', 'nice', 'cup', 'tea', 'pop', 'posit'], ['film', 'carniv', 'music', 'video', 'remind', 'cherri', 'festiv', 'use', 'go', 'back', 'home', 'ahh', 'memori'], ['feel', 'like', 'nine', 'not', 'one', 'guess', 'love', 'make', 'money'], ['found', 'liquor', 'come'], ['tire', 'go', 'go', 'bed'], ['wish', 'could', 'seen', 'girl', 'today', 'well', 'besid', 'across', 'crowd', 'haah', 'hope', 'fun'], ['believ', 'bed', 'time', 'knighti', 'knight'], ['love', 'mum', 'much', 'happi', 'mother', 'day', 'wonder', 'mother'], ['belat', 'kay', 'tita', 'wow', 'prize', 'day', 'congrat'], ['go', 'fold', 'laundri', 'hit', 'sack', 'bore', 'saturday', 'even'], ['cook', 'meatbal', 'lunch', 'yaayi'], ['reason', 'even', 'go', 'haha', 'shaun', 'dead', 'epic', 'haha'], ['plan', 'goodnight'], ['bep', 'kill', 'oh', 'leighton', 'meester', 'wave', 'us'], ['lol', 'sure', 'love', 'sushi', 'tweet', 'mani', 'pictur'], ['page', 'betray', 'cast', 'realli', 'start', 'enjoy', 'seri'], ['final', 'back', 'dinner', 'parti', 'fun', 'alic', 'wine', 'get', 'marri', 'next', 'week', 'may'], ['mom', 'world', 'congratul'], ['wowi', 'wooie', 'someon', 'updat', 'twitter', 'without', 'remind', 'not', 'even', 'mad', 'impress', 'lasagna'], ['kind', 'jim', 'kind', 'brother'], ['aww', 'awesom', 'good', 'guy'], ['happi', 'mother', 'day', 'ladi', 'coolest', 'love'], ['total', 'got', 'golden', 'girl', 'show'], ['make', 'everyth', 'fabul', 'tonight'], ['happi', 'birthday', 'justin', 'lof', 'fun', 'god', 'bless'], ['happi', 'mother', 'day', 'spend', 'day', 'famili'], ['someon', 'famili', 'die', 'would', 'heard'], ['thank', 'enjoy', 'movi', 'hope', 'well', 'te'], ['go', 'woodland', 'hill', 'gna', 'swim', 'drink', 'makin', 'best', 'good', 'day', 'yee'], ['doubt', 'darlin', 'wish', 'could', 'find', 'boy', 'worthi', 'good', 'peopl'], ['next', 'youtub', 'video', 'go', 'love', 'video'], ['good', 'girl', 'whitney'], ['great', 'show'], ['got', 'get', 'creativ', 'mother', 'day', 'gift', 'go', 'win', 'love'], ['awesom', 'ocean', 'beach', 'know', 'way', 'quot', 'yourbiggestfan', 'quot', 'big', 'fan'], ['ohh', 'coffe', 'break', 'fave', 'rock', 'lol'], ['safe', 'flight', 'good', 'meet'], ['adam', 'lambert', 'rock', 'must', 'win', 'american', 'idol'], ['got', 'home', 'work', 'tire'], ['thank', 'fr', 'yr', 'congratulatori', 'gweetin'], ['birthday', 'sex', 'great', 'song', 'man', 'someth', 'differ', 'peopl', 'want'], ['lazi', 'sunday', 'love', 'lazi', 'day'], ['yay', 'get', 'togeth', 'soon', 'someth'], ['cute'], ['final', 'gave', 'twitter', 'tri', 'find', 'soo', 'popular', 'hope', 'not', 'hook'], ['funni', 'discuss', 'bela', 'lugosi', 'dinner', 'apear', 'plan', 'b', 'outer', 'space', 'quot', 'best', 'quot', 'movi', 'ever'], ['good', 'thank', 'miami', 'say', 'come', 'wrote'], ['thank', 'brad', 'look', 'forward', 'chat', 'way', 'like', 'new', 'pix'], ['see', 'cri', 'lol'], ['everi', 'day', 'mother', 'day', 'not', 'wait', 'day', 'come', 'around', 'show', 'mom', 'much', 'appreci', 'love'], ['great', 'photoshoot', 'today', 'chris', 'ryan', 'roll', 'stone', 'keegan', 'smith', 'amp', 'fam', 'may', 'open', 'dave', 'matthew', 'band', 'summer', 'eek'], ['happi', 'mother', 'day', 'love', 'guy'], ['wish', 'happi', 'mother', 'day'], ['thank', 'best', 'tomorrow', 'hope', 'love', 'day', 'togeth'], ['oh', 'last', 'tweet', 'spent', 'half', 'hour', 'brush', 'teeth', 'new', 'electr', 'toothbrush', 'feel', 'great'], ['aww', 'nice', 'make', 'realli', 'beauti', 'coupl', 'balanc'], ['mm', 'pizza', 'help', 'make', 'cheesecak', 'eat', 'soon', 'amp', 'famili', 'nice', 'day', 'mother', 'amp', 'nanna'], ['love', 'night', 'guy', 'full', 'moon', 'think', 'go', 'onto', 'roof', 'lol'], ['enjoy', 'weekend', 'kid'], ['widescreen', 'laptop', 'rotat', 'comic', 'awesom'], ['rememb', 'put', 'phone', 'silent', 'lol', 'night', 'love'], ['new', 'phone', 'zero', 'contact', 'poo', 'send', 'messag', 'name', 'save', 'number', 'thank'], ['got', 'call', 'chimp', 'buddi', 'want', 'join', 'parti', 'load', 'prepar', 'wow', 'great', 'cup', 'tea', 'first', 'think', 'erm'], ['worst', 'stuffi', 'nose', 'ever', 'lauren', 'spend', 'night', 'took', 'much', 'sudaf'], ['news', 'like', 'band', 'quot', 'lydia', 'quot', 'song', 'good', 'listen'], ['psalm', 'said', 'god', 'children', 'high', 'happi', 'mother', 'day', 'momma'], ['chocol', 'peanut', 'butter', 'one', 'favorit', 'combon'], ['chill', 'colton', 'redesign', 'cocktail', 'hacker', 'card', 'back'], ['right', 'jealous', 'wish', 'gangsterr', 'pant', 'like', 'grandma'], ['congrat', 'hey'], ['thank', 'g', 'actual', 'birthday', 'tuesday'], ['love', 'famili', 'feud', 'episod', 'kardashian', 'tonight'], ['happi', 'mother', 'day'], ['yes', 'fascin', 'love', 'bedroom', 'oh', 'god', 'book'], ['would', 'take', 'photo', 'stuf', 'anim', 'pretti', 'funni'], ['long', 'day', 'work', 'stood', 'home', 'sleep', 'anoth', 'long', 'day', 'work', 'tomorrow', 'amp', 'happi', 'mother', 'day', 'mother'], ['happi', 'mother', 'day', 'mom', 'hope', 'wonder', 'day'], ['bwahah', 'love', 'jackass', 'movi', 'chocolate'], ['awesom', 'fortun', 'cooki', 'think', 'realli', 'go', 'exot', 'place', 'hope', 'well'], ['thank', 'advic', 'work', 'not', 'work'], ['saw', 'kim', 'kardashian', 'robertson', 'today', 'ate', 'hella', 'good', 'sandwich', 'bay', 'citi', 'santa', 'monica', 'download', 'lot', 'new', 'song'], ['thank', 'recommend', 'not', 'follow'], ['arrog', 'bastard', 'tap', 'oregon'], ['happi', 'mother', 'day', 'beauti'], ['yeahh', 'thank', 'figur'], ['thank', 'test', 'stuff', 'lol'], ['justin', 'timberlak', 'snl', 'awesom', 'dude', 'becom', 'regular'], ['syke', 'lose', 'gig', 'gain', 'better', 'one', 'frank', 'best', 'thing', 'rightard', 'scream'], ['welcom', 'tila', 'love', 'wish', 'could', 'heard'], ['quot', 'see', 'yeah', 'quot', 'quot', 'quot', 'quot', 'guarante', 'not', 'want', 'wait', 'long', 'not', 'see', 'quot', 'fuckin', 'fruit', 'basket', 'hahaha'], ['love', 'proper', 'inet', 'back'], ['sure', 'love', 'work', 'x'], ['good', 'luck', 'keep', 'rockin'], ['like', 'hear', 'not', 'unfollow', 'us', 'littl', 'peopl', 'twitter', 'make', 'big'], ['well', 'least', 'not', 'bad', 'thought', 'found', 'new', 'websit', 'watch', 'movi', 'got', 'not', 'bad', 'not', 'bad'], ['giv', 'ya', 'mom', 'n', 'gman', 'happi', 'mother', 'day'], ['happi', 'mom', 'get', 'rule', 'kid', 'take', 'day'], ['fantast', 'friend'], ['use', 'definit', 'cheaper', 'may', 'get', 'later', 'one', 'way', 'new', 'ok'], ['go', 'sausag', 'yum', 'yum'], ['know', 'ahh', 'fun'], ['still', 'not', 'gone', 'sleep', 'yet', 'earli', 'hit', 'beach', 'shop', 'yay'], ['got', 'home', 'church', 'servic', 'good'], ['omg', 'soo', 'excit', 'wait', 'ever', 'sinc', 'saw', 'one', 'midnight', 'night'], ['great', 'day', 'beach', 'bbq', 'old', 'friend', 'crazi', 'old', 'enough', 'friend', 'amp', 'learn', 'play', 'texa', 'holdem'], ['whole', 'immedi', 'citi', 'point', 'tomorrow', 'afternoon', 'monument'], ['wow', 'great', 'list', 'need', 'shop'], ['ahaha', 'album', 'stuff', 'music', 'beauti', 'love'], ['think', 'destini', 'offici', 'gone', 'crazi', 'hahahaha'], ['suck', 'horribl', 'world', 'even', 'balanc'], ['pretti', 'pictur'], ['sweeti', 'lucki', 'liberti'], ['would', 'love', 'not', 'think', 'easi', 'think', 'enthusiast'], ['love', 'life', 'ni', 'night', 'twitter', 'lt'], ['thank', 'follow', 'famili', 'photo', 'beauti', 'happi', 'mother', 'day', 'wife'], ['okay'], ['excit', 'see', 'cousin', 'week'], ['love', 'soup'], ['got', 'buy', 'onesi', 'besti', 'lol', 'ah', 'yea', 'club', 'grand', 'old', 'time'], ['glad', 'got', 'twitter', 'love', 'babi'], ['hey', 'thanx', 'follow', 'follow'], ['sign', 'twitter', 'yay'], ['thank', 'dinno', 'appreci'], ['oh', 'oh', 'oh', 'offer', 'send', 'duck', 'love', 'love', 'love', 'confit', 'duck'], ['haha', 'sorri', 'past', 'bedtim'], ['gabl', 'apart', 'corpor', 'nice'], ['prom', 'chao', 'began'], ['sell', 'risk', 'game', 'need', 'good', 'day'], ['georg', 'lopez', 'bed', 'mommi', 'day', 'tomorrow', 'wish', 'hous', 'hugh', 'lauri', 'sexay', 'sometim', 'like', 'way', 'older', 'guy'], ['sure', 'hope', 'worth', 'loveu'], ['boy', 'not', 'finish', 'taco', 'eat', 'happili'], ['well', 'hope', 'feel', 'better', 'soon', 'babe', 'go', 'bed', 'long', 'day', 'tomorrow'], ['tri', 'thank'], ['not', 'krystal', 'spent', 'night', 'last', 'dnt', 'think', 'post', 'ya', 'laugh', 'lot', 'squirrel', 'amp', 'hous', 'new', 'insid', 'joke'], ['congrat', 'photo', 'dre'], ['ashli', 'thank', 'made', 'feel', 'littl', 'better'], ['get', 'emili', 'half', 'hour', 'get', 'nice', 'day', 'talk', 'later', 'hope'], ['offic', 'mother', 'day', 'happi', 'mom', 'day'], ['fun', 'though'], ['whoo', 'babi', 'good', 'luck'], ['saw', 'star', 'word', 'bombtast', 'go', 'see', 'not', 'alreadi', 'love', 'jon', 'cho', 'haha'], ['instrumentalist', 'like', 'give', 'singer', 'hard', 'time', 'vocalist', 'job', 'toughest', 'sick'], ['excit', 'enfest', 'yaay'], ['yay', 'found', 'great', 'time', 'tonight'], ['cool', 'well', 'need', 'help', 'regard', 'googl', 'friend', 'plenti', 'info'], ['rematch', 'sound', 'better', 'not', 'think', 'lol'], ['god', 'earli', 'hayley', 'still', 'asleep', 'today', 'parti', 'day', 'get', 'stuff', 'readi', 'x'], ['coast', 'mani', 'peopl', 'know', 'love', 'nicci'], ['leg', 'soft', 'watch', 'move', 'momm', 'short', 'day', 'workk'], ['bed', 'head', 'not', 'stop', 'give', 'pain', 'ahgg', 'let', 'sinus', 'allergi', 'whatev', 'tomorrow', 'sogni'], ['one', 'thing', 'good', 'enough', 'friendship', 'retain'], ['also', 'dens', 'treatment', 'cps', 'continu', 'base', 'interpret', 'design', 'not', 'sicp', 'good'], ['definit', 'easier', 'way', 'say', 'yes'], ['clue', 'wtf'], ['say', 'new', 'layout', 'cute', 'x', 'see', 'cuti', 'hahahah'], ['thought', 'yes', 'man', 'good', 'blast', 'old', 'friend', 'tonight', 'heard', 'great', 'music'], ['anytim', 'giggl'], ['think', 'end', 'rememb', 'poetri', 'feel', 'behind', 'someth', 'far', 'import', 'name'], ['neither', 'got', 'go', 'thru', 'somethin', 'first', 'get', 'almost', 'burnt', 'hous', 'set'], ['shower', 'taken', 'room', 'right', 'bed', 'yeasterday', 'shower', 'balconi', 'sea', 'wiew', 'bit', 'nicer'], ['beauti', 'twitter', 'tell', 'mother', 'happi', 'mother', 'day'], ['oh', 'okay', 'cool', 'love', 'fast', 'furious', 'not', 'wait', 'see', 'new', 'one'], ['studi', 'like', 'crazi', 'hope', 'ace', 'exam'], ['yep', 'finish', 'chock', 'full', 'spell', 'grammat', 'error', 'clean', 'tomorrow', 'pop', 'hehe'], ['good', 'metaphor', 'democrat', 'process', 'truth', 'better', 'serv', 'not', 'transpar', 'opaqu', 'privat'], ['lol', 'l', 'love', 'tweet', 'keep', 'come'], ['norwood', 'hous', 'parti', 'haa', 'yaay', 'smile'], ['happi', 'mother', 'day', 'mom'], ['watch', 'men', 'n', 'blk', 'wishin', 'mum', 'happi', 'mother', 'day'], ['finish', 'dinner', 'yummi'], ['oh', 'love', 'text', 'drunk', 'friend', 'hahahaha'], ['pretti', 'sure', 'hero', 'status', 'rock', 'sock', 'ms', 'mccain'], ['butterfli', 'fli', 'miley', 'ray', 'oh', 'amp', 'happi', 'mother', 'day', 'lt', 'love', 'mami'], ['industri', 'repierc', 'made', 'cute', 'littl', 'friend'], ['crush', 'guy', 'job', 'name', 'tyler', 'eye', 'blue', 'mesmer', 'cool', 'nite'], ['hahaha', 'yay', 'emili', 'cool'], ['find', 'tune', 'sexi', 'smooth', 'love', 'day'], ['welcom'], ['sweet', 'spice', 'girl', 'sing', 'along', 'w', 'good', 'friend'], ['not', 'argu', 'actual', 'zero', 'thing', 'complain', 'make', 'stuff'], ['goodnight', 'peopl'], ['tri', 'sleep', 'not', 'bout', 'call', 'tisha'], ['oh', 'see'], ['went', 'ride', 'tortilla', 'flat', 'morn', 'littl', 'warm', 'nice', 'ride', 'none', 'less'], ['sleepyhead', 'look', 'forward', 'tomorrow', 'love', 'famili'], ['hahah', 'know', 'love', 'hannah', 'montana', 'movi', 'aweesom'], ['happi', 'mother', 'day', 'mom', 'love'], ['nj', 'nativ', 'thank'], ['twitter', 'use', 'remind', 'peopl', 'forgot', 'ask', 'given', 'day', 'also', 'excel', 'inspir'], ['want', 'say', 'posit', 'doin', 'good', 'chang', 'not', 'regret', 'forsur'], ['aww', 'thank', 'love', 'girl', 'lt'], ['ice', 'coffe', 'vanilla', 'ice', 'cream', 'uber', 'sick', 'mix'], ['happi', 'mother', 'day', 'mommi', 'grandma', 'haha', 'ili'], ['done', 'disneyland', 'kid', 'knock', 'stop', 'hotel', 'bar', 'grab', 'grey', 'goos', 'amp', 'tonic', 'way'], ['happi', 'mother', 'day', 'mom', 'hope', 'never', 'join', 'crowd'], ['emerg', 'radio', 'iphon', 'awesom', 'listen', 'johnson', 'counti', 'sheriff', 'live', 'scanner', 'stream'], ['goin', 'bed', 'final', 'sleepi', 'happi', 'mother', 'day'], ['problem', 'look', 'forward', 'next', 'tweet'], ['nice', 'song', 'come'], ['thank', 'bb'], ['happi', 'mother', 'day'], ['wow', 'two', 'hour', 'convers', 'someon', 'omegl', 'amaz'], ['es', 'impos', 'amar', 'starbuck'], ['look', 'haz', 'smal', 'pie', 'pleess'], ['dilf', 'oh', 'wait', 'wrong', 'mother', 'day'], ['go', 'home', 'hope', 'one', 'saw', 'play'], ['yes', 'man', 'good'], ['omg', 'awesom', 'first', 'time', 'ever', 'not', 'see', 'day', 'come', 'demi', 'take', 'day', 'haha'], ['happi', 'mother', 'day', 'night'], ['not', 'sleep', 'super', 'duper', 'duper', 'excit', 'pour', 'la', 'pari', 'love', 'citi'], ['sound', 'good', 'clean', 'cynic', 'order', 'haha', 'good', 'night', 'talk', 'tomorrow'], ['aww', 'thank', 'jon', 'know', 'make', 'ladi', 'feel', 'special'], ['get', 'wonder', 'toy'], ['break', 'pack', 'watch', 'offic', 'pam', 'quot', 'woken', 'not', 'look', 'cute', 'knew', 'meant', 'quot'], ['thank', 'good', 'tv', 'simpl', 'dollhous'], ['definit', 'write', 'look', 'forward', 'articl', 'write', 'fun'], ['great', 'babe', 'congrat'], ['one', 'mo', 'time', 'becuz', 'not', 'seen', 'yet', 'soo', 'damn', 'cool', 'ill', 'post'], ['love', 'maitu', 'n', 'love', 'happi', 'mother', 'day', 'mama'], ['bed', 'great', 'mom', 'day', 'mom'], ['aww', 'scifi', 'geek', 'starwar', 'ten', 'command', 'us', 'geek'], ['blush', 'blush', 'amp', 'blush'], ['feelin', 'right', 'rite'], ['pull', 'breakfast', 'sausag', 'mother', 'day', 'hope', 'babi', 'sleep'], ['happi', 'mother', 'day'], ['got', 'home', 'love', 'stake', 'shake', 'milkshak'], ['good', 'day', 'good', 'friend', 'make', 'not', 'regret', 'live'], ['still', 'plenti', 'food', 'left', 'thank', 'come', 'not', 'wait', 'see', 'pictur', 'came'], ['absolut', 'good', 'backup', 'romo', 'decemb'], ['ooh', 'pretti', 'jen', 'sure', 'love'], ['mom', 'ever', 'happi', 'mother', 'day'], ['good', 'night'], ['watch', 'adapt', 'interior', 'women', 'good', 'movi', 'night', 'breakfast', 'dad', 'kelley', 'morn'], ['star', 'trek', 'imax', 'not', 'huge', 'screen', 'still', 'worth', 'watch'], ['crap'], ['thank', 'much', 'phaoloo'], ['haha', 'somerset', 'theatr', 'ottawa', 'rememb', 'well', 'thing', 'chang', 'stay'], ['great', 'find'], ['life', 'good'], ['thought', 'star', 'trek', 'person', 'not', 'crazi', 'new', 'movi'], ['happi', 'birthday', 'david'], ['love', 'background', 'might', 'copi'], ['today', 'soo', 'fun', 'happi', 'birthday', 'chrissi', 'lt'], ['vote', 'sad', 'vote', 'log', 'yet', 'go', 'vote'], ['haha', 'agre', 'test', 'dummi', 'go', 'say', 'quot', 'whatev', 'want', 'quot', 'alway', 'love', 'magic'], ['presid'], ['soo', 'think'], ['welcom', 'cours'], ['visit', 'grandpar', 'later', 'way', 'heard', 'kati', 'perri', 'hook', 'whew', 'cool', 'love', 'version'], ['happi', 'mum', 'day', 'kinduhh', 'major', 'crush', 'alex', 'johnson', 'cab'], ['better', 'way', 'spoil', 'mum', 'let', 'kick', 'back', 'relax', 'nice', 'meal', 'bottl', 'favorit', 'wine', 'wine', 'red'], ['got', 'home', 'went', 'totoro', 'cafe', 'final', 'first', 'time', 'ever', 'like', 'color', 'place', 'happi', 'atmospher'], ['give', 'oh', 'well', 'not', 'count', 'math', 'weight', 'lack', 'not', 'make', 'sens'], ['ahh', 'whatchu', 'babi', 'hahaha', 'believ', 'youu', 'heh', 'actual', 'life', 'worth', 'take', 'risk'], ['love', 'show', 'subscrib', 'follow', 'tweet', 'not', 'wait', 'see'], ['yay', 'mark', 'issu', 'find', 'lot', 'issu', 'lmao'], ['two', 'fantast', 'show', 'row'], ['nice', 'sound', 'great', 'let', 'know'], ['go', 'sleep', 'earli', 'good', 'night'], ['cool', 'could', 'help', 'make', 'happen', 'amp', 'make', 'sure', 'happen', 'least', 'houston', 'would', 'great', 'k', 'thank'], ['might', 'middl', 'perfect', 'weekend'], ['wish', 'everyon', 'happi', 'mother', 'day', 'xoxo'], ['one', 'tough', 'momma', 'put', 'togeth', 'swing', 'set', 'tammi', 'today', 'hubbi', 'would', 'proud'], ['dang', 'want', 'beach', 'late', 'night', 'best', 'sound', 'wave', 'breez', 'hope', 'well'], ['listen', 'mcr', 'watch', 'dvd', 'chocol', 'hehe', 'awesom'], ['happi', 'mother', 'day', 'love', 'mom'], ['sight', 'made', 'afternoon'], ['omg', 'one', 'yess', 'love', 'danni', 'song'], ['mum', 'love', 'camp', 'rock', 'mother', 'day', 'card', 'gave', 'knew', 'would', 'happi', 'mother', 'day', 'new', 'zealand', 'haha', 'ili', 'lot', 'xx'], ['not', 'quot', 'picki', 'quot', 'might', 'not', 'find', 'interest', 'talk'], ['go', 'campo', 'missendon', 'road', 'newtown', 'ask', 'ben', 'discov', 'great', 'coffe'], ['keep', 'tri', 'get', 'right', 'last', 'time'], ['oh', 'gosh', 'love'], ['lol', 'wow', 'good', 'haha', 'still', 'not', 'believ', 'mother', 'day'], ['damn', 'nig', 'not', 'get', 'quot', 'not', 'without', 'check', 'quot', 'lmfao'], ['great'], ['well', 'goodnight', 'twitter', 'bug', 'sleep', 'well'], ['oh', 'ok', 'good', 'jump', 'joy', 'made', 'day'], ['happi', 'mother', 'day', 'breakfast', 'fam', 'lt'], ['juss', 'came', 'backk', 'berkeleyi', 'omg', 'madd', 'fun', 'not', 'minut', 'whassqoodd'], ['thank', 'shir', 'got', 'caught', 'commiss', 'get', 'gift', 'certif', 'not', 'take', 'one'], ['not', 'wait', 'see', 'shia', 'yippie'], ['agre', 'guy', 'rock'], ['ugh', 'head', 'headach', 'stop', 'anyway', 'love', 'life', 'right', 'could', 'not', 'ask', 'anyth', 'love', 'happi'], ['sleep', 'good', 'day', 'nice', 'night', 'comfi', 'bed'], ['ahh', 'keyboard', 'get', 'wors', 'birthday', 'day'], ['head', 'xs', 'nadia', 'yee'], ['start', 'new', 'job', 'today', 'aand', 'stoke', 'may', 'long', 'billi', 'awesom'], ['still', 'eatin', 'readin', 'comment', 'last', 'best', 'comment', 'receiv', 'quot', 'realli', 'brought', 'ann', 'life', 'quot'], ['home', 'not', 'know', 'tomorrow', 'besid', 'whole', 'mommi', 'day', 'thing', 'feel', 'awesom', 'night', 'guy'], ['peac', 'bro', 'thank', 'not', 'music', 'proud', 'repres', 'father', 'happi', 'mother', 'day'], ['fuck', 'love', 'alexand', 'william', 'gaskarth'], ['hahaha', 'blast'], ['go', 'downstair', 'coffe', 'socialis', 'wow', 'give', 'time', 'french', 'later'], ['hulk', 'great', 'movi', 'might', 'recogn', 'toronto', 'young', 'street', 'fight', 'scene'], ['made', 'parent', 'add', 'guy', 'famili', 'impress', 'song'], ['know', 'block', 'parti', 'would', 'love', 'hear', 'dh', 'origin', 'get', 'chanc'], ['yay', 'friend', 'glen', 'like'], ['start', 'love', 'twitter', 'diet', 'work', 'great'], ['wish', 'mommi', 'happi', 'mother', 'day'], ['say', 'feel', 'mama', 'tuck', 'night', 'lone', 'get', 'tomorrow', 'tough'], ['yay', 'give', 'lesson', 'tomorrow', 'church'], ['nice', 'mother', 'day', 'mum', 'like', 'present', 'wonder', 'ever', 'see', 'one', 'talk', 'sisa'], ['yep', 'convert', 'blip', 'great', 'hear', 'lot', 'other', 'suggest', 'pretti', 'great', 'stuff'], ['wed', 'anniversari', 'today', 'lucki', 'gorgeous', 'wife'], ['huge', 'test', 'parent', 'hous', 'food', 'good', 'stuck', 'one', 'help', 'second', 'feel', 'good'], ['love', 'new', 'bracelet', 'proud', 'rock', 'gir'], ['gorgeous', 'mom', 'happi', 'mom', 'daay'], ['yeah', 'fun', 'regret', 'not', 'take', 'cup', 'must', 'find', 'one', 'like'], ['funtim', 'not', 'lot', 'fun', 'final', 'done'], ['damn', 'charm', 'skater', 'look', 'kind', 'hot', 'mess', 'catherin', 'pls', 'not', 'hate', 'hit', 'friend', 'tnx'], ['hey', 'sorri', 'got', 'last', 'night'], ['haha', 'thank', 'listen', 'rant', 'noth', 'good', 'night'], ['aw', 'anytim', 'boo', 'realiz', 'need', 'fun', 'guy', 'chang', 'pic', 'poofi', 'hair', 'one'], ['haha', 'follow', 'john', 'pretti', 'funni', 'guy', 'want', 'move', 'much', 'fun'], ['forgot', 'twitter', 'account', 'happi', 'mother', 'day'], ['mm', 'comfort', 'junk', 'food', 'sound', 'good', 'alway', 'prefer', 'wingstop'], ['believ', 'see'], ['like', 'mean', 'random', 'person', 'obvious', 'not', 'know', 'think', 'alik'], ['happi', 'mother', 'day'], ['not', 'mind', 'not', 'pay', 'rent', 'moon', 'idea', 'move', 'least', 'year', 'earli'], ['anyon', 'els', 'seen', 'dm', 'notif', 'email', 'say', 'quot', 'repli', 'quot', 'cool', 'accent', 'weird', 'onlin'], ['wow', 'impress', 'pastor', 'luca', 'great', 'work'], ['made', 'earli', 'night', 'think', 'bout', 'take', 'shower', 'chill', 'witcha', 'miss', 'anyth'], ['god', 'bless', 'rahul', 'pictur'], ['lol', 'fave', 'driver', 'martin', 'happi'], ['sigh', 'come', 'sac', 'pleas', 'miami', 'central', 'valley'], ['hi', 'eunic', 'kyna', 'huge', 'fan', 'not', 'wait', 'next', 'album'], ['thank', 'kirst', 'post', 'run', 'inspir'], ['next', 'show', 'upcom', 'one', 'realli', 'want', 'see', 'guy'], ['gorgeous'], ['pic', 'nice', 'look'], ['love', 'duud', 'need', 'make', 'shirt', 'say', 'someth', 'cool', 'say'], ['haha', 'either', 'like', 'alway', 'love', 'hilari', 'girl', 'id', 'turn', 'gay', 'haha'], ['great', 'person'], ['let', 'us', 'smoke', 'watch', 'daze', 'confus', 'perfect', 'pizza', 'movi'], ['mum', 'day', 'end', 'happi', 'not', 'day', 'anyth'], ['readi', 'day', 'full', 'presenc', 'expect', 'best'], ['good', 'eatin', 'hey', 'follow', 'son'], ['younger', 'mine', 'problem'], ['happi', 'birthday'], ['look', 'js', 'code', 'facebook', 'notic', 'js', 'kid', 'buddi', 'told'], ['say', 'shoutout', 'nikki', 'pleas', 'soulja', 'boy', 'tell', 'live', 'live', 'gt'], ['happi', 'mother', 'day', 'hope', 'awesom', 'good', 'rest', 'night'], ['offici', 'mother', 'day', 'happi', 'mother', 'day', 'mom'], ['bitch', 'miss'], ['happi', 'mother', 'day'], ['hour', 'not', 'sleep', 'time', 'bed', 'far', 'good'], ['happi', 'mother', 'day'], ['blah', 'blah', 'blah', 'kid', 'dude', 'never', 'anyon', 'offer', 'stem', 'cell', 'haha'], ['miss', 'amp', 'hope', 'talk', 'happi', 'mine', 'though', 'lt'], ['not', 'contain', 'excit'], ['chevr', 'pleas', 'follow', 'chevr', 'use', 'public', 'tweet', 'thank'], ['excit', 'home', 'final', 'week', 'weekend', 'peopl', 'know'], ['bryan', 'sweet', 'not', 'think', 'go', 'talk', 'toward', 'end', 'night', 'talk'], ['great', 'home', 'temp', 'chill', 'cat', 'great', 'feel', 'awesom'], ['thank', 'interview', 'mama', 'enjoy', 'night'], ['oo', 'like', 'anywher', 'near', 'mommi', 'good'], ['eminem', 'new', 'song', 'quot', 'beauti', 'quot', 'amaz', 'listen', 'magic', 'right'], ['watch', 'favorit', 'tv', 'show', 'free'], ['cool', 'detail', 'made', 'pleas', 'tell'], ['plenti', 'good', 'trivia', 'wikihow', 'tri', 'help', 'hope', 'got', 'sleep'], ['spoke', 'club', 'fell', 'love', 'tom', 'arnold', 'not', 'rosi', 'ex', 'definit', 'differ', 'lucki', 'moi'], ['yeah', 'still', 'needa', 'hang', 'lol', 'glad', 'super', 'time', 'show'], ['interview', 'tuesday', 'thing', 'turn', 'around', 'think', 'yay', 'not', 'worri', 'japsican', 'rare', 'breed'], ['happi', 'birthday', 'stevi', 'want', 'follow', 'get', 'littl', 'tweeti', 'may', 'babi', 'r', 'best'], ['thank', 'shoutin', 'mom', 'today', 'also', 'say', 'thank'], ['happi', 'mother', 'day', 'mum'], ['watch', 'best', 'movi', 'ever', 'neverend', 'stori', 'wish', 'babbi', 'though'], ['watch', 'origin', 'sabrina', 'teenag', 'witch', 'movi', 'differ', 'seri', 'rad'], ['want', 'wish', 'happi', 'mother', 'day', 'two', 'favorit', 'mom', 'world', 'mom', 'cours', 'sister', 'happi', 'mom', 'day', 'two'], ['pretti', 'perfect', 'eh', 'yes', 'cannabi', 'saw', 'sign', 'global', 'marijuana', 'march'], ['finish', 'church', 'happi', 'mother', 'day'], ['thank'], ['yep', 'hope'], ['good', 'luck', 'final', 'long', 'time', 'panvel', 'tweetup', 'final', 'come', 'true'], ['pleas', 'review', 'sunehr', 'ad', 'placement'], ['lack', 'go', 'hunt', 'lol', 'refresh', 'memori', 'one', 'clue'], ['love', 'new', 'mother', 'day', 'snl', 'digit', 'short', 'mother', 'lover', 'oohh', 'corny'], ['good', 'child'], ['happi', 'mother', 'day', 'hope', 'awesom', 'time', 'bug'], ['hi', 'serena', 'want', 'say', 'good', 'luck', 'madrid', 'pari', 'month'], ['wish', 'mother', 'happi', 'mother', 'day'], ['laugh', 'tire', 'haha', 'mayb', 'go', 'bed', 'night'], ['long', 'lost', 'friend'], ['know', 'laugh', 'stupid', 'right', 'joke', 'wth', 'glad', 'humor'], ['say', 'thank'], ['love', 'googl', 'mother', 'day', 'theme'], ['year', 'ago', 'brother', 'saw', 'bruce', 'walk', 'sidewalk', 'sanibel', 'use', 'live', 'pine', 'great', 'place'], ['wow', 'love', 'thank'], ['catt', 'total', 'love', 'default', 'pictur', 'seem', 'like', 'fun', 'mom'], ['good', 'shit', 'homi', 'hahahahaha', 'talkin'], ['easi', 'happi', 'mother', 'day', 'great', 'mom'], ['not', 'wait', 'see', 'guy', 'hq', 'sunday'], ['quit', 'like', 'worth', 'relax', 'place', 'nice', 'coffe', 'shop', 'fresh', 'air', 'not', 'mani', 'oik'], ['love'], ['love', 'site', 'hoot', 'realli', 'enjoy', 'hair', 'cut', 'thailand', 'alway', 'tri', 'time', 'ir', 'right', 'thank', 'tip'], ['happi', 'mother', 'day', 'everyon'], ['great', 'gpt', 'tp', 'put', 'lyric', 'finsih', 'background', 'go', 'write', 'done'], ['great', 'reason', 'quot', 'quot', 'tri', 'find', 'excus', 'go', 'la', 'show'], ['not', 'say', 'know', 'good', 'like'], ['good', 'night', 'everyon', 'go', 'lay', 'bed', 'watch', 'eras'], ['hahahaha', 'omg', 'win', 'internetz', 'today', 'quot', 'tri', 'turn', 'zac', 'efron', 'quot', 'hahaha'], ['happi', 'mama', 'day', 'mother'], ['yay', 'snl'], ['photo', 'nice'], ['hi', 'get', 'tri', 'new', 'yea', 'fuunn', 'let', 'us', 'dinner', 'get', 'back'], ['happi', 'almost', 'mother', 'day'], ['favourit', 'shirt', 'true', 'lt', 'grumpi', 'cute', 'b', 'huggabl', 'c', 'life', 'parti'], ['best', 'planet'], ['go', 'bed', 'soon', 'happi', 'mother', 'day', 'mother', 'lt', 'ryan', 'less', 'week'], ['whohoo', 'erin', 'got', 'accept', 'ottawa', 'nurs', 'school', 'algonquin', 'pembrok', 'campus', 'may', 'get', 'girl', 'back'], ['happi', 'mother', 'day', 'mother', 'world', 'especi', 'tweeter', 'mom'], ['final', 'learn', 'think', 'speak', 'work', 'wonder'], ['meat', 'product', 'love', 'rehydr', 'warm', 'milk', 'breakfast'], ['welcom'], ['love', 'kind', 'read', 'call', 'would', 'like'], ['thank', 'us', 'mami', 'bringin', 'sexi', 'back'], ['mani', 'mine', 'includ', 'ahem', 'shld', 'known', 'better', 'back', 'wld', 'miss', 'mani', 'opportun', 'haha'], ['goodnight', 'beauti', 'world', 'sweet', 'dream', 'oliv', 'juic'], ['go', 'watch', 'jt', 'snl', 'tonight', 'not', 'fan', 'music', 'think', 'hilari', 'pant', 'way', 'funni'], ['yes', 'mayb', 'dm', 'though', 'not', 'annoy', 'follow', 'thought', 'late', 'good', 'night'], ['step', 'show', 'fantabul', 'hi', 'sis', 'group', 'divis', 'show', 'overal', 'whoo'], ['glad', 'fun', 'babe'], ['gawwdd', 'headshotss', 'inna', 'row', 'fyaahh'], ['mon', 'ami', 'sinc', 'year', 'young', 'love', 'foreverr'], ['thank', 'posit', 'energi', 'contribut'], ['yeah', 'thank', 'back', 'soon', 'see', 'ya', 'got'], ['great', 'night', 'hangin', 'famili', 'mom', 'dad', 'love', 'extra', 'compani', 'tonight', 'not', 'wait', 'frc', 'pcola', 'tomorrow'], ['get', 'readi', 'go', 'sleep', 'grind', 'earli', 'morn', 'yay', 'money'], ['hope', 'havin', 'fun', 'da', 'club'], ['free', 'last', 'tomorrow', 'get', 'rememb', 'sunday', 'look', 'like'], ['battl', 'mina', 'tirith', 'still', 'impress', 'return', 'jedi', 'best', 'lord', 'ring', 'movi', 'go'], ['hour', 'shop', 'good', 'effort', 'best', 'part', 'chocol', 'shop', 'yujm', 'yum', 'even'], ['head', 'today', 'shop', 'mother', 'day', 'gift', 'love', 'b', 'amp', 'bws', 'new', 'scent', 'finish', 'book', 'bought', 'yesterday'], ['cover', 'portfolio', 'send', 'dream', 'job', 'ny', 'send', 'good', 'vibe'], ['back', 'durango', 'chaperon', 'parti', 'interest', 'catch', 'internet', 'surf', 'drink', 'woodchuck', 'ha'], ['hey', 'lonni', 'next', 'weekend', 'not', 'wait'], ['not', 'realli', 'alcohol', 'disappoint', 'serious', 'though', 'got', 'kid'], ['great', 'night'], ['happi', 'mother', 'day'], ['well', 'great', 'appreci', 'comment', 'mean', 'lot', 'work', 'progress', 'know'], ['orgasm', 'sandwich'], ['uh', 'marri', 'haha', 'kid', 'kind', 'hot', 'though', 'know'], ['cong', 'govt', 'rule', 'karnataka', 'cauveri', 'would', 'not', 'found', 'mention', 'truli', 'politician', 'integr'], ['lolz', 'modesti', 'kix', 'rox', 'gal', 'line', 'door'], ['happi', 'mother', 'day', 'mom', 'around', 'hope', 'wonder', 'day'], ['aww', 'thank', 'feel', 'good'], ['good', 'morn', 'everyon'], ['want', 'wish', 'everyond', 'happi', 'mother', 'day', 'hope', 'great', 'one'], ['probabl', 'best', 'birthday', 'ever', 'got', 'spend', 'favorit', 'peopl'], ['happi', 'mother', 'day', 'mommi'], ['great', 'not', 'twitter'], ['thank', 'much'], ['way', 'wors', 'not', 'say', 'hello'], ['love', 'spring', 'definit', 'seem'], ['like', 'feel'], ['cool', 'catch', 'laterz'], ['sigh', 'joe', 'sing', 'purdi', 'make', 'feel', 'better'], ['fantast', 'day', 'az', 'sun'], ['yay', 'think', 'anim', 'not', 'hard'], ['good', 'luck', 'deer', 'next', 'weekend', 'hope', 'not', 'cold', 'snowi'], ['happi', 'sunday', 'work'], ['still', 'not', 'believ', 'matt', 'mccoy', 'interview', 'got', 'view', 'twitter', 'truli'], ['restor', 'new', 'itouch', 'excit', 'use', 'yee', 'goodby', 'itouch'], ['restor', 'new', 'itouch', 'excit', 'use', 'yee', 'goodby', 'itouch'], ['finish', 'bake', 'cinnamon', 'roll', 'soo', 'yummi'], ['goodnight'], ['sleep', 'rock', 'sheet', 'hope', 'smooth', 'endulg', 'not', 'wait', 'blanket'], ['super', 'duber', 'high', 'klondik', 'bar', 'thee', 'busi'], ['want', 'michi', 'moma', 'love', 'mom'], ['stupid', 'liar', 'glad', 'ignor', 'blast'], ['keri', 'slow', 'danc', 'rockin', 'shit', 'playlist', 'right', 'get', 'song', 'pure', 'panti', 'dropper'], ['great', 'show', 'today'], ['happi', 'mother', 'day', 'love', 'mama'], ['welcom', 'twitter', 'realli', 'cool', 'greet', 'vienna', 'austria'], ['travel', 'alon', 'make', 'meet', 'new', 'peopl', 'new', 'circl', 'becom', 'friend'], ['morn', 'everyon', 'hope', 'great', 'sunday'], ['fatigu', 'settl', 'got', 'power', 'awesom', 'seat', 'tonight', 'pretti', 'lucki', 'life', 'not', 'bad'], ['babi', 'drink', 'god', 'love'], ['happi', 'mother', 'day', 'mommi'], ['wait', 'good', 'twenti', 'minut', 'one', 'good', 'night', 'though'], ['good', 'morn', 'sunshin', 'mm', 'go', 'start', 'day', 'wth', 'movi'], ['kill', 'bradi', 'gf', 'bradi'], ['tonight', 'fun', 'love', 'girl', 'tanna'], ['yeah', 'know', 'thank', 'much'], ['yo', 'yo', 'yo', 'like', 'ice', 'cream'], ['happi', 'mother', 'day', 'soon', 'possibl', 'everyday'], ['shaanxi', 'kept', 'boast', 'nativ', 'noodl', 'realli', 'curious', 'shaanxi', 'food'], ['go', 'sleep', 'goodnight', 'xoxo'], ['grr', 'naplan', 'finish', 'commerc', 'amp', 'geo', 'exam', 'good', 'luck'], ['thank', 'teach', 'valu', 'better', 'person', 'day', 'love', 'much', 'best', 'mum', 'world'], ['nice', 'wish', 'could', 'go', 'make', 'sure', 'take', 'ton', 'pictur'], ['make', 'happi', 'whether', 'know', 'not', 'lt'], ['happi', 'mother', 'day', 'beauti'], ['much', 'much', 'much', 'mash', 'pleas'], ['yes', 'want', 'come', 'hang', 'gurl', 'know', 'haha', 'bangin', 'got', 'hang', 'chick'], ['nightlif', 'commando', 'like', 'chant', 'music', 'cool', 'amp', 'listen', 'inx', 'music', 'song', 'amaz', 'bass', 'win'], ['think', 'may', 'broken', 'nose', 'show'], ['find', 'song', 'idea', 'cover', 'actual', 'inde', 'think', 'awesom', 'make', 'day'], ['sound', 'good', 'not', 'wait'], ['go', 'town', 'two', 'dinner', 'roll', 'dark', 'chocol', 'yumm'], ['hey', 'hey', 'andrew', 'haha', 'p', 'well', 'happi', 'mother', 'day', 'mum'], ['happi', 'mother', 'day', 'peopl', 'love', 'mom', 'lot', 'still'], ['awesom'], ['glad', 'fine', 'thank', 'anoth', 'night', 'full'], ['hey', 'saw', 'snl', 'amp', 'love', 'especi', 'crumpin', 'scene', 'quot', 'dub', 'quot', 'wow', 'hilari'], ['read', 'good', 'thing', 'bout', 'not', 'feelin', 'tonight', 'proli', 'finish', 'tomorrow', 'star', 'trek'], ['lol', 'not', 'armi', 'starfleet', 'rule', 'meant', 'broken', 'get', 'job', 'done', 'get', 'medal'], ['soo', 'great', 'love', 'good', 'live', 'haha', 'pour', 'us', 'though', 'make', 'much', 'better'], ['met', 'one', 'nerdiest', 'server', 'chili', 'today', 'lol', 'awesom', 'favorit'], ['product', 'day', 'got', 'spot', 'extra', 'featur', 'film', 'film', 'tomorrow', 'awesom', 'week', 'around'], ['fuck', 'love', 'fuck', 'internet'], ['weird', 'usual', 'like'], ['love'], ['happi', 'mother', 'day', 'mom', 'amp', 'mommi', 'mom', 'qood', 'one', 'ladi'], ['youth', 'group', 'would', 'like', 'go', 'could', 'not', 'afford', 'amp', 'drama', 'love', 'ya', 'though'], ['pleas', 'wear', 'glass', 'next', 'video', 'look', 'amaz'], ['love', 'old', 'school', 'horror', 'movi', 'got', 'elvira', 'tattoo', 'back'], ['awesom', 'lunch', 'famili', 'amp', 'dinner'], ['goodnight', 'babi', 'loll', 'jk', 'night'], ['final', 'got', 'home', 'get', 'sleep', 'great', 'time', 'friend'], ['hahahaha', 'wtf', 'diann', 'twitter', 'guess', 'depend', 'person'], ['aww', 'yur', 'awesom', 'mother', 'keep', 'good', 'work'], ['haha', 'well', 'mayb', 'not', 'weak', 'hehe', 'jks', 'xx'], ['heyi', 'babyy'], ['like', 'smell', 'roast', 'oven', 'mm', 'must', 'dip', 'sakata', 'tide', 'till', 'roast', 'cook'], ['think', 'taylor', 'laughtner', 'selena', 'gomez', 'cutest', 'coupl', 'love', 'read', 'fave', 'mag'], ['grind', 'skyguard', 'less', 'aw', 'anticip', 'yet', 'still', 'aw', 'last', 'tabard', 'need'], ['heyi', 'girl', 'not', 'tweet', 'week', 'hope', 'well'], ['voter', 'paint', 'peel', 'skin', 'mayb', 'skin', 'peel', 'voter', 'paint'], ['hape', 'mother', 'day', 'mother'], ['thanx', 'thee', 'follow'], ['boom', 'boom', 'saw', 'movi', 'last', 'night', 'realli', 'enjoy'], ['meh', 'tri', 'one', 'commerci', 'drive', 'cat'], ['yes'], ['yeah', 'entir', 'time', 'swoon', 'eye', 'swoon', 'think'], ['love', 'get', 'littl', 'peek', 'dimpl'], ['finish', 'yet', 'anoth', 'amaz', 'book', 'susan', 'elizabeth', 'philip', 'god', 'love', 'book', 'much', 'one', 'read', 'next', 'hmm'], ['angrili', 'told', 'extem', 'emot', 'amp', 'physic', 'made', 'day', 'nightss'], ['decid', 'help', 'make', 'first', 'solo', 'album'], ['hey', 'gorgeous', 'day', 'night', 'play', 'sun', 'full', 'moon', 'lit', 'way', 'home', 'life', 'good'], ['oo', 'never', 'play', 'good', 'like', 'play', 'game', 'femal', 'not', 'like'], ['time', 'go', 'bed', 'hope', 'wake', 'better', 'day', 'niight'], ['good', 'go', 'singl', 'shit', 'goe', 'crazi', 'haha', 'fuck', 'like', 'singl', 'much'], ['welcom', 'actual', 'swedish', 'fan', 'tri', 'get', 'mcfli', 'us', 'close'], ['thank', 'get', 'bottl', 'water'], ['love', 'mile', 'run', 'make', 'smile'], ['read', 'twilight', 'new', 'moon', 'keen', 'read', 'eclips', 'break', 'dawn', 'hmm', 'twilight', 'better', 'new', 'moon', 'still', 'awesom'], ['awhh', 'nice', 'see'], ['thank', 'recommend'], ['would', 'like', 'remind', 'peopl', 'kansai', 'scene', 'whatev', 'current', 'issu', 'like', 'noth'], ['want', 'say', 'happi', 'mother', 'day', 'mom', 'includ', 'mine', 'love', 'mama'], ['sinc', 'read', 'twilight', 'seri', 'watch', 'underworld', 'today', 'got', 'pic', 'day'], ['raw', 'day'], ['feelin', 'nice', 'bottl', 'bacardi'], ['well', 'sunday', 'weather', 'look', 'great', 'gone', 'take', 'bike', 'visit', 'mom', 'day'], ['tonight', 'fun'], ['dream', 'awhil', 'thank', 'everyth', 'tweepl', 'mani', 'bless', 'amp', 'much', 'joy', 'peac', 'love', 'amp', 'happi', 'hope', 'dream', 'come', 'tru'], ['much', 'fun', 'banana', 'dessert', 'alon', 'worth', 'trip', 'austin', 'back', 'soon'], ['hour', 'till', 'mother', 'day', 'parti', 'yeah'], ['laundri', 'loud', 'music', 'relax'], ['minut', 'work', 'guess', 'go', 'back', 'work', 'minut', 'slow', 'today', 'thank', 'god', 'one', 'day'], ['congrat', 'high', 'doubt', 'buyer', 'want', 'car'], ['soo', 'hard', 'truck', 'fish', 'pleas'], ['chowder', 'shit'], ['happi', 'mother', 'day'], ['happi', 'mother', 'day'], ['good', 'morn'], ['happi', 'birthday', 'sweeti', 'great', 'day', 'best', 'place', 'word', 'sorri', 'chicago', 'jeje'], ['love', 'true'], ['wonder', 'even', 'love'], ['sidekick', 'awkward', 'flash', 'oh', 'well', 'leav', 'mommi', 'flower', 'stuff'], ['yes', 'peopl', 'skill', 'social', 'manner', 'quit', 'nice', 'billion', 'guess', 'need', 'love', 'gentl', 'guid'], ['love', 'justin', 'timberlak', 'host', 'snl', 'hilari'], ['happi', 'mom', 'day'], ['happi', 'mother', 'day', 'mother', 'love', 'mom', 'goodnight', 'everyone'], ['love', 'import', 'love', 'mom', 'happi', 'mother', 'day'], ['add', 'friendster'], ['amaz', 'time', 'momma', 'tomorrow', 'show', 'much', 'mean', 'whatev', 'love'], ['final', 'leavin', 'tha', 'realli', 'realli', 'good', 'music', 'pleas', 'wit', 'tha', 'turnout'], ['yes', 'blame'], ['would', 'eat', 'away', 'masculin', 'masculin', 'p', 'haha', 'prob', 'beat', 'though', 'haha', 'xo'], ['hate', 'hair', 'long', 'think', 'want', 'super', 'loong', 'hair'], ['haha', 'not', 'lol', 'might', 'miss', 'someth'], ['big', 'fan', 'danni', 'dyer', 'say', 'movi', 'look', 'awesom'], ['welcom', 'sweeti', 'muah', 'xoxox', 'love', 'ya'], ['push', 'amaz'], ['think', 'info', 'sync', 'proper', 'mac', 'mobil', 'iphon', 'yay', 'final'], ['great', 'night'], ['happi', 'mother', 'day', 'everyon'], ['oo', 'love', 'pretti', 'feet'], ['thank', 'know', 'realli', 'love'], ['new', 'day', 'new', 'home', 'happi', 'mom', 'day'], ['happi', 'mother', 'day', 'everybodi'], ['pick', 'chris', 'boston', 'cd', 'listen', 'drive', 'home', 'tonight', 'moon', 'not', 'want', 'end'], ['good', 'afternoon'], ['home', 'wango', 'tango', 'fun', 'realli', 'tire', 'wrap', 'mom', 'present', 'pass', 'lt'], ['tire', 'work', 'till', 'tonight', 'happi', 'mother', 'day', 'everyon'], ['happi', 'mother', 'day', 'mum', 'rememb', 'treat', 'mum', 'well', 'brought', 'life'], ['twitter', 'fail', 'life', 'sometim', 'oh', 'well'], ['hahahaha', 'spooki', 'wish', 'babe', 'lifetim', 'suppli', 'shoe', 'match', 'bag', 'constant', 'weight'], ['gps', 'post', 'prom'], ['day', 'quot', 'caught', 'paramor', 'quot', 'quot', 'good', 'deed', 'music', 'wick', 'quot', 'oh', 'fulli', 'aliv', 'flyleaf'], ['final', 'home', 'night', 'dinner', 'drink', 'friend', 'go', 'sleep', 'hope', 'bed', 'not', 'spin', 'much'], ['happi', 'mother', 'day'], ['welcom', 'new', 'follow', 'amp', 'thank', 'love', 'tweet'], ['nungguin', 'sista', 'law', 'lahiran', 'di', 'rs', 'sih', 'sore', 'ini', 'lahiran', 'yeayi', 'anoth', 'babi', 'girl', 'famili'], ['mother', 'day', 'mami', 'twitter'], ['good', 'hear', 'sever', 'peep', 'work', 'tonight'], ['geez', 'year', 'would', 'think', 'would', 'check', 'year', 'ago'], ['lmao', 'stupid', 'felt', 'like', 'sayin', 'red', 'caf', 'ya'], ['mom', 'everywher', 'stop', 'get', 'good', 'night', 'sleep', 'tomorrow', 'children', 'turn', 'pamper', 'enjoy', 'day'], ['thank', 'dear', 'know', 'appreci', 'valid', 'alway'], ['oh', 'yum', 'rhubarb', 'link', 'fab', 'thank'], ['ty', 'feed', 'nk', 'mean', 'uhh', 'nope', 'yup', 'addict', 'cover'], ['go', 'church', 'god', 'bless'], ['save', 'feel', 'like', 'go', 'crazi'], ['lay', 'bed', 'book', 'amp', 'beauti', 'music', 'thank', 'kaki', 'amp', 'nichola', 'spark'], ['thank', 'hon', 'great', 'happi', 'mother', 'day'], ['go', 'tri', 'get', 'sleep', 'goonight', 'twitter', 'nice', 'mother', 'day'], ['way', 'sleepi', 'ill', 'watch', 'show', 'nite', 'god'], ['send', 'love', 'bless', 'amp', 'heal', 'thought', 'amp', 'famili', 'peac'], ['nice', 'night', 'bed', 'time', 'work', 'tomorrow'], ['hahaha', 'made', 'laugh'], ['thank', 'tri'], ['like', 'tweeti', 'better', 'use', 'time'], ['happi', 'mothersday', 'way', 'look', 'bright', 'side', 'chill', 'day', 'today'], ['happi', 'mother', 'day', 'mommi'], ['still', 'total', 'excit', 'oldest', 'friend', 'twitter', 'luff', 'spencer', 'even', 'though', 'rabi'], ['great', 'song', 'even', 'not', 'understand', 'lol'], ['clear', 'need', 'crack', 'whip'], ['sure', 'tri', 'n', 'keep', 'enjoy', 'studi', 'see', 'ya'], ['back', 'hospit', 'doc', 'say', 'live'], ['happi', 'mother', 'day'], ['total', 'rock', 'onn'], ['email', 'best', 'friend', 'deanna', 'yahoo', 'account', 'email', 'fun', 'lt'], ['bought', 'bouquet', 'flower', 'put', 'togeth', 'arrang', 'pretti', 'momma', 'morn'], ['christin', 'friggin', 'shopahol', 'check', 'new', 'coat', 'promis', 'someon', 'would', 'not', 'spend', 'week', 'buy'], ['quot', 'weather', 'outsid', 'weather', 'quot', 'hahah', 'made', 'feel', 'better'], ['twist', 'cld', 'follow', 'ill', 'love', 'forev'], ['well', 'follow', 'think', 'interest', 'right'], ['use', 'run', 'crazili', 'fast', 'not', 'afford', 'unfortun', 'yet'], ['proud', 'solang'], ['trust', 'good', 'thing', 'self', 'thank'], ['see', 'brother', 'graduat', 'tomorrow', 'fun'], ['thank', 'quot', 'return', 'mack', 'quot', 'jam'], ['hale', 'yeahh', 'coolest', 'part', 'hahaha', 'match', 'grieco'], ['thank', 'hope', 'classi', 'follow'], ['omg', 'not', 'blame', 'hope', 'not', 'hurt', 'bad'], ['go', 'home', 'awesom', 'time', 'peep'], ['actual', 'wiki', 'entri', 'quot', 'million', 'dollar', 'homepag', 'quot', 'made', 'shake', 'head', 'due', 'fact', 'thing', 'work'], ['yeah', 'mom', 'would', 'say', 'appreci', 'wive', 'much', 'averag', 'dad', 'new', 'found', 'respect', 'mother'], ['good', 'morn'], ['random', 'night', 'fun', 'chillin', 'home', 'happi', 'mother', 'day'], ['everi', 'mom', 'mommi', 'mother', 'happi', 'mother', 'day', 'hope', 'someth', 'special', 'fun', 'today'], ['enjoy', 'happi', 'special', 'day', 'anoth', 'day', 'make', 'best', 'one', 'life'], ['scott', 'guy', 'good', 'night', 'lt'], ['good', 'luck', 'monday', 'keep', 'rockin'], ['thank', 'follow'], ['back', 'melli', 'parti', 'fun', 'sleepi'], ['dude', 'realli', 'bachelor', 'point', 'not', 'worri'], ['watch', 'bone', 'nati', 'made', 'fan', 'mission', 'convert', 'nati', 'onto', 'mission', 'convert', 'meagan'], ['way', 'home', 'prom', 'fun'], ['eehh', 'right', 'eye', 'twitch', 'go', 'go', 'watch', 'boystown', 'happi', 'birthday'], ['fun', 'viper', 'room', 'tomorrow', 'night', 'know', 'fam', 'attend', 'support'], ['thank', 'teach', 'play', 'part', 'song'], ['yeah', 'much', 'appreci'], ['hang', 'besti'], ['happi', 'mother', 'day', 'hope', 'tom', 'got', 'someth', 'special', 'enjoy', 'day', 'xo'], ['wow', 'thot', 'would', 'lost', 'ya', 'lol', 'lol'], ['happi', 'mother', 'day'], ['kid', 'awesom', 'today', 'love', 'face', 'paint'], ['awesom', 'cheer', 'man', 'not', 'know', 'much', 'money', 'left', 'today', 'shop', 'spree', 'though'], ['goodnight'], ['thank', 'cici', 'right', 'back', 'ya'], ['happi', 'mother', 'day', 'ang'], ['forgot', 'happi', 'mom', 'day'], ['well', 'andi', 'not', 'think', 'date'], ['rest', 'ahh', 'feel', 'good'], ['ryan', 'stile', 'still', 'funniest', 'man', 'ever', 'got', 'great', 'news', 'not', 'great', 'news', 'tonight', 'happi', 'could', 'burst'], ['oop', 'got', 'taken'], ['not', 'know', 'follow', 'sme', 'peopl', 'e', 'anoy', 'bore', 'note', 'self', 'peep', 'monday', 'morn'], ['hi', 'think', 'tri', 'ph', 'vietnam', 'realli', 'quit', 'delici'], ['happi', 'mommi', 'day'], ['one', 'twitter', 'drive', 'although', 'iphon', 'keypad', 'suck', 'drive', 'type'], ['anytim', 'look', 'beauti', 'next', 'time', 'nyc', 'hope', 'link', 'enjoy', 'even'], ['yum', 'mother', 'day', 'lunch', 'food', 'busi', 'burnsid', 'delici', 'gorgeous', 'day'], ['cold', 'near', 'gone', 'yay', 'grey', 'anatomi', 'tonight', 'yay'], ['realli', 'brave', 'best', 'thing', 'rest', 'get', 'better', 'get', 'well', 'soon', 'alexi'], ['happi', 'birthday', 'hope', 'enjoy', 'us', 'sing', 'wednesday', 'lt'], ['best', 'site', 'hope', 'watch', 'big', 'bang', 'theori', 'pleas', 'hit', 'quot', 'buy', 'quot'], ['heck', 'yeah', 'jandi', 'timsamlak', 'rawesom'], ['daniel', 'dsds', 'voic', 'great'], ['music', 'sooth', 'soul'], ['listen', 'jubey', 'snore', 'phone', 'hehe', 'goodnight'], ['look', 'found', 'gt'], ['love', 'sweet', 'everi', 'night'], ['total', 'bereft', 'fault', 'everi', 'way'], ['make', 'amaz', 'mother', 'happi', 'mother', 'day', 'solo', 'love', 'ya'], ['happi', 'mother', 'day', 'amaz', 'mom', 'hope', 'wonder', 'day', 'love', 'one', 'deserv', 'great', 'job'], ['umm', 'sure', 'miss', 'ya', 'alot', 'think', 'know', 'meant'], ['begin', 'think', 'show', 'sign', 'becom', 'sped', 'haha', 'love', 'ya'], ['may', 'pleas', 'coupl', 'promo', 'code', 'ea', 'app', 'thank', 'much'], ['funni', 'thank'], ['super', 'cool', 'dream', 'last', 'night', 'ask', 'show', 'wooww', 'hope', 'come', 'true'], ['well', 'end', 'everyon', 'happi', 'time'], ['heheheheh', 'lol', 'alway', 'figur', 'would', 'send', 'way', 'got', 'dupe', 'felt', 'bad', 'not', 'send', 'stuff'], ['pleasur', 'not', 'mom', 'mother', 'day', 'spread', 'love'], ['oh', 'mother', 'christina', 'aguilera', 'happi', 'mother', 'day', 'mama', 'ilovemymommi', 'lt'], ['grate', 'daughter', 'happi', 'mother', 'day', 'okasan', 'thank', 'everyth', 'alway'], ['blast', 'weekend', 'sweet', 'girl', 'vancouv', 'watch', 'awesom', 'celtic', 'lad', 'got', 'see', 'alissa', 'home'], ['great', 'studi', 'time', 'follow', 'delici', 'japanes', 'meal', 'arti', 'tri', 'get', 'back', 'studi', 'mood'], ['sweet', 'saw', 'last', 'year', 'kenni', 'amp', 'sugarland', 'kenni', 'year', 'seen', 'love', 'gknight'], ['happi', 'help'], ['hay', 'naku', 'madaya', 'ka', 'talaga', 'ah', 'hehe', 'happi', 'mother', 'day', 'mom', 'nga', 'pala', 'mom', 'also'], ['post', 'let', 'know', 'think', 'realli', 'cute', 'cut', 'back'], ['tri', 'oprah', 'free', 'unfri', 'kfc', 'love', 'went', 'back', 'anoth', 'tri', 'top', 'boba', 'pope', 'dave', 'ben'], ['happi', 'mother', 'day', 'mommi'], ['thank', 'yes', 'lot'], ['nudg', 'partner', 'good', 'want', 'buy', 'someth', 'gift'], ['haha', 'thank', 'shannon', 'boat', 'got', 'first'], ['happi', 'mother', 'day', 'mother'], ['thank', 'oscc', 'chang', 'late', 'like', 'layout', 'lt'], ['thinkin', 'twitter', 'interest'], ['friend', 'awesom', 'non', 'twitter', 'one', 'right'], ['not', 'wait', 'real', 'bed', 'haha'], ['far', 'surpris', 'good', 'respons', 'dad', 'offer', 'airbrush', 'old', 'logo', 'think', 'might', 'overkil'], ['aww', 'thank'], ['tell', 'everybodi', 'said', 'happi', 'mother', 'day', 'love', 'ya', 'fan', 'love', 'miley', 'rock'], ['guy', 'absolut', 'amaz', 'tonight', 'alway', 'thank', 'alway', 'bring', 'danc', 'parti'], ['cute', 'sleepi'], ['addict', 'jona', 'brother', 'new', 'singl', 'awesom', 'not', 'heard', 'alreadi', 'go', 'check'], ['happi', 'mom', 'day', 'spain', 'last', 'sunday', 'hint', 'first', 'singl', 'radio', 'lym', 'mini'], ['thank', 'jt', 'also', 'enjoy', 'r', 'follow', 'ill', 'follow', 'back'], ['seem', 'like', 'everyon', 'us', 'watch', 'feel', 'like', 'start', 'revolut', 'feel', 'nice'], ['happi', 'mother', 'day', 'mom', 'finish', 'lunch', 'relat', 'wuv', 'mommi', 'granni', 'hahaha'], ['whole', 'day', 'plan', 'mom', 'today', 'know', 'love'], ['alright', 'cool', 'see', 'tomorrow', 'thank'], ['happi', 'mother', 'day', 'tweet', 'mother'], ['sweet', 'situat'], ['strang', 'reason', 'sound', 'like', 'love', 'aall', 'good'], ['final', 'home', 'go', 'hit', 'hay', 'n', 'sleep', 'till', 'noon', 'lol'], ['happi', 'mother', 'day', 'mom', 'special', 'shout', 'ya', 'though', 'jehovah', 'wit'], ['miss', 'bkk', 'na'], ['love', 'bodi', 'tell', 'us', 'much', 'sleep', 'need', 'alway', 'good', 'mind', 'mealtim'], ['happi', 'year', 'lt'], ['want', 'greet', 'mom', 'happi', 'mother', 'day'], ['lucki', 'jealous', 'even', 'though', 'not', 'like', 'much'], ['woow', 'not', 'charg', 'ipod', 'touch', 'day', 'today', 'still', 'aliv', 'coolio'], ['get', 'readi', 'awesom', 'servic'], ['thank', 'sister'], ['happi', 'mother', 'mom'], ['fun', 'bacontaco', 'night'], ['saturday', 'littl', 'bit', 'footbal', 'hour', 'nap', 'hour', 'soccer', 'basketbal', 'tsu', 'yogurtland', 'life', 'good'], ['good', 'happi', 'everi', 'mom'], ['happi', 'mum', 'day', 'mum', 'guy'], ['happi', 'mother', 'day'], ['yeah', 'follow', 'hun', 'goodnight'], ['thnx', 'babe', 'call', 'finish'], ['spent', 'littl', 'much', 'wombat', 'cool', 'time', 'take', 'care', 'tamara', 'good', 'yay'], ['not', 'worri', 'noon', 'got', 'one', 'next', 'question', 'start', 'minut', 'get', 'think', 'cap'], ['happi', 'mother', 'day', 'mom'], ['altern', 'name', 'quot', 'bacon', 'mari', 'quot', 'quot', 'bloodi', 'piggi', 'quot', 'give', 'boyfriend', 'credit', 'idea'], ['put', 'brat', 'bed', 'chillin', 'noodl'], ['amaz', 'seen', 'three', 'time', 'hilari', 'fantast'], ['cultur', 'tour', 'loiusa', 'famili', 'kangaroo', 'cemetari', 'love'], ['happi', 'mommi', 'day'], ['nice', 'got', 'index', 'want', 'unload', 'need'], ['happi', 'momi', 'day'], ['thank', 'busi', 'fuck', 'good', 'book'], ['sleepi', 'happi', 'mother', 'day', 'mother', 'mama', 'mommi', 'whatev', 'call', 'lol', 'mie'], ['happi', 'mother', 'day', 'mother', 'thank', 'awesom', 'mother'], ['thank', 'actual', 'first', 'got', 'twitter', 'pictur', 'would', 'not', 'upload', 'either', 'upload', 'take'], ['nice', 'chat', 'old', 'frnd', 'sinc', 'v', 'talk', 'fun'], ['fern', 'n', 'petal', 'help', 'accomplish', 'task'], ['amaz', 'night', 'drive'], ['thank', 'find', 'amus', 'rubik', 'pictur', 'tonight', 'make', 'even', 'via'], ['better', 'idea', 'need', 'coupl', 'hour', 'relax', 'bed', 'time', 'sweet', 'dream', 'everyon', 'love'], ['happi', 'mother', 'day'], ['love', 'dreambear', 'britain', 'got', 'talent'], ['idea', 'good', 'dinner', 'happi', 'munchin'], ['still', 'yay', 'go', 'eat'], ['final', 'go', 'get', 'sum', 'sleep', 'concert', 'crazi', 'god', 'bless', 'minist'], ['bed', 'happi', 'mother', 'day', 'great', 'one'], ['made', 'got', 'home', 'wango', 'tango', 'wonder', 'day'], ['know', 'would', 'success', 'start', 'would', 'great', 'come', 'year', 'good', 'luck'], ['got', 'back', 'parti', 'soo', 'much', 'fun', 'boom', 'boom', 'hahaha', 'ooh', 'told', 'mom', 'happi', 'mother', 'day'], ['sound', 'love', 'hope', 'great', 'day'], ['social', 'fun', 'swam', 'water', 'boxer'], ['man', 'know', 'thing', 'get', 'interest', 'sometim', 'damn', 'good'], ['sound', 'like', 'good', 'compromis'], ['modern', 'liber', 'misconstru', 'bibl', 'quot', 'christ', 'without', 'crucifict', 'quot', 'abstract'], ['yippe', 'happi', 'birthday'], ['playin', 'didgeridoo', 'live', 'room', 'think', 'world', 'go', 'love', 'life', 'fb'], ['feel', 'great'], ['best', 'thing', 'ever', 'done', 'carri', 'birth', 'child'], ['cool', 'van', 'helden'], ['word', 'call', 'mom', 'lot', 'happi', 'mother', 'day', 'love'], ['wish', 'happi', 'mother', 'day', 'carina'], ['not', 'fall', 'celebr', 'worship', 'though', 'write', 'think', 'best', 'rock'], ['fave'], ['dope', 'background'], ['enjoy', 'lazi', 'around', 'eat', 'rose', 'chocol', 'x'], ['heard', 'not', 'illeg', 'unless', 'caught'], ['brought', 'buffalo', 'fastest', 'transfer', 'rate', 'usb', 'benchmark', 'comp'], ['fine', 'not', 'worri', 'good', 'luck'], ['omg', 'hahaha', 'thought', 'joke', 'twitter', 'hahaha', 'awesom', 'good', 'time'], ['free', 'good', 'nite', 'mean', 'good', 'nite', 'wateva'], ['work', 'away', 'hope', 'stay', 'nice', 'afternoon', 'even', 'possibl', 'bbq', 'weather'], ['happi', 'mother', 'day', 'beauti', 'mom', 'kind', 'mom', 'think', 'littl', 'pup', 'count'], ['hey', 'evenlyn', 'happi', 'mother', 'day', 'tomora', 'great', 'day', 'gift', 'ticket', 'see', 'ya', 'ere', 'oz'], ['know', 'lvoe'], ['thank', 'great', 'night', 'dear', 'perfect', 'complet', 'weekend'], ['weird', 'tot', 'usual', 'rain', 'east', 'coast', 'first', 'east', 'coast', 'usual', 'get', 'rain'], ['happi', 'mothersday'], ['thank'], ['feel', 'good', 'kind', 'tire', 'miss', 'not', 'wait', 'grad', 'weekend'], ['haha', 'welcom', 'honest', 'go', 'crazi', 'great', 'night', 'well'], ['bodi', 'power', 'expo', 'thank', 'mike', 'perform', 'network', 'free', 'tix'], ['lmao', 'joey', 'mine', 'not', 'wait', 'meet', 'juli'], ['oh', 'made', 'even', 'forgot', 'merlin', 'tonight', 'toss', 'rove', 'spielburg', 'spielburg', 'choic'], ['love', 'babi'], ['yay', 'happi', 'mother', 'day', 'screw', 'burnt', 'breakfast', 'bed', 'take', 'erniehalt', 'live', 'gt'], ['love', 'music', 'like', 'almost', 'everyth'], ['awesom', 'talk', 'find', 'true', 'watch', 'rubi', 'communiti', 'close'], ['thnx', 'sweeti', 'r', 'even', 'xo'], ['congratul', 'mind', 'run', 'well', 'listen', 'music'], ['alway', 'pretti', 'athlet', 'especi', 'love', 'anyway', 'yeah', 'run'], ['ciara', 'great', 'mention', 'snl', 'realli', 'good', 'also'], ['assum', 'not', 'taboo', 'start', 'email', 'quot', 'lol', 'quot', 'consid', 'repli', 'got', 'start', 'quot', 'rofl', 'quot', 'love', 'internet'], ['great', 'time', 'mpix', 'shootout', 'great', 'thank', 'mpix'], ['thank', 'quiet', 'late'], ['whooa', 'ang', 'ganda', 'ko', 'dito', 'ha', 'thank'], ['still', 'play', 'wii', 'fit', 'lol', 'fun', 'fun', 'fun', 'movi', 'tonight', 'ill', 'upload', 'photo', 'took', 'today', 'right', 'check', 'next', 'tweet'], ['finish', 'shoot', 'believ', 'got', 'job', 'done'], ['hope', 'everyon', 'okay', 'especi', 'american', 'affect', 'fire', 'swine', 'flu', 'okay', 'pray'], ['went', 'parti', 'last', 'night', 'dindin', 'show', 'match', 'outfit', 'great', 'mind', 'think', 'alik', 'anyway', 'happi', 'birthday', 'ate', 'lara'], ['miss', 'mother', 'day', 'happi', 'mother', 'day'], ['almost', 'dere', 'realli', 'tire', 'eye', 'r', 'realli', 'dri'], ['got', 'phone', 'lainey', 'love', 'life', 'taken', 'crap'], ['great', 'night'], ['tri', 'get', 'enjoy', 'weather', 'amp', 'train', 'littl', 'minor', 'beer', 'tast', 'activ', 'took', 'place', 'yesterday', 'etc'], ['start', 'watch', 'rock', 'borrow', 'season', 'dad', 'good'], ['n', 'end', 'anoth', 'wise', 'great', 'nite', 'excus', 'dream', 'littl', 'dream'], ['love', 'leav', 'laptop', 'bed', 'creat', 'nice', 'toasti', 'spot'], ['haha', 'jewish', 'love', 'one'], ['hi', 'good', 'luck', 'mtvaward', 'sure', 'go', 'win', 'hope', 'love', 'work', 'ha', 'speak', 'spanish', 'take', 'care'], ['chop', 'fring', 'last', 'night', 'got', 'tire', 'hang', 'eye', 'made', 'mess'], ['love', 'websit', 'wish', 'live', 'closer', 'sampl', 'cupcakey', 'treat'], ['yep', 'infact', 'popular', 'miss', 'india', 'talent', 'film', 'actress', 'lot'], ['happi', 'mother', 'day', 'boy'], ['fun', 'earli', 'night', 'vega', 'pool', 'tomorrow'], ['happi', 'mother', 'day'], ['love', 'crowd', 'car', 'ayanna'], ['ay', 'beezi', 'final', 'lol', 'time', 'hookah', 'get', 'ya'], ['past', 'alreadi', 'spoil', 'rotton'], ['oh', 'skeptic', 'think', 'best', 'thing', 'could', 'said', 'circumst'], ['good', 'morn', 'guy', 'not', 'forget', 'today', 'mother', 'day', 'mommi', 'love', 'best', 'lt'], ['blast', 'babe', 'thank', 'joe', 'lt', 'love', 'everyon', 'birthday'], ['break', 'news', 'tweet', 'hope', 'welcom', 'twitter'], ['stress', 'test', 'good', 'luck'], ['chang', 'pictur', 'soo', 'screw', 'assign', 'due', 'tomorrow', 'not', 'start', 'not', 'concentr', 'argh'], ['shite', 'night', 'tomorow', 'get', 'hang', 'littl', 'brother', 'neic', 'suffici', 'enough', 'chang', 'mood'], ['tori', 'fun', 'jb', 'movi', 'absolut', 'amaz', 'good', 'day', 'work', 'yay', 'love', 'movi'], ['thank', 'hold', 'mini', 'laser', 'light', 'thingi', 'lol'], ['final', 'got', 'see'], ['warmfuzzi', 'friend'], ['boopboopboop', 'still', 'talk', 'ashley', 'amp', 'brittani', 'talk', 'ashley', 'forev', 'convers', 'still', 'goe', 'place', 'awesom'], ['welcom', 'sweet', 'dream'], ['lol', 'total', 'made', 'laugh', 'made', 'day'], ['cool'], ['morn', 'earli', 'travel', 'today', 'game', 'reli', 'happi', 'bro', 'come', 'watch', 'x'], ['love', 'cobra', 'starship', 'thank', 'suggest'], ['pretti', 'sure', 'kitti', 'miss', 'lay', 'side', 'cute', 'though'], ['realli', 'chose', 'wrong', 'time', 'year', 'not'], ['thank', 'god', 'bless', 'go', 'eaat'], ['youtub', 'realli', 'awesom', 'qualiti', 'actual'], ['first', 'beer', 'day', 'happen', 'miss', 'want', 'get', 'one', 'mother', 'day'], ['dedic', 'mom', 'happi', 'mother', 'day'], ['thnks', 'followin'], ['thank'], ['readi', 'great', 'day', 'fun', 'night', 'could', 'not', 'ask', 'anyth', 'night'], ['omg', 'shannon', 'happi', 'birthday', 'celebr'], ['not', 'check', 'twitter', 'till', 'thank', 'everyon', 'congrat', 'realli', 'realli', 'appreci', 'fb'], ['censor', 'nobodi', 'realli', 'specul', 'thing', 'disagre', 'anyth'], ['relax', 'thank', 'hope', 'get', 'put', 'feet', 'tomorrow', 'enjoy', 'day'], ['final', 'back', 'bed', 'puppi', 'long', 'week', 'jamaica', 'love', 'lve', 'home', 'night'], ['someth', 'strang', 'air', 'late', 'set', 'everyon', 'edg', 'go', 'good', 'smudg', 'hous', 'good', 'anyway'], ['ha', 'let', 'know', 'find', 'though', 'suspect', 'lot', 'complaint', 'peac', 'night', 'friend'], ['bless', 'beyond', 'measur'], ['seem', 'cool'], ['welcom', 'char', 'glad', 'like', 'cake', 'pretti', 'simpl', 'give', 'tri'], ['watch', 'snl', 'ucsd', 'girl', 'laugh', 'joke', 'thought', 'would', 'tweet'], ['also', 'convic', 'happi', 'danc', 'told', 'ador', 'happi', 'danc', 'ever'], ['got', 'jojo', 'free', 'free', 'drink', 'mom', 'kind', 'night'], ['would', 'one', 'awesom', 'sauc'], ['love', 'music', 'video', 'belong', 'taylor'], ['happi', 'mother', 'day', 'allmoth', 'cheer'], ['wow', 'must', 'soo', 'cool'], ['post', 'good'], ['dsl', 'welcom'], ['hi', 'tweet', 'surpris', 'see', 'everyon', 'still', 'full', 'moon'], ['ok', 'oop', 'sorri'], ['ooh', 'thought', 'eggo', 'kind', 'synthet', 'egg', 'egg', 'sustitut', 'someth', 'crazi', 'american'], ['yeah', 'go', 'last', 'month', 'amaaz', 'bring', 'back'], ['tell', 'yo', 'mamma', 'axe', 'durrin', 'said', 'happi', 'mother', 'day'], ['sound', 'bit', 'alan', 'partridg', 'good', 'morn', 'way'], ['not', 'heard', 'titl', 'author', 'must', 'look', 'enjoy'], ['yeaa', 'know', 'smartier', 'plus', 'know', 'real', 'thing', 'better', 'lol'], ['hello', 'friend', 'welcom', 'twitter'], ['got', 'back', 'bore', 'eat', 'nonetheless'], ['good', 'morn', 'happi', 'mother', 'day', 'everyon'], ['haha', 'run', 'suitabl', 'moment'], ['dad', 'superman', 'pull', 'take', 'easi'], ['cours', 'would', 'send', 'not', 'think', 'would', 'surviv', 'trip'], ['end', 'even', 'best', 'note', 'love', 'forev', 'tweet'], ['haha', 'happen', 'lot', 'time', 'know', 'feel', 'happi', 'mum', 'day', 'mom', 'dell'], ['yeah', 'okay', 'ice', 'ace', 'bandag', 'sit', 'twitter', 'lol', 'thank'], ['iya', 'nyokap', 'gue', 'pernah', 'berkata', 'demikian', 'hard', 'share'], ['mama', 'alway', 'bake', 'late', 'get', 'worri', 'mixer', 'go', 'bother', 'peopl'], ['mango', 'medley', 'yummi', 'mango', 'mango', 'ice', 'cream'], ['got', 'get', 'earli', 'spend', 'time', 'mommi', 'go', 'work', 'bed', 'goodnight', 'twitter'], ['good', 'morn', 'went', 'bed', 'feel', 'alreadi', 'fast', 'go', 'gym', 'soon', 'nice', 'day'], ['god', 'love', 'quizz', 'get', 'phone', 'go', 'facebook', 'quizz'], ['get', 'marri', 'vega', 'novemb', 'elvi', 'imperson', 'happi'], ['not', 'sorri', 'race', 'chariti', 'fun', 'one', 'fun'], ['man', 'finish', 'quot', 'oper', 'anchorag', 'quot', 'sure', 'give', 'unfair', 'advantag', 'love', 'stealth', 'field', 'suit', 'gauss', 'rifl'], ['also', 'happi', 'mother', 'day'], ['mocha', 'brave'], ['pearlyn', 'place', 'gran', 'birthday', 'mother', 'day', 'dinner', 'tonight', 'mom', 'went', 'adult', 'svc', 'today', 'l', 'happi', 'mother', 'day', 'mom'], ['morn', 'smile', 'smug', 'oneself', 'anyon', 'join'], ['thank', 'go', 'next', 'man', 'figur', 'speak'], ['hahhahah', 'watch', 'greatest', 'movi', 'ever'], ['go', 'see', 'sweeney', 'todd', 'stage', 'best', 'friend', 'birthday', 'today', 'know', 'go', 'one', 'sing', 'along'], ['lol', 'leav', 'kid', 'internet', 'kid', 'stupid', 'thing'], ['shop', 'smart', 'shop', 'mart'], ['sleepi', 'time', 'room', 'final', 'clean'], ['bless', 'well', 'sweeti', 'hope', 'wonder', 'weekend'], ['happi', 'mother', 'day', 'mum', 'twitter'], ['alright', 'think', 'time', 'though', 'probabl', 'surf', 'net', 'anoth', 'hour', 'go', 'sleep', 'lol', 'goodnight'], ['moomi', 'like', 'pandora', 'buy', 'one', 'next', 'lol'], ['happi', 'mother', 'day'], ['happi', 'mother', 'day'], ['pleas', 'would', 'love', 'egg', 'give', 'birth', 'time', 'year'], ['goodnight'], ['lol', 'birmingham', 'love', 'time', 'move', 'good', 'morn'], ['happi', 'mother', 'day'], ['wish', 'would', 'see', 'not', 'eye', 'heart'], ['lol'], ['twittervers', 'thank', 'keep', 'entertain'], ['happi', 'mother', 'day'], ['morn', 'dude', 'ivi', 'decid', 'want', 'go', 'boat', 'today', 'guy', 'around', 'pm', 'would', 'nice', 'see'], ['happi', 'mother', 'day', 'mom', 'love', 'mom'], ['headin', 'nite', 'grad', 'dinner', 'c', 'boi', 'hehe'], ['not', 'believ', 'drove', 'way', 'back', 'happi', 'mother', 'day', 'mommi', 'precious', 'candi', 'granni'], ['hahahaha', 'yay', 'laker', 'would', 'pleas', 'like', 'dip'], ['happi', 'mother', 'day', 'mom', 'love', 'yew'], ['fuck'], ['resist', 'futil', 'need', 'pretti', 'knit'], ['travel', 'blog', 'run', 'not', 'wait', 'start', 'fill', 'entri'], ['happi', 'mother', 'day'], ['lol', 'like', 'log', 'ride', 'refer', 'think', 'think', 'ride', 'wet', 'get'], ['social', 'saw', 'aww'], ['goodmorn', 'hope', 'everyon', 'beauti', 'day', 'today', 'x'], ['yes', 'definit', 'paid', 'thank', 'advic'], ['cook', 'sumptuous', 'lunch', 'today'], ['go', 'help', 'lancey', 'cook'], ['take', 'back', 'insult'], ['got', 'love', 'skype', 'make', 'sure', 'get', 'new', 'updat'], ['ah', 'ok', 'thank', 'youu'], ['total', 'love', 'lip', 'favorit'], ['heh', 'seem', 'complex', 'iphon', 'jealousi', 'harm', 'let'], ['ember', 'dant', 'much', 'fun', 'smile', 'harder'], ['niqhti', 'niqht', 'niqht', 'toqeth', 'great', 'day', 'ili'], ['morn', 'peopl', 'woke'], ['great', 'night', 'tomorrow', 'mother', 'day'], ['happi', 'mother', 'day', 'take', 'mother', 'special', 'place'], ['sun', 'shine', 'bright', 'day', 'begun', 'store', 'wander', 'around', 'les', 'calanqu', 'mayb', 'vin', 'definit'], ['justin', 'timberlak', 'leonard', 'nimoy', 'dick', 'box', 'sequel', 'priceless'], ['hope', 'record', 'game', 'find', 'not', 'record', 'lucki', 'not', 'leaf', 'would', 'lost'], ['haha', 'good', 'job', 'get', 'close', 'eye', 'set', 'somewher', 'els', 'though'], ['wrestlefest', 'fun', 'tune', 'sunday', 'chat'], ['aww', 'wikid', 'need', 'book', 'myne', 'soon', 'miss', 'love', 'ned', 'brekki', 'speak', 'soon', 'dudd', 'xx'], ['oh', 'yippe', 'way', 'get', 'celebr', 'mother', 'day', 'first', 'time', 'mother'], ['yes', 'love', 'tea', 'make', 'typic', 'english'], ['absolut', 'welcom', 'love', 'happi', 'abl', 'help', 'make', 'moment', 'happen'], ['sleep', 'not', 'come', 'easi', 'sleep', 'pill', 'need', 'mayb', 'mind', 'soo', 'wild', 'late', 'proven', 'fact'], ['not', 'sure', 'mean', 'quot', 'blowin', 'joint', 'quot', 'quot', 'rb', 'ladypn', 'lol', 'lol', 'good', 'one'], ['exact', 'moment', 'decid', 'point', 'life', 'go', 'adopt', 'child'], ['aaw', 'sweet', 'girl', 'friend', 'got', 'drag', 'hubbi', 'quot', 'quot', 'unless', 'beer', 'lol'], ['came', 'bak', 'danc', 'neeww', 'cd', 'haha', 'danc'], ['thank', 'homski', 'like', 'christma'], ['ten', 'updat', 'away', 'whoo', 'hoo', 'budden'], ['long', 'day', 'dancin', 'travelin', 'celebr', 'life', 'happi', 'mother', 'day'], ['luckiest', 'girl', 'world', 'lt'], ['pray', 'love', 'lap', 'danc', 'pay', 'naiveti', 'lt', 'one', 'fav', 'song'], ['take', 'good', 'photo'], ['dang', 'babi', 'love'], ['inde', 'twitter', 'mate', 'happen', 'enjoy', 'hope', 'see', 'arou'], ['goodnight', 'world', 'inhabit'], ['got', 'home', 'pleas', 'star', 'trek'], ['okay', 'work', 'pleas', 'remind'], ['salon', 'mom', 'happi', 'mother', 'day', 'mom'], ['happi', 'mother', 'day', 'everyon', 'lucki', 'enough', 'mommi', 'extra', 'special', 'happi', 'becam', 'mommi'], ['watch', 'moment', 'straighten', 'hair', 'take', 'hour', 'hair', 'cur'], ['cute', 'pretti'], ['dashboard', 'modest', 'mous', 'first', 'modest', 'mous', 'blip', 'oyay', 'not', 'bad'], ['tell', 'mommi', 'said', 'n', 'love', 'mucho', 'mucho'], ['star', 'trek', 'movi', 'amaz', 'omg', 'everyon', 'go', 'see'], ['good', 'topic', 'ciggarett'], ['inde', 'love', 'even', 'far', 'quick', 'got', 'home', 'end', 'coffe', 'bed', 'morn'], ['happi', 'mother', 'day', 'wonder', 'women', 'great', 'relax', 'day'], ['happi', 'mother', 'day', 'mommiess'], ['haha', 'matt'], ['shuld', 'danc', 'like', 'serious', 'best', 'thing', 'haha', 'see', 'yu', 'tomoro'], ['quot', 'camel', 'hill', 'quot', 'quot', 'give', 'plankton', 'quot'], ['lol', 'love', 'kid'], ['happi', 'mother', 'day', 'tweetin', 'mama', 'nite', 'tweepl'], ['tts', 'ridicul', 'sweet'], ['first', 'time', 'felt', 'aliv', 'year', 'super', 'happi'], ['finish', 'iron', 'cloth', 'church', 'go', 'walk', 'dog', 'grab', 'jottonia', 'look', 'good'], ['omgssh', 'ang', 'cute', 'ng', 'bbi'], ['yeah', 'seen', 'review', 'great', 'review', 'surpris', 'get', 'ticket', 'tonight'], ['yes', 'quit', 'rusti', 'hope', 'get', 'back', 'quot', 'tune', 'quot', 'skill', 'tim', 'play', 'guitar', 'threaten', 'duet'], ['hi', 'nice', 'meet'], ['happi', 'mother', 'day', 'mom', 'happen', 'greatest', 'mom', 'world', 'love', 'mom', 'best', 'friend'], ['lol', 'yep', 'tell', 'rhonda', 'said', 'happi', 'mother', 'day'], ['happi', 'mother', 'day', 'happi', 'day'], ['pancak', 'lemon', 'sugar', 'thank'], ['enjoy', 'know'], ['happi', 'mother', 'day', 'mom'], ['today', 'felt', 'much', 'crazi', 'digg', 'new', 'addit', 'famili', 'pretti', 'cool'], ['patienc', 'worth'], ['damn', 'favorit', 'keep', 'stock', 'alot'], ['took', 'yesterday', 'amp', 'treat', 'outfit', 'amp', 'shoe', 'not', 'treat', 'mother', 'day', 'gift'], ['favorit', 'littl', 'cartoon', 'movi', 'world'], ['ate', 'foot', 'long', 'subway', 'like', 'hour', 'ago', 'omg', 'happi', 'full', 'not', 'ate', 'sinc', 'happi', 'lis'], ['love', 'panti'], ['happi', 'mother', 'day', 'mommi', 'love', 'amp', 'amp', 'best'], ['happi', 'mother', 'day', 'lt'], ['happi', 'mother', 'day', 'mum', 'america'], ['wow', 'justin', 'timberlak', 'snl', 'tonight', 'hilari', 'got', 'love', 'dude'], ['least', 'hugh', 'happi', 'trail'], ['happi', 'mother', 'day', 'everi', 'singl', 'mom', 'love', 'mommi'], ['thank', 'follow', 'mean', 'lot', 'love', 'hey', 'monday'], ['way', 'concert', 'freak', 'awesom'], ['quot', 'argu', 'quot', 'thought', 'healthi', 'convers'], ['saw', 'tue', 'last', 'niighht', 'lt', 'amazz', 'not', 'even', 'notic', 'forget', 'worddss'], ['one', 'favorit', 'quot', 'ever'], ['say', 'happi', 'mother', 'day'], ['saw', 'statement', 'mayb', 'receiv', 'unholi', 'aiden', 'fan', 'packag', 'yaay'], ['whoop', 'got', 'twitter', 'dang', 'line', 'communic', 'keep', 'grow'], ['yes', 'thank', 'haha', 'field', 'flower', 'not', 'exist', 'singapor', 'well', 'not', 'one', 'frolick'], ['back', 'later', 'happi', 'mother', 'day', 'mother', 'world', 'god', 'love', 'us'], ['treat', 'mom', 'like', 'queen', 'cuz'], ['true', 'donna', 'wish', 'joyful', 'sunday'], ['exact', 'first', 'time', 'saw', 'repli', 'jon', 'never', 'go', 'oh', 'fun', 'new', 'phone'], ['read', 'coupl', 'week', 'ago', 'work', 'realli', 'well', 'movi'], ['sigh', 'bed', 'tri', 'get', 'crummi', 'hrs', 'sleep', 'horrid', 'hour', 'niterzz', 'not', 'let', 'twitterbugz', 'bite'], ['happi', 'birthday'], ['yay', 'cool', 'aww', 'would', 'sweet', 'worri', 'though', 'glad', 'fun'], ['ow', 'okay', 'good', 'better'], ['relax', 'bed', 'go', 'sleep', 'nice', 'get', 'hous', 'tonight'], ['nice', 'time', 'juno'], ['enjoy', 'hanami', 'picnic', 'cherri', 'tree', 'park', 'hope', 'weather', 'stay', 'nice'], ['would', 'love'], ['fun', 'night', 'tonight', 'hous', 'look', 'purrti', 'tomorrow', 'kid', 'come', 'home'], ['good', 'morn', 'anoth', 'late', 'sleeper', 'one', 'excel', 'design', 'valeri', 'see', 'pictur'], ['thank'], ['trent', 'not', 'get', 'mad', 'keep', 'think', 'pretend', 'engag', 'reason'], ['night', 'alon', 'pro', 'tool', 'session', 'ill', 'take', 'anytim'], ['go', 'watch', 'two', 'david', 'yey'], ['lolol', 'think', 'funni', 'peopl', 'think', 'lie', 'quot', 'real', 'john', 'barrowman', 'quot'], ['photovia', 'dreamt', 'spell', 'harri', 'potter', 'yesterday', 'night', 'lol', 'love'], ['today', 'anoth', 'good', 'day', 'less', 'extrem', 'experi', 'anyon', 'fan', 'watch', 'season'], ['funni', 'n', 'almost', 'right'], ['sweet', 'nk', 'dream', 'love'], ['lovelytrinket', 'like', 'way', 'word', 'rocki', 'road'], ['haha', 'great', 'yeah', 'zachari', 'quinto', 'spock', 'realli', 'awesom', 'inde'], ['romant', 'even', 'papa', 'murphi', 'quot', 'battl', 'quot', 'histori', 'channel'], ['final', 'got', 'bike', 'want'], ['lie', 'bed', 'favorit', 'girl', 'world', 'happi', 'mommi', 'day'], ['yay', 'welcom', 'world'], ['folk', 'thought', 'hilari', 'told', 'stori', 'saw', 'shirt', 'wore', 'tonight', 'laughter', 'night'], ['oh', 'cool', 'not', 'wait', 'awesom'], ['burger', 'found', 'new', 'old', 'camera', 'play', 'though', 'excel'], ['love', 'new', 'shoe', 'thank', 'wine', 'lo'], ['not', 'worri', 'get', 'bore', 'hang', 'not', 'give'], ['hope', 'studyin', 'went', 'well'], ['final', 'home', 'fed', 'readi', 'go', 'bed', 'got', 'record'], ['day', 'late', 'happi', 'birthday', 'hahahaha'], ['happi', 'mother', 'day', 'mom', 'around', 'world', 'love', 'mine', 'anyth', 'world', 'not', 'wait', 'celebr', 'woo'], ['second', 'song', 'come', 'along', 'nicley'], ['love', 'see'], ['look', 'live', 'centr', 'glasgow', 'born', 'bellshil', 'amp', 'grew', 'bothwel', 'miss', 'tunnock', 'pie'], ['knacker', 'awak', 'sinc', 'could', 'not', 'sleep', 'start', 'work', 'coffe', 'toast', 'sound', 'awesom', 'chris', 'busi'], ['bed', 'good', 'last', 'saturday', 'ec', 'go', 'miss', 'place', 'not', 'wait', 'til', 'summer'], ['serious', 'though', 'amaz', 'night'], ['go', 'bed', 'good', 'night', 'everyon', 'love', 'say', 'good', 'morn', 'sweet', 'dream'], ['mean', 'email', 'month', 'parti', 'must', 'come', 'soon', 'realli', 'wish', 'could', 'gt', 'char', 'soon'], ['thank', 'yyoouu'], ['hope', 'not', 'take', 'quot', 'person', 'throw', 'shoulda', 'wait', 'bit'], ['forc', 'watch', 'movi', 'book', 'report', 'lazi', 'read'], ['littl', 'prob', 'twitter', 'happen', 'old', 'pep', 'resteraunt', 'mayb', 'help', 'fix'], ['aww', 'thought', 'would', 'quot', 'yummi', 'quot', 'experi', 'tri', 'next', 'time', 'kapag', 'magkakasama', 'ulet', 'tayo', 'nila', 'mapet'], ['appl', 'ad', 'asid', 'would', 'rather', 'recommend', 'real', 'peopl', 'real', 'experi', 'iphon', 'app', 'seek'], ['happi', 'mother', 'day', 'janey', 'even', 'though', 'not', 'know', 'mommi'], ['ahh', 'birthday', 'not', 'beliv', 'found', 'see', 'yous', 'tonight', 'best', 'present', 'everr', 'lt'], ['happi', 'mother', 'day'], ['realli', 'good', 'distract', 'check', 'right'], ['realli', 'brilliant'], ['phone', 'call', 'yett', 'hrmm', 'mayb', 'call', 'end', 'order', 'wait', 'bit', 'longer', 'prom', 'night', 'often', 'moment'], ['wall', 'like', 'say', 'ban', 'zac', 'efron', 'lol', 'sonni'], ['girl', 'work', 'hope', 'slammer', 'fun', 'moldovan', 'want', 'hear', 'detail'], ['happi', 'mother', 'day', 'wonder', 'mom', 'mom', 'make', 'world', 'stay', 'balanc', 'great', 'mother', 'day'], ['love'], ['monday', 'school', 'gosshh', 'wait'], ['one', 'thing', 'quot', 'shatter', 'quot', 'amaz', 'song'], ['thank', 'link', 'explain', 'lot', 'glad', 'feel', 'good', 'friend', 'come', 'tomorrow', 'fun'], ['ear', 'hurt', 'medicin', 'gum'], ['goodnight', 'good', 'bye', 'hope', 'best', 'dream'], ['love', 'xx'], ['damn', 'felicia', 'freakin', 'cute'], ['come', 'fun', 'part', 'find', 'offer', 'per', 'countri', 'live', 'outsid', 'us', 'chang', 'quit', 'tini'], ['happi', 'mommi', 'day', 'ff'], ['good', 'more', 'go', 'take', 'shower', 'fix', 'hair', 'go'], ['happi', 'mother', 'day', 'mother', 'everi'], ['sway', 'sway', 'babi', 'zommgg', 'love', 'need', 'screamo', 'though', 'boy'], ['hot', 'unknown', 'follow', 'got', 'quit', 'clue', 'follow'], ['final', 'gone', 'beach', 'yeaah'], ['bueno', 'dia', 'sweet', 'thank'], ['beauti'], ['quot', 'supris', 'quot', 'mom', 'cake', 'present', 'mother', 'day', 'dad', 'bought', 'flower', 'gt'], ['happi', 'mother', 'day', 'mother', 'good', 'enjoy', 'day'], ['like', 'jame', 'bond', 'seri', 'spi', 'movi'], ['goodnight', 'happi', 'mother', 'day'], ['love', 'make', 'happi'], ['eat', 'truffl', 'yum'], ['sword', 'make', 'everyon', 'sexi', 'oh', 'harold'], ['know', 'need', 'get', 'cd', 'somewher', 'hope', 'sell', 'finland'], ['aww', 'thank', 'lol', 'ermm', 'happen', 'studi', 'ha', 'ha'], ['adventur', 'fun', 'yr', 'old', 'mo', 'old', 'brave', 'hope', 'great', 'time'], ['happi', 'mother', 'day', 'mum', 'old', 'amp', 'new'], ['come', 'fun', 'part', 'find', 'offer', 'per', 'countri', 'live', 'outsid', 'us', 'chang', 'quit', 'tini'], ['oh', 'sure', 'get', 'everyth', 'live', 'like', 'celebr'], ['happi', 'mother', 'day', 'take', 'mum', 'dinner', 'one', 'favourit', 'restaur', 'glenelg'], ['happi', 'mother', 'day'], ['thank', 'feedback', 'surreal', 'life', 'surreal', 'oil'], ['window', 'ledg', 'decor', 'quit', 'appropri', 'love'], ['got', 'greatest', 'boyfriend', 'world', 'love', 'much'], ['good', 'thank'], ['love', 'much', 'got', 'hide', 'spot', 'go', 'go', 'check', 'dataloung'], ['last', 'week', 'hit', 'guinea', 'pig', 'pictur', 'webshot', 'not', 'even', 'promot', 'way', 'go'], ['haha', 'dude', 'p', 'wish', 'novemb', 'also', 'turn', 'repli', 'pleas'], ['ohh', 'rememb', 'gave', 'dad', 'shoutout', 'mcr', 'messag', 'show', 'last', 'year', 'sweet'], ['go', 'lmk', 'let', 'us', 'go', 'togeth'], ['not', 'make', 'cri'], ['wow', 'dude', 'said', 'better', 'bobbi', 'lewi', 'never', 'heard', 'guy', 'take', 'compliment', 'read', 'bl', 'web', 'site'], ['wish', 'everyon', 'bless', 'amp', 'beauti', 'mother', 'day'], ['quot', 'vision', 'love', 'quot', 'play', 'quot', 'vision', 'love', 'n', 'aaoouoouoouu', 'quot', 'mariah', 'part'], ['uber', 'bore', 'atm', 'blue', 'shower', 'watch', 'hous', 'vid', 'csi', 'csi', 'ny', 'bone', 'doubl', 'yay'], ['good', 'show', 'even', 'like', 'ciara', 'last', 'song', 'time', 'go', 'bed'], ['good', 'friend', 'dave', 'wait', 'hope', 'not', 'wait', 'long', 'though'], ['love', 'blog', 'musicar', 'event', 'good', 'work'], ['today', 'fun', 'lt'], ['nice', 'one'], ['great', 'time', 'famili', 'big', 'up', 'bro', 'n', 'sis', 'law', 'hang', 'love', 'n', 'peac', 'free'], ['bahahaha', 'love', 'gabriel', 'absolut', 'fuck', 'hilari'], ['mother', 'day', 'wish', 'googl', 'pretti', 'amp', 'beauti', 'flower', 'googl', 'logo'], ['happi', 'mother', 'day', 'mom', 'love'], ['selena', 'mom', 'congratul', 'nice', 'day'], ['bring', 'soo', 'much', 'joy', 'show', 'great', 'song'], ['happi', 'mother', 'day', 'everyon', 'great', 'day', 'make', 'sure', 'go', 'see', 'ya', 'momma'], ['bring', 'soo', 'much', 'joy', 'show', 'great', 'song'], ['happi', 'mother', 'day'], ['welcom'], ['ok', 'dear', 'tweep', 'goodnight', 'need', 'get', 'earli', 'say', 'happi', 'mother', 'day', 'wife', 'n', 'mom'], ['feel', 'home', 'back', 'church'], ['great', 'time', 'talkin', 'mike', 'tonight', 'three', 'hrs'], ['epic', 'weekend', 'atleast', 'year', 'night', 'cap', 'hour', 'sleep', 'day', 'goodnight'], ['happi', 'mother', 'day'], ['n', 'way', 'happi', 'mother', 'day', 'sissi'], ['wow', 'buddhist', 'hooray', 'jew'], ['ooh', 'harlow', 'sweet'], ['thursday', 'night', 'amaz', 'taylor', 'swift', 'gave', 'one', 'braclet'], ['use', 'old', 'phone', 'gosh', 'miss', 'phone'], ['get', 'tonight', 'bridesmaid', 'mom', 'bride', 'amp', 'rockin', 'recept'], ['happi', 'babi', 'momma', 'day', 'gt', 'gt', 'momma', 'lt', 'lt', 'twittervill'], ['congratss'], ['thank'], ['ok', 'lol', 'think', 'might', 'date'], ['good', 'morn', 'world', 'anoth', 'wonderful', 'day', 'start', 'breakfst', 'champion', 'kid', 'ofcours'], ['hella', 'wow', 'doubt'], ['thank'], ['super', 'excit', 'bought', 'tix', 'see', 'hey', 'monday', 'denver', 'co'], ['ha', 'fun', 'think', 'rewatch', 'part', 'season', 'prepar', 'night'], ['friend', 'request', 'tomorrow', 'blame', 'nite'], ['hey', 'girli'], ['woolseri', 'morn', 'hope', 'see', 'north', 'molton', 'clinch', 'north', 'devon', 'leagu', 'titl', 'love', 'day'], ['thanx'], ['slowli', 'lose', 'follow', 'one', 'one'], ['would', 'help', 'not', 'poorer', 'lol', 'mexican', 'live', 'automat', 'make', 'time', 'poorer'], ['huh', 'wrong', 'unix', 'environ', 'dev'], ['see', 'one', 'side', 'look', 'interest', 'deep'], ['cold', 'rock', 'choc', 'yum', 'xd', 'fun', 'day'], ['happi', 'trip'], ['must', 'like', 'song'], ['last', 'week', 'interview', 'told', 'fb', 'queen', 'glad', 'see', 'connect'], ['happi', 'mother', 'day', 'god', 'mother', 'step', 'mother'], ['testfest', 'weer', 'een', 'groot', 'succ'], ['ok', 'yeah', 'good', 'night', 'thank', 'glad', 'hope', 'enjoy', 'bbq'], ['watch', 'jas', 'love', 'brother', 'best', 'friend'], ['thank', 'thank', 'thank', 'everyth', 'weekend', 'guy', 'amaz', 'see', 'alpin', 'thank', 'chattin', 'w', 'us'], ['goin', 'good', 'takin', 'easi', 'ths', 'weekend', 'prepar', 'big', 'event', 'comin', 'girl', 'inspir', 'great', 'thing'], ['goodnit', 'sexi', 'twigga'], ['great', 'night', 'great', 'peolpl'], ['nite', 'nite', 'birthday', 'girl', 'fun', 'concert'], ['good', 'morn', 'everyon'], ['good', 'morn', 'sunni', 'like', 'oxymoron', 'happen', 'true', 'today', 'hurrah'], ['great', 'hear', 'today', 'r', 'best', 'not', 'wait', 'see', 'cruis', 'lt', 'cindi', 'sign'], ['thank', 'complet', 'calvin', 'appreci'], ['great', 'bed', 'tomorrow', 'back', 'sd'], ['somehow', 'miss'], ['best', 'show', 'life', 'guess', 'go', 'sc', 'week'], ['yay', 'finish', 'journal', 'go', 'go', 'sleep', 'church', 'tomorrow', 'yay', 'not', 'forget', 'mother', 'day'], ['good', 'morn', 'work', 'espn', 'sunday', 'night', 'basebal', 'hope', 'not', 'get', 'rain'], ['swine', 'flu', 'temperatur', 'screen', 'feel', 'like', 'crimin', 'cold'], ['happi', 'mother', 'day', 'love', 'mom'], ['yeah', 'probabl', 'stori', 'complet', 'finish', 'not', 'though', 'wide', 'awak'], ['thank', 'think', 'us', 'care'], ['ohh', 'yea', 'film', 'one', 'fave', 'longg', 'time', 'humma', 'humma'], ['thank', 'happi', 'mother', 'day'], ['happi', 'mother', 'day', 'mother'], ['surpris', 'like', 'star', 'trek', 'contrari', 'theori', 'star', 'war', 'fan', 'anti', 'trekki'], ['order', 'pizza', 'watch', 'diggnat', 'tri', 'tweetdeck', 'good'], ['home', 'tonight', 'much', 'fun', 'goodnight', 'twitterbug'], ['still', 'huge', 'achiev', 'though'], ['lol', 'split', 'second', 'peac', 'truli', 'amaz'], ['neat', 'mother', 'day', 'noth', 'flash', 'chillin', 'time', 'girl'], ['hello', 'found', 'gbw', 'glad', 'see', 'twitter', 'learn', 'german'], ['beauti'], ['aww', 'help', 'get', 'sweepi', 'sis', 'say', 'whip', 'cream', 'bed', 'save'], ['ha', 'age', 'ago', 'la', 'right', 'weather', 'much', 'better'], ['think', 'normal', 'drawn', 'peopl', 'familiar', 'similar', 'us', 'cougar', 'thing', 'quick', 'fun'], ['sleep', 'woke', 'check', 'see', 'cold', 'hot', 'love', 'mom'], ['watch', 'quot', 'hostag', 'quot', 'also', 'got', 'idea', 'anim', 'make', 'hope', 'readi', 'post', 'link', 'fifth', 'june'], ['find', 'john', 'mayer', 'tweet', 'mighti', 'entertain', 'hearti', 'thank', 'john'], ['great', 'meet', 'ya', 'show', 'sure', 'safe', 'travel', 'home'], ['aww', 'love', 'thing', 'say', 'manchest', 'x'], ['happi', 'mommi', 'day'], ['oop', 'ignor', 'last', 'post', 'meant', 'direct', 'messag'], ['crap', 'lost', 'game', 'time', 'today', 'day', 'histori', 'lostthegam', 'blame'], ['celebr', 'mother', 'day', 'best', 'lamb', 'roast', 'lunch', 'follow', 'box', 'cadburi', 'share', 'around', 'tabl', 'wonder', 'day'], ['watch', 'dor', 'utv', 'movi', 'great', 'perform'], ['haha', 'well', 'kind', 'mommi', 'lil', 'hehe', 'thank'], ['ooh', 'clever', 'bow', 'econom', 'wisdom', 'sensei'], ['lol', 'much', 'appreci', 'excit'], ['sex', 'beach', 'cosmo', 'kamikaz', 'captain', 'america', 'ahh', 'fun', 'night', 'still', 'not'], ['ah', 'get', 'still', 'fair', 'bit', 'go', 'come', 'togeth', 'fair', 'well', 'aw'], ['go', 'bed', 'great', 'night', 'friend', 'glad', 'know', 'feel', 'class', 'someon', 'els'], ['thank', 'keep', 'good', 'lad'], ['happi', 'mother', 'day', 'babi', 'mommass', 'rofl'], ['one', 'hott', 'coupl', 'eventho', 'yrs', 'ago', 'still', 'r'], ['aww', 'bradi', 'love', 'perth', 'love', 'ad', 'top', 'page', 'lol', 'xx'], ['want', 'point', 'youtub', 'subscrib', 'tom', 'felton', 'thought', 'might', 'make', 'happi'], ['watch', 'freo', 'sunday', 'arvo', 'good', 'hobbi'], ['like', 'fake', 'tan', 'orang', 'colour'], ['odd', 'lap', 'mayb', 'cat'], ['brows', 'digit', 'art', 'tutori', 'like', 'found', 'hen', 'site', 'refresh', 'knowledg', 'skill'], ['movi', 'worst', 'fate', 'use', 'quot', 'straight', 'dvd', 'quot', 'quot', 'straight', 'divx', 'quot', 'quot', 'straight', 'internet', 'quot'], ['updat', 'live', 'benihana', 'tokyo', 'waikiki', 'happi', 'birthday', 'mark'], ['relax'], ['oh', 'annoy', 'problem', 'thigh', 'hip', 'hope', 'catch', 'soon'], ['chillin', 'follow', 'cool', 'peopl'], ['sup', 'guy', 'download', 'tweetdeck', 'gettin', 'move', 'right', 'tweet', 'nice', 'cloth', 'sit', 'summat', 'x'], ['good', 'time'], ['happi', 'sunday'], ['cousin', 'confirm', 'confirm', 'parti'], ['miss', 'still', 'coast', 'shit'], ['awsom', 'thank', 'not', 'wait', 'xx'], ['get', 'anxious', 'new', 'album'], ['fuck', 'proud'], ['decod', 'paramor', 'great', 'song', 'love'], ['courtney', 'seem', 'like', 'cool', 'chick', 'amp', 'pretti'], ['ps', 'got', 'ben', 'button', 'today', 'complet', 'best', 'pictur', 'great', 'year'], ['aww', 'realli', 'cute'], ['alkalin', 'trio', 'sweet', 'save', 'day', 'suck', 'great', 'time', 'anyway', 'awesom', 'see', 'everybodi', 'hangin'], ['perfect', 'time'], ['glad', 'could', 'make'], ['quot', 'shini', 'quot', 'dmore', 'quot', 'best', 'anim', 'movi', 'ever', 'come'], ['hes', 'definit', 'fav', 'host', 'ever', 'not', 'wait', 'watch', 'rest', 'tomorrow'], ['wow', 'crazi', 'night', 'ever', 'chang', 'emot', 'like', 'though'], ['nice', 'pleb', 'came'], ['yes', 'cold', 'coffe', 'yesterday', 'sugar', 'cream', 'way', 'like'], ['brand', 'iron', 'drea', 'white', 'boubous', 'cowgirl', 'get', 'haha', 'crunk', 'next', 'coupl', 'hour', 'haha', 'fun', 'time'], ['happi', 'birthday'], ['love', 'jordi', 'version', 'well', 'joe', 'donni', 'differ'], ['kind', 'feel', 'regga', 'mood', 'hope', 'enjoy', 'smooth', 'love', 'weekend'], ['not', 'open', 'eye', 'proper', 'mayb', 'sleep', 'lil', 'longer', 'fix'], ['haha', 'chanc', 'tweet', 'rubbish', 'back'], ['well', 'not', 'wait', 'parti', 'mother', 'day', 'like', 'hour'], ['love', 'new', 'blackberri'], ['last', 'night', 'went', 'realli', 'well', 'got', 'crack', 'shot'], ['lol', 'know', 'ya', 'mean', 'watch', 'everyon', 'els', 'act', 'fool', 'much', 'better', 'not', 'rememb', 'act', 'fool'], ['wow', 'awesom', 'andr', 'great', 'know', 'not', 'wait', 'dad', 'not', 'bad', 'either'], ['hope', 'meet'], ['excit', 'trouser', 'way', 'topshop', 'coupl', 'day'], ['doin', 'tweet', 'phone', 'clue', 'repli', 'anyon', 'thank', 'fiercemichi', 'soon', 'check'], ['okay', 'quot', 'thought', 'quot', 'get', 'sick', 'nope', 'hahaha', 'phew', 'sri', 'mike', 'lol', 'hope', 'get', 'better', 'soon'], ['mother', 'world', 'happi', 'mother', 'day'], ['stinkin', 'ador', 'want', 'come', 'check', 'studio'], ['mama', 'best', 'thing', 'ever', 'happen', 'thank', 'everyth', 'amp', 'sorri', 'hurt', 'love', 'lt'], ['love', 'lil', 'jam', 'pit', 'edgefesst'], ['realli', 'son', 'bitch', 'screw', 'ill', 'talk', 'msn', 'later', 'k', 'xox'], ['last', 'time', 'look', 'gave', 'us', 'demo', 'cool'], ['good', 'know', 'thank'], ['good', 'morn', 'camper', 'happi', 'mother', 'day'], ['lol', 'whisper', 'not', 'get', 'troubl', 'almost', 'feel', 'great', 'home', 'feel', 'like', 'kid'], ['woot'], ['inspit', 'spam', 'not', 'stop', 'lose', 'twittergadget', 'love', 'twit', 'gmail'], ['wish', 'mom', 'happi', 'mother', 'day'], ['sound', 'like', 'excit'], ['sweet', 'make', 'sure', 'put', 'bag'], ['ooh', 'haha', 'thank', 'post'], ['dia', 'de', 'madr', 'happi', 'mother', 'day'], ['man', 'love', 'sweetheart', 'wife', 'best', 'mother', 'longest', 'happi', 'mother', 'day'], ['morn', 'well', 'excit', 'danc', 'park', 'todayi', 'good', 'woo', 'venu', 'xx'], ['not', 'worri', 'soon'], ['beach', 'pretti'], ['got', 'love', 'summer'], ['good', 'deal', 'good', 'thank', 'one', 'love', 'mom'], ['beauti', 'morn', 'nice'], ['watch', 'everyth', 'illumin', 'dreaam', 'lt'], ['gorgeous', 'day', 'hash', 'around', 'waterley', 'bottom', 'wonder', 'name', 'villag', 'quiz', 'mistress', 'porto', 'even'], ['yer', 'hope', 'competit', 'not', 'end', 'post', 'video', 'lol', 'realli', 'good', 'singer', 'enter'], ['shame', 'not', 'still', 'compaq', 'portabl', 'realli', 'anyth', 'portabl', 'lmao', 'last', 'tweet', 'toodl', 'pip'], ['happi', 'muthath', 'day', 'mom', 'salut'], ['decor', 'mom', 'room', 'asleep', 'mother', 'day', 'wake', 'banner', 'balloon', 'woo'], ['mother', 'not', 'anyth', 'movi'], ['happi', 'mother', 'day', 'everyon'], ['wish', 'mommi', 'happi', 'day'], ['hey', 'man', 'congratul', 'graduat', 'man', 'r', 'world', 'wide', 'popular', 'philippin'], ['meet', 'zombi', 'expert', 'believ'], ['happi', 'mother', 'daay'], ['water', 'tomato', 'plant', 'pepper', 'plant', 'lettuc', 'feel', 'home', 'freddi', 'day'], ['scene', 'slut', 'alway', 'shit'], ['lol', 'sweet', 'still', 'yet', 'watch', 'movi', 'hope', 'love', 'weekend', 'happi', 'mother', 'day', 'aus', 'haha'], ['happi', 'mother', 'day', 'everyon'], ['exact', 'follow'], ['thank', 'accept', 'request', 'must', 'take', 'care', 'littl', 'girl', 'mayb', 'write', 'back', 'later'], ['thank', 'feel', 'good', 'new', 'forest', 'later'], ['anoth', 'loser', 'crap', 'lost', 'game', 'time', 'today', 'day', 'histori', 'lost'], ['full', 'thank', 'food', 'jean', 'brought', 'half', 'watermelon', 'eat', 'freeway', 'crash', 'die'], ['work', 'splendid'], ['think', 'aaron', 'pretti', 'darn', 'awesom'], ['today', 'salut', 'mother', 'honour', 'time', 'beer'], ['hey', 'girl', 'yeah', 'bunch', 'not', 'start', 'download', 'total', 'owe'], ['problem', 'seem', 'fix', 'thank'], ['happi', 'mother', 'day', 'feliz', 'dia', 'dela', 'madr', 'mine', 'alreadi', 'heaven', 'miss'], ['thank', 'appreci', 'know', 'unsubscrib', 'list', 'grow', 'tomorrow', 'lol'], ['crazi', 'fun', 'make', 'man', 'nice', 'sri', 'lanka', 'spiritu', 'place', 'yes'], ['best', 'snl', 'episod', 'seen', 'hot', 'minut', 'justin', 'wonder', 'ciara', 'end', 'tweet', 'tweet'], ['love', 'fatti', 'take', 'away', 'night', 'yummi', 'come', 'home', 'facespac', 'roomi'], ['way', 'home', 'aloha', 'good', 'night', 'everyon'], ['best', 'mother', 'day', 'breakfast', 'shop', 'lunch', 'drink', 'chocol', 'galor'], ['happi', 'mother', 'day', 'love'], ['happi', 'mother', 'day'], ['jass', 'warn', 'go', 'nxt', 'fun'], ['miss', 'like', 'cotton', 'candi', 'lt'], ['happi', 'mother', 'day', 'lt'], ['hi', 'ok', 'still', 'not', 'feel', 'great'], ['happi', 'mother', 'day'], ['love', 'lol', 'ever', 'need', 'slow', 'good', 'audiobook', 'oliv', 'twist', 'one', 'listen', 'late'], ['aww', 'kind', 'dog', 'chihuahua', 'name', 'zoey'], ['yeah', 'kind', 'glad', 'stay', 'home'], ['quot', 'arrest', 'quot', 'anyth', 'end', 'done'], ['realli', 'cool', 'put', 'topic', 'twitter', 'tweeter', 'twitter', 'twit', 'got', 'love'], ['happi', 'mom', 'day', 'everyon', 'us'], ['frank', 'black', 'wifey', 'show', 'aamaz', 'sd', 'trip', 'made'], ['final', 'home', 'citi', 'time', 'head', 'sleep', 'goodnight', 'amp', 'happi', 'mommi', 'day', 'mother'], ['miss', 'cat', 'not', 'sunday', 'morn', 'mine'], ['ok', 'tweep', 'sorri', 'mani', 'twitpic', 'delet', 'pic', 'soon', 'copi'], ['nine', 'clock', 'sunday', 'morn', 'outsid', 'sat', 'around', 'tabl', 'enjoy', 'earli', 'ray', 'sun', 'read', 'twitter', 'articl', 'sunday', 'time'], ['lohang', 'listen', 'music', 'realli', 'happi', 'librefm', 'audaci', 'combin', 'profil'], ['great', 'wed', 'band', 'awesom', 'play', 'ton', 'great', 'song', 'food'], ['thank', 'stephen', 'appreci'], ['hope', 'feel', 'better'], ['dinner', 'jiuliani', 'famili', 'yum'], ['hi', 'holli', 'volunt', 'tri', 'first', 'hope', 'fab', 'weekend', 'xoxox'], ['lol', 'cheer', 'yeah', 'went', 'well', 'thank'], ['love', 'husband', 'made', 'breakfast', 'bed', 'morn', 'say', 'chivalri', 'dead'], ['worth', 'spose'], ['honest', 'hope', 'theatr', 'get', 'hit', 'meteor', 'get'], ['oowwe', 'china', 'club', 'wuz', 'poppin', 'lipstic', 'n', 'pump', 'full', 'effect'], ['tonight', 'fun'], ['yeah', 'lie', 'bed', 'thing', 'bugger', 'block', 'creativ', 'wors', 'pin', 'pet', 'cat', 'appar'], ['mayb', 'funni', 'like', 'jester'], ['sweet', 'swiss', 'tobleron', 'best', 'come', 'soon', 'meet', 'fabul', 'rita', 'chichest'], ['thank', 'amigo'], ['happi', 'mother', 'day', 'mom', 'god', 'bless', 'yhaw'], ['happi', 'mother', 'day'], ['happi', 'mother', 'day', 'not', 'got', 'mom', 'present', 'yet', 'print', 'amazon', 'gift', 'card'], ['damn', 'appl', 'store', 'updat', 'come', 'wonder'], ['mark', 'twain', 'quot', 'spot', 'cat', 'bugger', 'come', 'crime', 'handi', 'time'], ['yes', 'go', 'see', 'star', 'trek', 'soo', 'much', 'fun'], ['carl', 'jr', 'sound', 'hella', 'good', 'bring'], ['sleep', 'well'], ['wonder', 'spend', 'mother', 'day', 'mum'], ['thank', 'found', 'alreadi'], ['watch', 'nemecek', 'go', 'comput', 'fun', 'lol', 'keed', 'norm', 'fun'], ['cupcak', 'call', 'anyth', 'quot', 'bitch', 'quot', 'even', 'certain', 'circumst'], ['know', 'love', 'mom', 'stay', 'late', 'wrap', 'gift', 'look', 'glorious', 'amp', 'card', 'happi', 'mother', 'day'], ['hahaha', 'guess', 'reinforc', 'skate', 'haha', 'rememb', 'r', 'friend', 'gluten', 'intol'], ['went', 'hawksmoor', 'last', 'night', 'probabl', 'best', 'steak', 'ever'], ['awesom', 'day', 'zoo', 'gettin', 'readi', 'church', 'yay'], ['mum', 'made', 'cri', 'coz', 'said', 'someth', 'sweet', 'love', 'much', 'mum', 'best'], ['chauffeur', 'quot', 'kind', 'wonder', 'quot', 'idea', 'perfect', 'woman'], ['hi', 'ok', 'hope', 'head', 'come', 'cloud', 'gt', 'love', 'meadowbank', 'shop', 'center'], ['cool', 'mother', 'awesom', 'hair', 'style', 'wish', 'happi', 'mother', 'day'], ['hooray'], ['like', 'quot', 'dude', 'care', 'quot', 'made', 'smile', 'yea', 'teach', 'not', 'drive', 'e', 'lol'], ['yay', 'thanku', 'hug'], ['total', 'addict', 'xbox', 'carcassonn', 'also', 'realli', 'love', 'tomb', 'raider', 'legend', 'still', 'bad', 'need', 'bolt'], ['ofcours', 'start', 'fightin', 'aight', 'parti', 'but', 'cool', 'theyu', 'held', 'chillin', 'home', 'girl', 'happi', 'mother', 'day'], ['get', 'new', 'laptop', 'day', 'excit', 'dell', 'inspiron', 'hdd', 'inch', 'screen'], ['readi', 'wait', 'donni', 'love'], ['fun', 'night'], ['sweetest', 'children', 'obvious', 'great', 'mom', 'love', 'read', 'blog', 'msgs', 'kudo'], ['lisa', 'yes', 'know', 'talk', 'yes', 'ass', 'not', 'let', 'get', 'great', 'thing', 'go', 'chris'], ['much', 'longer', 'nkotb', 'block', 'parti', 'love', 'need', 'go', 'bed', 'wonder', 'time'], ['say', 'happi', 'mother', 'day', 'mom'], ['fantast', 'weekend', 'hairdress', 'stylish', 'luncheon', 'amp', 'fabul', 'girli', 'night', 'wine', 'chees', 'amp', 'danc', 'till', 'morn'], ['awesom', 'think', 'would', 'soo', 'write', 'back', 'lil', 'someth', 'lt', 'cross', 'finger'], ['hi', 'selena', 'made', 'team', 'support', 'greec', 'cyprus'], ['thank', 'ad'], ['made', 'new', 'youtub', 'background', 'photoshop', 'thank'], ['happi', 'mother', 'day', 'mom'], ['thank', 'nice', 'quot', 'go', 'alright', 'quot', 'mail', 'yes', 'cours', 'leav', 'comment', 'blog', 'cheer', 'nap'], ['happi', 'mum', 'day', 'nelli', 'shout'], ['good', 'hear'], ['love', 'guy', 'stand', 'behind'], ['caught', 'traffic', 'around', 'howlin', 'wolf', 'wonder', 'wth', 'go', 'nice'], ['haha', 'love', 'sissi', 'ring', 'power', 'lol'], ['think', 'follow', 'follow', 'stalk', 'pleas'], ['walaikum', 'assalam', 'alhamdulillah', 'chicago', 'may', 'would', 'nice', 'meat', 'dua'], ['sure', 'would', 'like', 'cream', 'right'], ['rat', 'run', 'steve', 'irwin', 'way', 'avoid', 'long', 'delay', 'bruce', 'highway'], ['yay', 'good', 'com', 'final', 'needa', 'step', 'next', 'semest', 'forsur', 'though', 'distract'], ['listen', 'music', 'super', 'junior', 'korea', 'like', 'way', 'sing', 'danc', 'hope', 'someday', 'meet'], ['problemo', 'famili', 'guy'], ['fri', 'plus', 'greentea', 'mm'], ['ty', 'friend', 'yes', 'right', 'daughter', 'daughter', 'forev'], ['made', 'breakfast', 'mother', 'day'], ['happi', 'mother', 'day', 'mum'], ['hey', 'thank', 'x', 'welcom', 'must', 'say', 'love', 'travel', 'moment', 'x'], ['not', 'late', 'not', 'late', 'not', 'late'], ['happi', 'mother', 'day'], ['ironclad', 'determin'], ['happi', 'mother', 'day'], ['love', 'mommi', 'happi', 'mother', 'day'], ['beer', 'pong', 'dubstep', 'good', 'nite'], ['thank', 'lyxx'], ['realli', 'sweetest', 'person', 'ever', 'thank', 'make', 'everyon', 'dream', 'come', 'true', 'dream', 'back', 'x'], ['love', 'new', 'tv'], ['sanctuarysunday', 'mission', 'make', 'sanctuari', 'trend', 'topic', 'day', 'lot', 'peopl', 'board'], ['tri', 'blend', 'know', 'suck', 'harm', 'tri'], ['happi', 'mother', 'day', 'mark'], ['thank'], ['home', 'whoott', 'happi', 'mother', 'day', 'madr'], ['crap', 'go', 'miss', 'grand', 'go', 'tri', 'sneak', 'back', 'room'], ['mother', 'day', 'spit', 'awesom', 'listen', 'paranoid', 'jona', 'brother'], ['not', 'make', 'cousin', 'yacht', 'convent', 'hope', 'not', 'get', 'upset', 'hope'], ['think', 'play', 'michael', 'bubl', 'heaven', 'great'], ['also', 'like', 'ke', 'paar', 'shaayad'], ['make', 'sens', 'would', 'total', 'show', 'girlfriend', 'ask', 'wear', 'high', 'school', 'prom', 'dress'], ['kelli', 'major', 'problem', 'okay', 'alex', 'kelli', 'hahahahahahahaa', 'face'], ['weekend', 'go', 'great'], ['yaay', 'birthday'], ['best', 'cup', 'final', 'today', 'fun'], ['hi', 'lisa', 'beauti', 'pup', 'happi', 'mother', 'day', 'raven', 'rio', 'amp', 'thor', 'wonderfur', 'mama', 'kittykiss'], ['chocol', 'chees', 'cake', 'chweet', 'mummi', 'muaxx'], ['rubi', 'skye', 'last', 'night', 'well', 'superb', 'set', 'steve', 'last', 'hour', 'load', 'thrillseek', 'materi', 'old', 'new'], ['vote', 'hope', 'win'], ['oh', 'night', 'love', 'ace'], ['hey', 'fan', 'new', 'zealand', 'love', 'show', 'even', 'though', 'soo', 'behind', 'episod', 'haha', 'keep', 'good', 'work'], ['feel', 'owe', 'listen', 'new', 'album', 'everyth', 'releas', 'sinc', 'nice', 'twitter'], ['good', 'night', 'everyon', 'time', 'go', 'mimmiz'], ['wonder', 'white', 'supremist', 'say', 'abhor', 'racist'], ['back', 'cycl', 'mile', 'virtual', 'traffic', 'free', 'road', 'sun', 'almost', 'shine', 'new', 'pb', 'great', 'start', 'day'], ['sanctuarysunday', 'thank', 'join', 'sanctuarysunday', 'follow', 'sanctuari', 'peopl', 'keep', 'date', 'tweet'], ['wish', 'happi', 'mother', 'day', 'mom'], ['ok', 'go', 'sleep', 'real', 'good', 'night', 'twitter', 'land'], ['thank', 'hope', 'allergi', 'not', 'nasti', 'flu'], ['hi', 'better', 'drink', 'hot', 'tea', 'honey', 'thank', 'take', 'care', 'plis'], ['case', 'miss', 'fb', 'status', 'look', 'maui', 'hotel', 'recommend', 'yes', 'maui'], ['hahahaha', 'listen', 'itun', 'librari', 'bit', 'sonia', 'dada', 'atm', 'good'], ['yeh', 'not', 'even', 'imagin', 'good', 'luck'], ['weekend', 'probabl', 'best', 'still', 'anoth', 'day', 'go'], ['go', 'tita', 'gi', 'sister', 'belov', 'lola', 'go', 'treat', 'dinner', 'wohoo', 'excit', 'hungri'], ['wed', 'anniversari', 'meal', 'yest', 'first', 'proper', 'meal', 'wife', 'sinc', 'rohan', 'born', 'well', 'check', 'phone', 'time'], ['happi', 'mother', 'day', 'euch', 'allen'], ['pretti', 'janett', 'exact', 'hey', 'monday', 'band', 'arm'], ['happi', 'sunday', 'beauti', 'day', 'london', 'meet', 'chergo', 'breakfast', 'xx'], ['fun', 'wish', 'mum', 'happi', 'mother', 'day', 'us'], ['gorgeous', 'check', 'new', 'pic'], ['happi', 'mother', 'day', 'watch', 'snl', 'not', 'miss', 'hoot', 'jimmi', 'fallon'], ['bout', 'hit', 'shit', 'tomorrow', 'happi', 'mother', 'day', 'mom'], ['omg', 'buy', 'dvd', 'yeah', 'anoth', 'good', 'movi', 'also', 'thank', 'movi', 'buddi'], ['good', 'mornig', 'everon', 'great', 'morn', 'even', 'play', 'theatr', 'lord', 'fli', 'much', 'fun'], ['happi', 'mother', 'day', 'sweet', 'mum'], ['last', 'night', 'long', 'drive', 'slept', 'realli', 'well', 'time', 'dino', 'wasstraat'], ['wow', 'calm', 'even'], ['welcom', 'chica'], ['oh', 'haha', 'thank', 'someth', 'new'], ['seen', 'beauti'], ['goodnight', 'twitterworld', 'tweet', 'later', 'goodnight', 'j'], ['cool', 'look', 'forward'], ['good', 'morn', 'woke', 'mother', 'day'], ['happi', 'mother', 'day'], ['justin', 'timberlak', 'total', 'rock', 'snl', 'tonight', 'ooh', 'happi', 'mother', 'day', 'anoth', 'hallmark', 'mkting', 'tool'], ['oh', 'man', 'want', 'bay', 'soon', 'possibl', 'thank', 'great', 'day'], ['pictur', 'tell', 'surround', 'ador', 'children', 'hehe'], ['sit', 'mel', 'hous', 'finish', 'eat', 'mcdick', 'laugh', 'dumb', 'stuff', 'said', 'tonight', 'readi', 'bed', 'think'], ['rblpnbro', 'not', 'quit', 'need', 'sad', 'true', 'soon', 'howev', 'well'], ['shoould', 'sleep', 'alreadi', 'got', 'caught', 'watch', 'late', 'night', 'offici', 'bed', 'next', 'episod'], ['quot', 'joint', 'crazi', 'quot', 'thank', 'hey', 'trax', 'heard', 'rear', 'end'], ['poopi', 'head'], ['awesom', 'good', 'idea'], ['today', 'wrote', 'two', 'song', 'one', 'templ', 'probabl', 'never', 'perform', 'ever', 'one', 'mother', 'day', 'happi', 'vesak', 'everyon', 'rena', 'xoxo'], ['photo', 'hannahisdead', 'omg', 'want', 'read', 'pride', 'prejudic', 'zombi', 'fuckyeah', 'zombi'], ['love', 'electro', 'hous'], ['want', 'wish', 'mom', 'happi', 'mother', 'day'], ['alreadi', 'know', 'dish', 'torta', 'hotdog', 'amp', 'itlog', 'hurrah'], ['wow', 'morn', 'hrs', 'ding', 'dong', 'breakfastservic', 'surpris', 'marjolein', 'guido', 'dirk', 'hapi', 'father'], ['dark', 'berri', 'mocha', 'frapp', 'heaven', 'tri', 'everyon', 'let', 'pass'], ['prom', 'rate', 'irrit', 'go', 'bed', 'goodnight'], ['erm', 'yeah', 'watch', 'sway', 'collaps', 'river', 'lol', 'next', 'time', 'shall', 'drag'], ['ahh', 'fun', 'work', 'last', 'night', 'parti', 'went', 'movi', 'today', 'see', 'wolverin', 'good', 'weekend'], ['cat', 'clean', 'hope', 'xx'], ['outta', 'see', 'guy', 'later', 'tomorrow', 'happi', 'mom', 'day'], ['mc', 'happi', 'mother', 'day', 'mom', 'love', 'yah'], ['think', 'might', 'fall', 'love', 'jihoon', 'boy', 'flower'], ['final', 'someon', 'recogn', 'genius'], ['much', 'good', 'food', 'mother', 'day', 'not', 'complain', 'seafood', 'durian', 'puff', 'macaron', 'yum'], ['thank', 'gorgeous', 'flower'], ['sweet', 'haha', 'like', 'super', 'proud', 'new', 'mom', 'feel', 'like', 'got', 'perfect', 'daughter', 'great', 'mom'], ['ahh', 'mother', 'day', 'first', 'one', 'yay'], ['would', 'cool', 'peopl', 'make', 'video', 'mime', 'song', 'make', 'one', 'big', 'video', 'everyon'], ['view', 'flickr', 'account', 'mayb', 'not', 'much', 'happi', 'yay'], ['excel', 'good', 'see'], ['feed', 'babi', 'fun', 'smile', 'coo'], ['happi', 'christma', 'wait', 'happi', 'day', 'serious', 'happi', 'mother', 'day', 'lmao'], ['happi', 'mother', 'day', 'hope', 'great', 'one', 'harlow', 'mom', 'love', 'awesom', 'mommi'], ['gossip', 'girl', 'amp', 'pizza', 'way', 'thank', 'lil', 'babe'], ['lol', 'yeah', 'slice', 'cheddar', 'chees', 'sleep'], ['wish', 'happi', 'mother', 'day', 'mother', 'especi'], ['not', 'realiz', 'young', 'advanc', 'happi', 'birthday', 'stefan', 'mtfbwi', 'alway'], ['good', 'one'], ['follow', 'babi', 'said', 'n', 'da', 'chat', 'love', 'ya', 'goodnit'], ['lol', 'know', 'aim', 'pleas'], ['thank', 'would', 'share', 'sunda', 'realli', 'late', 'say', 'not', 'tell', 'peopl'], ['thank', 'tri'], ['thank', 'deserv'], ['fog', 'horn', 'doom', 'great', 'way', 'start', 'morn', 'live', 'next', 'harbour', 'realli', 'great'], ['love', 'weather', 'want', 'go'], ['happi', 'mother', 'day'], ['thank', 'madam', 'lucki', 'coz', 'wonder', 'dog', 'soo', 'cute'], ['congrat', 'ya', 'ran'], ['thank'], ['go', 'track', 'itun', 'buy', 'awesom', 'track', 'not', 'love'], ['twitter', 'world', 'relax', 'famili', 'sunday', 'methink'], ['nice', 'glass', 'look', 'good'], ['thank', 'sunni', 'outsid', 'good', 'start'], ['got', 'best', 'friend'], ['haha', 'thank', 'new', 'word', 'week', 'mofo'], ['cool', 'show', 'last', 'night', 'fit'], ['good', 'night', 'twitter', 'peopl'], ['yayi'], ['happi', 'mother', 'dayi', 'denise', 'lt'], ['aww', 'love', 'hope', 'great', 'mother', 'day', 'littl', 'mother', 'hen', 'get', 'contact', 'sharn'], ['wow', 'lucki', 'happi', 'birthday'], ['great', 'book', 'look', 'fantast', 'want'], ['happi', 'mommi', 'dad', 'mommi', 'watch', 'footbal', 'yay', 'eagl', 'winningg', 'better', 'keep', 'sigh'], ['happi', 'mother', 'day', 'lt'], ['happi', 'mother', 'day', 'everybodi'], ['outz', 'wif', 'big', 'big', 'big', 'happi', 'famili', 'mommi', 'day', 'meal', 'happi', 'mommi', 'day', 'mommi'], ['happi', 'mother', 'daay'], ['church', 'bellss', 'ringin', 'got', 'go', 'adieu', 'god', 'bless', 'german'], ['woot', 'favourti', 'well', 'second', 'favourit', 'episod', 'came', 'tow', 'ross', 'rachel', 'know'], ['happi', 'momma', 'day', 'ging', 'lucki', 'momma', 'like', 'enjoy', 'nite', 'love', 'ya'], ['go', 'come', 'show', 'minnesota', 'love', 'though', 'hun'], ['happi', 'mother', 'day', 'mom', 'hope', 'breakfast', 'nice', 'love'], ['loll', 'dad', 'leavingg', 'move', 'las', 'vega', 'myy', 'ex', 'boyfrienndd', 'final', 'done', 'talk', 'left', 'alon'], ['cutest', 'cat', 'moment', 'video', 'enjoy'], ['ok', 'hit', 'hay', 'thank'], ['thank', 'retweet', 'man', 'quiet', 'sunday', 'morn'], ['whoop', 'wrong', 'smiley', 'suppos', 'lol'], ['got', 'best', 'mother', 'day', 'present', 'tys', 'made', 'cri', 'uncontrol', 'not', 'present'], ['spend', 'wonder', 'mother', 'day', 'brad', 'mom', 'dad', 'happi', 'mother', 'day', 'mom'], ['ask', 'sing', 'yet', 'coffe', 'mornin', 'time', 'psycholog', 'past', 'question', 'amp', 'revis', 'suck'], ['go', 'good', 'old', 'tonight', 'mother', 'day', 'feed', 'love', 'ever'], ['new', 'follow', 'pretti', 'cool', 'peep', 'check'], ['obama', 'ish', 'funni'], ['good', 'morn'], ['go', 'sleep', 'good', 'night', 'everyon'], ['say', 'nicest', 'thing'], ['ohh', 'beauti', 'place', 'hol', 'go', 'steadi', 'mead'], ['guapisimo', 'chico', 'ladi', 'gaga', 'look', 'amaz', 'usual'], ['not', 'believ', 'weekend', 'alreadi', 'time', 'go', 'nice', 'day', 'fam', 'today', 'mum', 'good', 'day'], ['gasp', 'love', 'thank', 'much', 'share', 'tim'], ['new', 'follow', 'pretti', 'cool', 'tweep', 'check'], ['truli', 'enlighten'], ['listen', 'eye', 'fire', 'enjoy', 'thank'], ['love', 'thank', 'much', 'say', 'quot', 'hi', 'jenn', 'amp', 'laura', 'quot', 'yesterday', 'arcadia', 'friend', 'shannon', 'surpris', 'vid'], ['finish', 'film', 'day', 'anoth', 'fun', 'day', 'set', 'hahaha'], ['happi', 'mother', 'day', 'amma', 'made', 'cake', 'rememb', 'love'], ['happi', 'mom', 'day'], ['readi', 'work', 'except', 'arm'], ['lol', 'like', 'style', 'alic', 'tell', 'got', 'standard', 'maintain', 'lol', 'nation', 'cork', 'girl', 'go', 'wild', 'london', 'week'], ['pleas', 'hun'], ['feel', 'inspir', 'even', 'huh'], ['inde', 'plenti', 'joke', 'lie', 'bed', 'hope', 'go', 'free', 'juri', 'servic', 'tomorrow'], ['thanku', 'cook', 'simpl', 'law', 'hve', 'fun', 'make'], ['thank', 'make', 'sure', 'read', 'group', 'descript', 'better', 'understand', 'project'], ['nite', 'nite', 'twitt', 'wish', 'happi', 'sunday', 'alreadi', 'major', 'gift', 'n', 'gift', 'way', 'tyg'], ['support', 'superfli', 'way'], ['know', 'right', 'told', 'busiest', 'time', 'year'], ['hey', 'let', 'us', 'follow', 'would', 'not', 'awesom'], ['quiet', 'mother', 'day', 'even', 'happi', 'mother', 'day', 'yummi', 'mummi'], ['nah', 'follow', 'first', 'follow', 'think', 'overnight', 'pretti', 'good'], ['happi', 'mother', 'dayi', 'andd', 'rest', 'fabul', 'mommi'], ['deathstar', 'destroy', 'starship', 'enterpric', 'not', 'get', 'enough', 'video', 'starwar', 'startrek'], ['omj', 'sister', 'brought', 'coldston', 'cupcak', 'today', 'instead', 'cake', 'celebr', 'bday', 'famili', 'excit', 'take', 'pic'], ['not', 'wait', 'day', 'till', 'happi'], ['haha', 'bet', 'settl', 'not', 'bad'], ['not', 'worri', 'man', 'see', 'much', 'week', 'last', 'week'], ['haha', 'dude', 'p', 'wish', 'novemb', 'also', 'turn', 'repli', 'pleas'], ['happi', 'mother', 'day'], ['happi', 'mother', 'day', 'mom', 'love'], ['sleepi', 'time', 'happi', 'mother', 'day', 'momz'], ['movi', 'awesom'], ['happi', 'mother', 'day'], ['wonder', 'mommi', 'world'], ['got', 'pull', 'cop', 'got', 'warn'], ['sunday', 'morn', 'bird', 'chirp', 'hope', 'best', 'pray', 'best'], ['like', 'binari', 'code', 'name', 'say', 'zirconcod', 'well', 'xd', 'look', 'nice', 'better'], ['not', 'seem', 'find', 'send', 'pleas', 'oh', 'tag', 'lol'], ['happi', 'mother', 'day'], ['like', 'pic', 'lucki', 'girl'], ['aha', 'yeah', 'els', 'fail', 'push', 'yeah', 'not', 'know', 'time', 'leav', 'yet', 'though', 'xx'], ['name', 'rest', 'let', 'us', 'see', 'mysteri', 'jet', 'pretti', 'cool', 'ida', 'maria', 'shud', 'realli', 'listen', 'say', 'anyth'], ['got', 'standard', 'alic', 'otherwis', 'would', 'got', 'enjoy', 'life', 'life'], ['lol', 'guy', 'awesom'], ['hello', 'great'], ['happi', 'mother', 'day'], ['head', 'bed', 'book', 'good', 'night'], ['god', 'bless', 'hope', 'rest', 'weekend', 'joyful'], ['happi', 'hug', 'mom', 'day', 'love', 'mom'], ['great', 'idea'], ['oh', 'yes', 'ave', 'never', 'orderd', 'lil', 'funni', 'first', 'check', 'ta'], ['good', 'not', 'think'], ['thank'], ['star', 'trek', 'awesom', 'kirk', 'hot', 'spock', 'cool', 'fun', 'cool', 'sexi', 'definit', 'worth', 'see', 'saw', 'cinerama'], ['thank', 'much', 'natali', 'hope', 'well'], ['back', 'sooper', 'dooper', 'extra', 'bharia', 'extra', 'dhumchik', 'two', 'day', 'stay', 'mom', 'place', 'yay', 'fun', 'fun', 'feelin'], ['thank'], ['happi', 'mother', 'day'], ['sound', 'like', 'good', 'five', 'day'], ['probabl', 'spam', 'follow', 'account'], ['great', 'pic', 'fun', 'love', 'food', 'wine', 'beer', 'fest'], ['lt', 'henc', 'new', 'forum', 'signatur'], ['jesus', 'heal'], ['tri', 'figur', 'use', 'twitter'], ['ok', 'thank'], ['noth', 'wrong', 'think', 'hot', 'belong'], ['realli', 'ador', 'site', 'haha'], ['join', 'biggest', 'bestest', 'group', 'facebook'], ['oh', 'yea', 'feel', 'realli', 'feckin', 'tire', 'today'], ['hey', 'home', 'sleep', 'not', 'believ', 'weekend', 'finish', 'fast', 'happi', 'mother', 'day', 'good', 'morn', 'great', 'sleep'], ['gdgd', 'well', 'better', 'go', 'get', 'readi', 'work', 'haha', 'fun', 'tonight', 'x', 'x'], ['famili', 'imna', 'crash', 'woke', 'day'], ['see', 'approach', 'nice', 'round', 'number', 'expect', 'crash', 'time', 'come', 'back', 'tonight'], ['thank'], ['look', 'sister', 'facebook', 'miss', 'yani'], ['done', 'mother', 'day', 'quot', 'peopl', 'day', 'behind', 'us', 'quot', 'quot', 'took', 'mom', 'starbuck', 'enjoy'], ['sowwyy', 'girl', 'make', 'twist', 'time'], ['happi', 'mother', 'day', 'mother', 'list'], ['way', 'offend', 'yeah', 'rockstar', 'pretti', 'ok'], ['got', 'fist', 'fight', 'old', 'biker', 'dare', 'even', 'ask', 'yes', 'kick', 'ass'], ['print', 'mom', 'amazon', 'gift', 'card', 'happi', 'mother', 'day', 'talk', 'last', 'minut'], ['zomg', 'cute', 'matt', 'shit', 'good', 'movi'], ['yes', 'actual', 'jam', 'twitter', 'traffic', 'yesterday', 'happen', 'not', 'worri'], ['well', 'hello', 'twitter'], ['happi', 'mother', 'day', 'amp', 'later', 'not', 'wait', 'see', 'concert', 'lol', 'well', 'see', 'day', 'like'], ['twin', 'peak', 'high', 'yay'], ['yes', 'cute', 'predict', 'work'], ['love', 'shoe', 'perez', 'look', 'fine', 'alway', 'oh', 'ladi', 'gaga', 'say', 'outstand'], ['happi', 'mother', 'day', 'day', 'chocol'], ['talk', 'phone', 'someon', 'miss', 'lott'], ['nice', 'lunch', 'even', 'better', 'mom', 'pay'], ['good', 'morn'], ['thank', 'guy', 'awesom', 'thing', 'blog', 'tonight', 'grate'], ['sound', 'awesom'], ['get', 'readi', 'go', 'studi', 'outsid', 'fun', 'nice', 'sunni', 'day'], ['pretti', 'black', 'top', 'flower', 'pink', 'hue'], ['newcastl', 'enjoy', 'famili', 'mum', 'mother', 'day', 'time', 'year'], ['kakabalik', 'lang', 'tarlac', 'good', 'afti'], ['thank', 'fun', 'work', 'lol', 'xx'], ['bill', 'absolut', 'fantast', 'programm', 'love', 'bell', 'bit', 'toward', 'end'], ['someon', 'admit', 'crush', 'cool'], ['rather', 'outdat', 'amp', 'bigot', 'worst', 'outdat', 'patronis', 'imperialist', 'monoculturalist', 'amp', 'best'], ['got', 'back', 'run', 'realli', 'good'], ['thank', 'add', 'tri', 'sign', 'later', 'get', 'home', 'still', 'luck', 'email', 'someon'], ['not', 'good', 'twitter', 'instead', 'watch', 'xx'], ['oh', 'cali', 'plan', 'go', 'might', 'get', 'see', 'da', 'hero', 'rock', 'sock'], ['stuff', 'refus'], ['ugh', 'not', 'sleep', 'reallyy', 'gettin', 'gahif', 'piss', 'bad', 'sometim', 'atleast', 'know', 'friend'], ['thank', 'still'], ['love', 'melika', 'come', 'like', 'next', 'time', 'go'], ['end', 'go', 'stay', 'amp', 'watch', 'snl', 'one', 'funnier', 'show', 'done', 'season'], ['come', 'today', 'could', 'go', 'graveyard', 'hoorayi'], ['mm', 'hair', 'smell', 'guud', 'wonder', 'quot', 'pantien', 'quot'], ['cav', 'easier', 'rout', 'denver'], ['well', 'nice', 'great', 'day', 'tweet', 'soon'], ['glad', 'zoo', 'fun', 'great', 'mother', 'day', 'hun'], ['quot', 'complet', 'dishwash', 'safe', 'except', 'pattern', 'might', 'come', 'quot', 'blue', 'coat', 'humour', 'best', 'three', 'cheer', 'viz'], ['happi', 'mother', 'day'], ['yet', 'anoth', 'good', 'weekend', 'someon', 'sigh', 'man', 'like', 'boy'], ['fab', 'new', 'pic', 'way'], ['time', 'invit', 'ssm', 'grace', 'accept'], ['grace', 'funzen', 'magic', 'mood', 'tool', 'keep', 'cool', 'pool', 'real', 'life'], ['good', 'morn', 'everyon', 'nice', 'day', 'iloveitwhen', 'sun', 'shine', 'go', 'write', 'stuff'], ['near', 'month', 'excit'], ['unassum', 'unpretenti', 'suppos', 'endear', 'relat'], ['sure', 'left', 'audienc', 'awestruck', 'katherin', 'look', 'forward', 'read', 'wonder', 'report'], ['yay', 'twitter'], ['found', 'control', 'left', 'hand', 'peopl', 'like', 'twitterrif', 'excel'], ['haha', 'sound', 'like', 'go', 'heap', 'fun', 'xx'], ['okay', 'quot', 'crawl', 'quot', 'bed', 'umm', 'umm', 'talk', 'need', 'talk', 'someth', 'good', 'night', 'tweeter'], ['quit', 'amus', 'watch', 'pangaea', 'sing', 'quot', 'f', 'killah', 'priest', 'quot', 'guess', 'not', 'featur', 'album'], ['thanx', 'peep', 'follow'], ['sound', 'like', 'perfect', 'way', 'spend', 'sunday', 'even', 'enjoy'], ['yesterday', 'awesom', 'sunni', 'day', 'best', 'friend', 'good', 'food', 'amp', 'ton', 'fun', 'could', 'ask'], ['think', 'morn', 'not', 'worri', 'soon', 'pass'], ['welcom', 'go', 'repost', 'sever', 'time', 'get', 'messag', 'mayb', 'help', 'anoth', 'dog'], ['pineappl', 'rock', 'bud'], ['thank', 'jona'], ['check', 'green', 'day', 'demand', 'amp', 'saw', 'new', 'live', 'video', 'right', 'blow', 'mind', 'love', 'sgb', 'even', 'time', 'mom'], ['crack', 'night', 'last', 'night', 'not', 'think', 'ever', 'laugh', 'much', 'nice', 'lazi', 'day', 'today', 'woop'], ['saw', 'tonight', 'well', 'great', 'movi', 'hope', 'well', 'mate', 'cheer', 'e'], ['move', 'great', 'especi', 'lot', 'help'], ['woo', 'hoo', 'congratul'], ['printchick', 'thank', 'sharen', 'love'], ['helloo', 'gosh', 'miss', 'see', 'around', 'thought', 'last', 'night', 'amarula'], ['work', 'ina', 'good', 'mood'], ['sorri'], ['found', 'free', 'wifi', 'point', 'sunni'], ['celebr', 'mother', 'also', 'celebr', 'legaci', 'woman', 'god'], ['np', 'mate', 'great', 'meet', 'pragu'], ['church', 'went', 'mall', 'parent', 'got', 'new', 'backpack', 'fit', 'schoolbook', 'laptop'], ['order', 'mine', 'thank'], ['go', 'walk', 'around', 'hour', 'total', 'motiv', 'wahahaha'], ['welcom', 'home', 'babe'], ['star', 'trek', 'realli', 'good', 'love'], ['yay', 'get', 'extra', 'hmm', 'anyway', 'go', 'parti', 'hard', 'get'], ['film', 'usual', 'handl', 'fuji', 'oh', 'met', 'girl', 'san', 'diego', 'kwento', 'soon', 'miss', 'youu'], ['america', 'celebr', 'mother', 'day', 'differ', 'day', 'england', 'mother', 'day', 'american', 'mumzi', 'x'], ['yes', 'hate', 'boy'], ['fab', 'wed', 'yesterday', 'feet', 'still', 'sore', 'danc', 'must', 'good', 'sign', 'v', 'glad', 'wake', 'bed', 'morn'], ['enjoy', 'sound', 'idyl', 'geordiebird', 'lost', 'holiday'], ['not', 'wait', 'live', 'age', 'away', 'still', 'plan', 'go', 'wear', 'lol'], ['yeh', 'merch', 'shop', 'look', 'fab'], ['lala', 'littl', 'girl', 'love', 'new', 'song', 'answer', 'love', 'freaki', 'twitter', 'guy'], ['like', 'new', 'profil', 'pic', 'cute'], ['roast', 'yummi', 'think', 'mum', 'impress'], ['love', 'charg'], ['ad', 'new', 'icon', 'feedicon', 'databas', 'fun'], ['face', 'make', 'peopl', 'laugh', 'ugli'], ['bare', 'awak', 'eat', 'breakfast', 'marathon', 'morn', 'good', 'luck', 'racer', 'happi', 'mother', 'day'], ['hair', 'dy', 'today', 'ugh', 'bore', 'still', 'tire', 'friday', 'lol', 'swear', 'bossman'], ['march', 'quiet', 'regard', 'mother', 'day', 'sweet', 'wish'], ['not', 'use', 'heard', 'powershel', 'nice'], ['think', 'becom', 'obsess', 'kid', 'lt'], ['ok', 'saw', 'joey', 'thought', 'look', 'interest', 'like', 'thing', 'sanctuarysunday'], ['tiesto', 'vicki', 'park', 'excel'], ['best', 'italian', 'meal', 'ever', 'last', 'night', 'god', 'think', 'may', 'get', 'kitti', 'cat', 'today'], ['love', 'sissi'], ['came', 'back', 'first', 'citi', 'rooftop', 'parti', 'man', 'even', 'next', 'new', 'yorker', 'bldg', 'still', 'get', 'pretti', 'windi'], ['extrem', 'excit', 'day', 'behind'], ['watch', 'merlin', 'omg', 'cute'], ['would', 'rather', 'sit', 'bench', 'friend', 'psychiatr', 'patient', 'go', 'parti', 'quot', 'cool', 'quot', 'person'], ['ooh', 'yay', 'forev', 'sinc', 'last', 'ss', 'tv', 'bake', 'dinner', 'good', 'yummi', 'prawn', 'xx'], ['amp', 'star', 'great', 'sunday'], ['sound', 'nice', 'tri', 'recip', 'got', 'tell', 'turn'], ['shame', 'freud', 'not', 'follow', 'implic'], ['morn', 'someth', 'weekend', 'leftov', 'domino', 'noiic'], ['good', 'day', 'anoth', 'lindi', 'day', 'today', 'level', 'b', 'free', 'tester', 'olympiou', 'diamanti', 'floor', 'thessaloniki'], ['realli', 'worth', 'watch', 'cinema', 'mum', 'realli', 'enjoy'], ['entir', 'possibl'], ['bahah', 'would', 'realli', 'funni', 'would', 'realli', 'cut', 'haha'], ['oo', 'wish', 'hot'], ['good', 'thank', 'nice', 'even', 'father', 'cool', 'thank', 'link', 'way'], ['mom', 'not', 'twitter', 'go', 'post', 'anyway', 'love', 'mommi'], ['haha', 'fuck', 'hell', 'know', 'ay', 'shit', 'son', 'make', 'troubl', 'could', 'take'], ['welcom'], ['love', 'love', 'say', 'love'], ['succes', 'cancertown', 'launch', 'yesterday'], ['know', 'sleep', 'rate', 'need', 'right'], ['cute'], ['wow', 'cute', 'pic'], ['mayb', 'miss', 'chanc', 'time'], ['sure', 'would', 'consid', 'offer', 'right', 'price'], ['happi', 'mother', 'day', 'mom'], ['haha', 'like', 'default', 'pictur', 'meow'], ['glad', 'went', 'glad', 'not', 'leav', 'earli', 'glad', 'afterparti', 'beth', 'back'], ['happi', 'mother', 'day', 'mommi', 'love', 'much', 'dono', 'id', 'without'], ['true', 'clean', 'cloth', 'good', 'thing', 'enjoy', 'day', 'love', 'new', 'avatar', 'way'], ['funnili', 'enough', 'roland', 'presid', 'social', 'club'], ['happi', 'mother', 'day', 'twitter', 'mom', 'sent', 'mom', 'sleepi', 'video', 'phone', 'call'], ['aww', 'ray', 'best', 'mean', 'lot', 'say', 'not', 'wait', 'hang', 'hope', 'soon'], ['sleep', 'sound', 'good', 'right'], ['grey', 'anatomi', 'fuckn', 'awesom', 'atm'], ['yep', 'good', 'morn', 'night', 'even', 'whatev', 'xd'], ['well', 'say', 'look', 'hot', 'pic', 'got', 'work', 'us'], ['final', 'went', 'found', 'song', 'sang', 'church', 'wellington', 'onlin', 'easier', 'expect', 'yay', 'googl', 'fb'], ['wish', 'happi', 'mother', 'day'], ['good', 'morn'], ['geek'], ['not', 'go', 'dwell', 'happen', 'pass', 'shame', 'support', 'life', 'x'], ['home', 'made', 'red', 'velvet', 'cupcak', 'pretti', 'damn', 'good', 'master', 'frost', 'goodnight'], ['see', 'messag', 'mandingo', 'hope', 'music', 'like'], ['decaf', 'tea', 'late', 'never', 'id', 'fli', 'around', 'room', 'justin', 'timberlak', 'host', 'funni', 'sketch', 'samberg'], ['alison', 'great', 'around', 'miley', 'love', 'meet', 'see', 'tell', 'give', 'shoutout', 'fan'], ['naplan', 'test', 'tuesday', 'wednesday', 'amp', 'thursday', 'afraid', 'math', 'one', 'english', 'not', 'much'], ['click', 'without', 'subscript', 'need', 'vote', 'tweet', 'today', 'best', 'list'], ['not', 'slept', 'good', 'long', 'time', 'feel', 'great'], ['yeah', 'thank'], ['sew', 'thing', 'nice', 'feel', 'crafti', 'product', 'foxi'], ['feel', 'grate', 'great', 'mum', 'famili'], ['thank', 'x'], ['givein', 'ladi', 'ga', 'ga', 'arun', 'money', 'get', 'hee', 'hee', 'love'], ['print', 'mom', 'amazon', 'gift', 'card', 'happi', 'mother', 'day', 'talk', 'last', 'minut'], ['send', 'bless'], ['came', 'tantal', 'close', 'ace', 'facebook', 'communism', 'quiz', 'one', 'question', 'quot', 'hope', 'britain', 'next', 'communist', 'quot', 'correct', 'answer'], ['enjoy', 'silenc'], ['good', 'next', 'month', 'go', 'awesom'], ['good', 'morn', 'everyon', 'hope', 'al', 'love', 'sunday', 'hope', 'not', 'rain', 'tomorrow'], ['favourit', 'photo', 'took', 'last', 'night', 'not', 'wait', 'see', 'pic'], ['guy', 'rock', 'tonight', 'la', 'love', 'ya', 'guy', 'cab', 'wait', 'see', 'anoth', 'awesom', 'show', 'soon'], ['eftel', 'great', 'nice', 'time', 'famili', 'dinner', 'forget', 'key', 'car', 'hmm', 'bless', 'anwb', 'back', 'germani'], ['alway', 'forget', 'much', 'fun', 'kyle'], ['woke', 'go', 'shower', 'go', 'nan', 'mother', 'day', 'lunch', 'happi', 'mother', 'day'], ['ah', 'final', 'home', 'comfi', 'bed', 'goodnight'], ['tri', 'put', 'veggi', 'soup', 'watch', 'bride', 'war', 'bodi', 'recov', 'hope', 'spring', 'back', 'tomorrow'], ['happi', 'mother', 'day', 'mother', 'mamma', 'mia', 'abba'], ['god', 'bless', 'dear', 'friend'], ['number', 'next', 'tweet', 'must', 'someth', 'realli', 'special'], ['right', 'ugghh'], ['happi', 'momi', 'day'], ['ali', 'amp', 'aj', 'new', 'album', 'summer', 'yay'], ['send', 'love', 'mother', 'day', 'wish', 'happi', 'day', 'ahead'], ['omg', 'booth', 'hallucin', 'latest', 'epi', 'bone', 'absolut', 'brilliant', 'quot', 'gud', 'lookin', 'guy', 'keep', 'open', 'mind', 'quot', 'lol'], ['morn', 'david', 'safe', 'journey', 'enjoy', 'time', 'state', 'xx'], ['thank', 'lot', 'kind', 'got', 'back', 'nice', 'drive', 'fun', 'car', 'drive', 'nice', 'day'], ['thank', 'ooh', 'see', 'read', 'desert', 'island', 'great', 'book'], ['fine', 'thank', 'guy', 'not', 'quak'], ['happi', 'mother', 'day'], ['sign', 'sign', 'repeat', 'not', 'annoy'], ['good', 'morn', 'jess', 'want', 'say', 'thank', 'everyon', 'follow', 'us', 'tell', 'friend', 'us', 'pleas', 'xx'], ['oh', 'god', 'final', 'found', 'someon', 'onlin', 'haha'], ['must', 'get', 'old', 'bent', 'second', 'thing', 'said', 'last', 'coupl', 'day', 'not', 'realli', 'turnon'], ['weird', 'subconsci', 'wonder', 'dream', 'next'], ['enjoy', 'good', 'day', 'not', 'forget', 'twitpic', 'xx'], ['yes', 'realli'], ['omg', 'excti'], ['yeah', 'poor', 'yao', 'hope', 'fun', 'look', 'laker', 'jerseyz', 'haha', 'enjoy', 'time', 'buddi'], ['omg', 'yr', 'like', 'goddess', 'prove', 'yr', 'love', 'amp', 'love', 'lead', 'back', 'fav', 'old', 'skool', 'track', 'x'], ['globe', 'theatr', 'better', 'romeo', 'amp', 'juliet', 'suppos', 'watch'], ['got', 'saturday', 'frame', 'sign', 'foto', 'last', 'night', 'valentino', 'rossi', 'aswel', 'ee', 'night'], ['use', 'yahoo', 'pipe', 'combin', 'feed', 'doabl', 'amp', 'reliabl', 'guess'], ['fight', 'mum', 'mother', 'day'], ['know', 'extrem', 'happi', 'would', 'not', 'chang', 'world', 'not', 'want', 'anybodi', 'els'], ['happi', 'mother', 'day', 'singl', 'dad', 'play', 'mom', 'dad', 'role', 'enjoy', 'day'], ['like', 'plane', 'train', 'automobil', 'best', 'luck', 'juan', 'pelota'], ['great', 'wee', 'visitor'], ['seen', 'game', 'websit', 'awesom', 'go', 'msn'], ['great', 'movi', 'best', 'welsh', 'flatmat'], ['cheer', 'john', 'thank', 'follow', 'look', 'forward', 'twitter', 'think', 'good', 'place', 'rant', 'xx'], ['watch', 'men', 'volleybal', 'tv', 'reason', 'not', 'good', 'women', 'beach', 'volleybal', 'not', 'quit', 'place'], ['cobra', 'mexican', 'bird', 'flu', 'bar', 'hate', 'play', 'mix', 'oh', 'shit', 'freez', 'frame'], ['seen', 'game', 'websit', 'awesom', 'go', 'msn'], ['love', 'pink', 'not', 'care', 'today', 'shall', 'not', 'tweet', 'hardcor', 'work', 'jami', 'nice', 'day', 'everyone', 'xxloser'], ['thank', 'huge', 'respons', 'bless', 'amp', 'congratul', 'us', 'anna', 'inde', 'famili', 'church', 'love', 'much'], ['came', 'back', 'see', 'boat', 'rock', 'amaz', 'cool', 'movi', 'definit', 'get', 'dvd'], ['goodnight', 'twittervers'], ['thank', 'judi', 'back'], ['happi', 'mother', 'day'], ['say', 'love', 'mom'], ['happi', 'happi', 'birthday', 'babi', 'girl', 'love', 'ya', 'hope', 'get', 'everyth', 'want'], ['happi', 'happi', 'birthday', 'babi', 'girl', 'love', 'ya', 'hope', 'get', 'everyth', 'want'], ['still', 'awak', 'way', 'better', 'reason', 'fantast', 'night', 'fantast', 'peopl', 'fantast', 'food'], ['strang', 'day', 'forget'], ['morn', 'love', 'day', 'last'], ['cup', 'tea', 'cold', 'tast', 'realli', 'good'], ['yesterday', 'fun', 'concert', 'year', 'know', 'late', 'xd', 'buena', 'vista', 'social', 'club', 'live', 'free'], ['tweet', 'thought', 'rememb', 'see', 'one', 'not', 'see', 'glad', 'teatre', 'ok'], ['text', 'hope', 'know', 'favorit'], ['quot', 'thick', 'pig', 'shit', 'went', 'oxford', 'quot', 'helena', 'cantab', 'friend', 'descript', 'boyfriend', 'yesterday'], ['kind', 'tire', 'enough', 'sleep', 'quot', 'migrat', 'quot', 'got', 'sing', 'along', 'haha'], ['littl', 'taylor', 'feel', 'sorri', 'way', 'spell', 'name'], ['hi', 'beauti', 'go'], ['week', 'away', 'huh', 'want', 'sip', 'got', 'shh', 'not', 'tell', 'love'], ['aww', 'thank', 'great', 'guy', 'weekend', 'far', 'hug', 'xx'], ['laugh', 'glad', 'self', 'confid', 'wonder', 'trait', 'applaud', 'extra', 'loud', 'okay'], ['watch', 'battlestar', 'galactica', 'season', 'read', 'right'], ['also', 'tri', 'friend', 'fire', 'not', 'alreadi', 'heard', 'great', 'stuff', 'florenc', 'machin', 'great', 'great', 'music'], ['wolverin', 'awesom', 'love', 'great', 'actor'], ['good', 'point', 'mine', 'way', 'get', 'deliv', 'post', 'pic', 'wen', 'get'], ['happi', 'mother', 'day', 'mamma'], ['hous', 'dog', 'realli', 'sweet'], ['got', 'watt', 'chingo', 'bling', 'chile', 'not', 'thang', 'without', 'bgeezi', 'need', 'show'], ['lol', 'ahh', 'well', 'good', 'song'], ['mexican', 'coca', 'cola', 'bottl', 'new', 'favorit', 'thing', 'high', 'fructos', 'corn', 'syrup', 'sugar', 'awesom', 'old', 'school'], ['cool', 'lil', 'night', 'berri', 'eat', 'pizza', 'waitin'], ['hello', 'well', 'sunni', 'head', 'fuzzi', 'coffe', 'not', 'brew', 'yet', 'day'], ['predict', 'heavyweight', 'battl', 'laker', 'cleveland', 'final', 'well', 'hope', 'cross', 'finger'], ['watch', 'video', 'facebook', 'make', 'feel', 'like', 'biggest', 'creep', 'guess', 'also', 'tweet', 'woohoo'], ['lol', 'gt', 'not', 'mention', 'pleasur'], ['definit', 'separ', 'profession', 'robber', 'amp', 'amateur', 'one'], ['airsoft', 'horribl', 'hope', 'not', 'get', 'hurt'], ['munchin', 'bacon', 'butti', 'woohoo', 'fave'], ['haha', 'cute', 'beauti', 'r', 'cool'], ['eat', 'dillybar', 'dq', 'yuum'], ['talkin', 'special'], ['happi', 'mother', 'day', 'mother', 'especi', 'mine', 'enjoy', 'ya', 'day', 'mother'], ['happi', 'mother', 'day'], ['ay', 'buti', 'pa', 'kayo', 'uy', 'thank'], ['got', 'bouquet', 'flower', 'mom', 'heheh', 'sweet'], ['still', 'bit', 'warn', 'signal', 'head', 'say', 'quot', 'want', 'yesterday', 'headach', 'back', 'ok', 'get', 'coffe', 'quick', 'quot'], ['yes', 'bag', 'goodi', 'lol'], ['rofl', 'like', 'hear'], ['miss', 'quil', 'far', 'away'], ['print', 'mom', 'amazon', 'gift', 'card', 'happi', 'mother', 'day', 'talk', 'last', 'minut'], ['inde', 'thank', 'share', 'go', 'sleep', 'giggl', 'night'], ['sorri', 'hear', 'go', 'okay', 'tweet', 'away'], ['want', 'red', 'cruiser', 'not', 'like', 'one', 'lmfao'], ['happi', 'mother', 'day', 'go', 'later', 'pm', 'watch', 'well', 'renown', 'group', 'singer'], ['came', 'back', 'well', 'yesterday', 'hannah', 'movi', 'love', 'went', 'highest', 'part', 'cinema', 'danc', 'beauti', 'song'], ['got', 'finish', 'clean', 'put', 'mom', 'present', 'happi', 'mother', 'day', 'go', 'sleep'], ['miss', 'mom', 'today', 'best', 'friend', 'even', 'though', 'gone', 'sever', 'yrs', 'still', 'miss', 'dear', 'happi', 'mother', 'day'], ['good', 'morn', 'ate', 'pizza', 'breakfast'], ['happi', 'mother', 'day'], ['love', 'wake', 'think', 'weekday', 'realiz', 'weekend'], ['thank', 'xx'], ['man', 'aswel', 'love', 'want', 'gossip', 'girl', 'decid', 'summer', 'spend', 'lot'], ['rofl', 'not', 'wear', 'dark', 'grungi', 'though', 'ask', 'bradi', 'ok', 'said', 'yess'], ['good', 'morn', 'twitterworld', 'slept', 'less'], ['happi', 'mother', 'day'], ['still', 'awak', 'lol', 'finish', 'talk', 'realli', 'good', 'brawl', 'player', 'talk', 'join', 'websit', 'like', 'ssbb'], ['look', 'like', 'lot', 'fun', 'ladi', 'gaga'], ['hello', 'twit', 'world', 'best', 'buddi', 'bbq', 'until', 'jay', 'z', 'spotifi'], ['today', 'first', 'real', 'mother', 'day', 'son', 'actual', 'not', 'born', 'yet', 'last', 'year', 'not', 'wait', 'hug', 'get', 'home'], ['perfect', 'night', 'best', 'month', 'life', 'far', 'boo'], ['hey', 'not', 'wait', 'guy', 'come', 'jersey', 'woop', 'hope', 'lookin', 'coz', 'x'], ['yay', 'go', 'wyatt', 'total', 'amaz', 'happi', 'yay'], ['well', 'hover', 'button', 'lol', 'not', 'sleep', 'well', 'tiff', 'welcom'], ['best', 'night'], ['oh', 'cool', 'come', 'berlin'], ['love'], ['yay', 'let', 'us', 'welcom', 'mrs', 'mcnugget', 'twittervers'], ['read', 'maltes', 'sunday', 'newspap', 'coffe', 'aah', 'glorious', 'sunday'], ['bit', 'late', 'new', 'twitterif', 'interfac', 'iphon', 'cool', 'oh', 'richi', 'lauren', 'engag'], ['awak', 'earli', 'like', 'look', 'pictur', 'last', 'night', 'bloodi', 'awesom', 'word'], ['final', 'go', 'home', 'long', 'night', 'readi', 'crash', 'awesom', 'dream'], ['surpris', 'good', 'day', 'time', 'sleep', 'hope', 'sweet', 'dream', 'await'], ['meet', 'stranger', 'lol', 'alon', 'vega', 'amaz'], ['hate', 'english', 'day', 'everyday'], ['yeah', 'keep', 'think', 'someth', 'els', 'cari', 'grant', 'not', 'shabbi', 'either', 'bring', 'babi'], ['love', 'one', 'especi', 'shoe', 'anyway', 'gmn', 'punya', 'acc', 'lookbook', 'ya'], ['hehe', 'found', 'ya'], ['not', 'associ', 'fake', 'ass'], ['australian', 'scene', 'amaz', 'right', 'look', 'third', 'strike', 'chelsea', 'smile', 'bmth', 'day'], ['spent', 'last', 'two', 'hour', 'play', 'babe', 'hella', 'fun', 'love', 'lt'], ['excel', 'look', 'like', 'twitterif', 'competit'], ['right', 'action', 'grab', 'shower', 'grab', 'camera', 'think', 'walk', 'sunshin', 'along', 'canal', 'later', 'good', 'tweepl'], ['yes', 'hindustan', 'rock', 'dude', 'dunia', 'mein', 'asay', 'koi', 'fusion', 'nehi', 'milegi'], ['happi', 'mother', 'day', 'mommi', 'hope', 'good', 'day'], ['date', 'like', 'man', 'not', 'get', 'play', 'like', 'bitch'], ['thank', 'daughter', 'way', 'get', 'follow'], ['thank', 'appreci'], ['grandma', 'place', 'mum', 'celebr', 'mother', 'day', 'generat', 'come'], ['nice', 'one'], ['yucki', 'last', 'soccer', 'game', 'season', 'start', 'friday'], ['sound', 'delici'], ['nice', 'sunday', 'xx'], ['man', 'made', 'fat', 'ass', 'buger', 'mm', 'tast', 'fuckin', 'delici', 'love', 'food', 'eat', 'feel', 'lol'], ['season', 'wire', 'done', 'kind', 'weak', 'compar', 'first', 'season', 'expect', 'still', 'good', 'though', 'season', 'come'], ['well', 'anoth', 'twiiter', 'say', 'realli', 'let', 'us', 'say', 'could', 'fit', 'minibus'], ['hahah', 'lucki', 'wait', 'day', 'poop', 'lol', 'about', 'gold', 'coast', 'dnt', 'mind', 'ask'], ['nice', 'sunni', 'day'], ['good', 'morn'], ['awesom'], ['awesom', 'know', 'peopl', 'think', 'take', 'make', 'nashvill', 'offer', 'help', 'want'], ['nice', 'time', 'plenti', 'dream'], ['current', 'emarosa', 'new', 'album', 'shiit', 'haha'], ['episod', 'cri', 'saw', 'home', 'video', 'soo', 'cute'], ['new', 'pictur', 'bore'], ['not', 'work', 'today', 'car', 'back', 'perfect', 'go', 'random', 'shop', 'later'], ['vampir', 'knight', 'music', 'feel', 'special'], ['good', 'morn'], ['love', 'broughti', 'ferri'], ['sun', 'last'], ['bump', 'dj', 'opus', 'drunk', 'car', 'lmao', 'not', 'act', 'like', 'not', 'know'], ['good', 'morn', 'everybodi', 'happi', 'mother', 'day'], ['die', 'mg', 'cloth', 'black', 'money'], ['got', 'grubbi', 'paw', 'live', 'record', 'paramor', 'hear', 'better', 'chocol'], ['thank', 'becom', 'friend', 'twitter', 'selalu', 'ada', 'ruang', 'untuk', 'sahabat'], ['guten', 'good'], ['somebodi', 'smuggl', 'sydney', 'slave', 'etern'], ['fun', 'pleasant', 'surpris'], ['music', 'updat', 'leav', 'check', 'song', 'photograph', 'air', 'disco', 'friend', 'jack', 'stand', 'prodigi', 'enjoy'], ['woke', 'lil', 'better', 'lt'], ['still', 'mother', 'day', 'lunch', 'uncl', 'hous', 'nice', 'time'], ['love', 'famili', 'guy', 'hour', 'work', 'go'], ['bit', 'excit', 'bradi', 'lol'], ['happi', 'mother', 'day'], ['ever', 'met', 'guy', 'thatv', 'everyth', 'want', 'need', 'never', 'realli', 'went', 'daddi'], ['lmao', 'witti'], ['heard', 'slut', 'total', 'miss', 'mayb', 'next', 'time'], ['lol', 'yeah', 'mama', 'thank', 'happi', 'mama', 'day', 'laker', 'day', 'love'], ['wish', 'happi', 'mother', 'day', 'mother'], ['yes', 'super', 'laka', 'ng', 'ulan', 'buti', 'nalang', 'red', 'bandana', 'bodi', 'ko', 'lang', 'ang', 'wet', 'look', 'hahah'], ['right', 'glorious', 'day', 'sat', 'go', 'someth', 'activ', 'good', 'day'], ['ultim', 'train', 'look', 'forward', 'sunset'], ['thank', 'hon', 'project', 'bra', 'start', 'today'], ['support'], ['frist', 'post', 'find', 'new', 'car', 'parent', 'excit'], ['look', 'like', 'yet', 'anoth', 'beauti', 'day', 'london'], ['thank', 'song', 'awesom', 'sing', 'along', 'day'], ['not', 'ars', 'get', 'bed', 'hello', 'sunshin'], ['got', 'back', 'run', 'amp', 'feel', 'grreeaat'], ['beauti', 'sunshin', 'woke', 'litter', 'minut', 'later', 'start', 'rain', 'must', 'curs'], ['say', 'happi', 'mother', 'day', 'mom'], ['oh', 'good', 'thing', 'viral'], ['happi', 'mother', 'day', 'mom'], ['drunk', 'love', 'guy'], ['thank', 'littl', 'girl', 'love', 'anim', 'cute'], ['go', 'head', 'bed', 'hope', 'dream', 'consist', 'ravish', 'thing', 'zachari', 'quinto'], ['go', 'garden', 'centr', 'today', 'funn', 'current', 'drink', 'egyptian', 'spice', 'tea', 'watch', 'hollyoak'], ['morn', 'sweeti', 'cool', 'xx'], ['nako', 'umuulan', 'pa', 'naman', 'anyway', 'enjoy', 'bike', 'ride'], ['go', 'go', 'shower', 'goin', 'see', 'hannah', 'montana', 'laterz', 'woo', 'well', 'excit'], ['nkotb', 'world', 'best', 'place'], ['spend', 'great', 'time', 'famili', 'friend', 'thank', 'guy'], ['realli', 'tire', 'sunday', 'morn', 'xx'], ['forgot', 'pin', 'debit', 'card', 'thank', 'god', 'card', 'still', 'work', 'sever', 'attempt', 'bought', 'cake', 'sister', 'birthday', 'wheew'], ['woo', 'get', 'mine', 'monday', 'not', 'wait', 'x'], ['think', 'safe', 'say', 'not', 'alon', 'think'], ['sure'], ['shitload', 'fun', 'friend'], ['happi', 'mother', 'day', 'mom', 'hope', 'good', 'day'], ['oh', 'dear', 'rotten', 'life', 'lead', 'not'], ['aww', 'mom', 'appreci', 'much', 'familia', 'leav', 'tour'], ['listen', 'maroon', 'quot', 'song', 'jane', 'quot', 'one', 'favourit', 'album', 'time'], ['oh', 'dear', 'late', 'good', 'old', 'michigan', 'well', 'look', 'forward', 'chat', 'wake', 'hour', 'overlap'], ['much', 'enjoy', 'quot', 'name', 'quot', 'articl'], ['morrningg', 'slept', 'hour', 'headach'], ['great', 'photo', 'bravi', 'look', 'forward', 'upcom', 'pilot', 'itali'], ['feel', 'much', 'less', 'alon', 'love', 'fitzcarraldo', 'peopl', 'mention', 'idea', 'talk'], ['suck'], ['lost', 'hiatus', 'noo', 'back', 'school', 'tomorow', 'back'], ['need', 'ask', 'someth', 'lmao', 'love'], ['watch', 'run', 'fat', 'boy', 'soo', 'funni'], ['thank', 'love', 'way', 'happi', 'mother', 'day', 'mom'], ['went', 'john', 'grisham', 'instead', 'pleas', 'amp', 'never', 'suspect', 'thing', 'lol', 'hope', 'tomorrow', 'better', 'day'], ['love', 'read', 'littl', 'quot'], ['good', 'mood'], ['thank'], ['lol', 'peek', 'come', 'along', 'nice', 'total', 'understand', 'leav', 'set', 'quiet'], ['realis', 'much', 'love', 'sunday'], ['happi', 'mother', 'day'], ['love', 'lego', 'indiana', 'jone', 'aracheologist', 'dream'], ['kid', 'derbyshir', 'school', 'string', 'concert', 'buxton', 'opera', 'hous', 'today', 'quit', 'excit'], ['damn', 'right'], ['thank', 'busi', 'exam', 'tomorrow'], ['read', 'book', 'sunshin', 'goona', 'good', 'day'], ['congratul'], ['relax', 'work', 'mother', 'day', 'oh', 'well', 'good', 'day', 'hope', 'well'], ['buy', 'sleep', 'need'], ['fine', 'thank', 'wbu'], ['happi', 'mother', 'day'], ['hehe', 'yea', 'suppos', 'sound', 'mean', 'hahhaa'], ['awesom', 'milkshak', 'areo', 'mint', 'blend', 'like', 'lumpi', 'smoothi', 'chatter'], ['cool', 'bean', 'yeah', 'man', 'prob'], ['haha', 'dude', 'p', 'wish', 'novemb', 'also', 'turn', 'repli', 'pleas'], ['happi', 'mother', 'day'], ['sound', 'cool', 'liverpool', 'ace', 'especi', 'like', 'beatl', 'cos', 'museum', 'shop', 'dedic'], ['much', 'appreci', 'yeah', 'sure', 'challeng', 'great', 'reward', 'would', 'not', 'trade', 'anyth'], ['love', 'everryth', 'breadtalk', 'would', 'eat', 'whole', 'place', 'could'], ['good', 'morn', 'not', 'think', 'stop', 'rain', 'past', 'three', 'day', 'care'], ['oh', 'brilliant', 'idea', 'say', 'say', 'idea', 'woman'], ['saw', 'pic', 'awesom'], ['happi', 'mother', 'day', 'mom'], ['nutella', 'love', 'stalk', 'iri', 'breakfast', 'bed', 'courtesi', 'n', 'hous', 'til', 'noon'], ['aww', 'thank', 'soulmat', 'haha'], ['aww', 'bless', 'inde', 'come', 'day', 'woo'], ['happi', 'mother', 'day'], ['mccoy', 'initi', 'rant'], ['like', 'alreadi', 'new', 'follow', 'join', 'midst', 'zombi', 'mayhem'], ['work', 'paint', 'due', 'school', 'hate', 'sleep', 'damn', 'day', 'start', 'late'], ['hey', 'seen', 'music', 'live', 'funni', 'lol'], ['gatorad', 'first', 'thing', 'morn', 'yumyum', 'feel', 'shatter', 'must', 'aris', 'revis', 'tomorrow'], ['came', 'back', 'home', 'ne', 'gig', 'anoth', 'fun', 'night', 'workout'], ['listen', 'youtub', 'leonard', 'cohen', 'win', 'xfactor'], ['hi', 'get', 'tought', 'could', 'write', 'someth', 'today', 'go', 'go', 'shop', 'soo', 'fun', 'not'], ['bore', 'heheh', 'hate', 'ipt'], ['ngobrolin', 'favorit', 'band', 'moment', 'cii', 'kesian', 'ya', 'kamu', 'speakernya', 'rusak', 'hahaha', 'benerin', 'dong', 'ci'], ['love', 'hubbi', 'spray', 'tan', 'back', 'leg', 'hope', 'not', 'look', 'like', 'allsort', 'much', 'longer'], ['realli', 'alway', 'dirti', 'ha', 'ha', 'sex', 'addict'], ['oh', 'jealous', 'though', 'miss', 'fri', 'potato', 'bread'], ['good', 'morn', 'twitter'], ['best', 'sunday'], ['today', 'menu', 'not', 'worri'], ['lmfao', 'omgosh', 'first', 'heard', 'song', 'felt', 'like', 'go', 'pee', 'omgosh', 'waltzer', 'man', 'lol', 'xoxo'], ['happi', 'mother', 'day', 'beauti', 'mommi'], ['busi', 'love', 'time'], ['win', 'best', 'movi', 'ever', 'best', 'actress', 'singer', 'dancer', 'role', 'model', 'ever', 'lt', 'xoxo'], ['hey', 'samantha', 'welcom', 'happi', 'mother', 'day'], ['feel', 'better', 'today'], ['happi', 'mother', 'day', 'mom', 'love', 'alway'], ['got', 'back', 'kuantan', 'soo', 'much', 'fun'], ['great', 'song', 'cobra', 'starship', 'feat', 'leighton', 'meester'], ['woo', 'recov', 'run', 'race', 'life', 'yest', 'manag', 'min', 'not', 'bad', 'absolutley', 'trian'], ['keep', 'chill'], ['not', 'mind', 'whistler', 'actual', 'whistl', 'tune', 'whistl', 'noth', 'drive', 'crazi'], ['bought', 'awesom', 'shooeess'], ['band', 'recommend', 'steph', 'gt', 'paramor', 'els', 'great', 'band', 'consist', 'gt', 'hayley', 'william', 'josh', 'farro', 'zac', 'farro', 'jeremi', 'davi', 'best', 'band'], ['thank', 'usual', 'learn', 'happen', 'get', 'littl', 'rest', 'review', 'note', 'remind', 'would', 'better', 'get', 'rest'], ['forward', 'start', 'teach', 'new', 'student', 'hypnosi', 'plenti', 'laugh', 'sure'], ['yeah', 'like'], ['tamlyn', 'wish', 'cool', 'sock', 'draw'], ['hey', 'watch', 'not', 'post', 'mani', 'advert', 'twitter', 'feed', 'would', 'not', 'normal', 'follow', 'blog', 'interest'], ['omg', 'best', 'roast', 'ever', 'full', 'haha'], ['happi', 'mother', 'day'], ['still', 'cross', 'finger', 'fun', 'group'], ['thank', 'babe', 'guess', 'find', 'right', 'person', 'one', 'day', 'til', 'better', 'alon'], ['final', 'home', 'tomorrow', 'day', 'quot', 'amaz', 'quot'], ['yaay', 'back', 'love', 'read', 'tweet', 'p'], ['sure', 'repeat', 'soon', 'seem', 'tv', 'quit', 'lot', 'late', 'glad', 'mention', 'last', 'night', 'watch'], ['thank', 'hun', 'next', 'time', 'go'], ['took', 'advic', 'enjoy', 'small', 'alon', 'would', 'come', 'lol'], ['not', 'know', 'mayb', 'flu', 'feel', 'bitbett'], ['happi', 'mom', 'day', 'well', 'mani', 'come'], ['good', 'morn', 'one', 'ore', 'day', 'yay', 'twittertakeov'], ['happi', 'mother', 'day', 'mom'], ['happi', 'mother', 'day', 'mom'], ['ooh', 'goodluck', 'rest'], ['listen', 'song', 'myspac', 'realli', 'good'], ['well', 'take', 'not', 'cope', 'set', 'fox'], ['know', 'share', 'sun', 'shine', 'bright', 'africa'], ['drive', 'fast', 'much', 'fun', 'went', 'hahaha', 'goodnight'], ['watch', 'america', 'next', 'top', 'model', 'yah', 'haha'], ['mention', 'spend', 'time', 'two', 'bffs', 'total', 'worth'], ['aww', 'love', 'pic'], ['make', 'mix', 'minut', 'far', 'aim', 'minut', 'love', 'far', 'dj', 'sugarfre'], ['realli', 'cool', 'pc', 'not', 'mac', 'well', 'oold', 'iphon', 'though'], ['amaz', 'night', 'girl'], ['facepanda', 'cool'], ['fast', 'check', 'submit', 'comment', 'oh', 'thank'], ['happi', 'mother', 'day', 'mom'], ['yea', 'look', 'good', 'flower', 'mean'], ['saw', 'star', 'trek', 'not', 'hardcor', 'fan', 'anyth', 'realli', 'good', 'get'], ['lookin', 'forward', 'love', 'meal', 'grandpar', 'posh', 'italian'], ['start', 'peopl', 'come', 'us', 'go', 'short', 'stack', 'origin', 'still', 'ss'], ['soon', 'good', 'luck', 'brawn', 'mclaren', 'fix', 'look', 'sharp', 'p'], ['peep', 'remix', 'quot', 'wu', 'dynasti', 'quot', 'remix', 'tape', 'delay', 'give', 'idea'], ['mayb', 'memori', 'suck'], ['best', 'weekend', 'ever', 'xx'], ['hi', 'yes', 'not', 'absolut', 'terribl', 'earth', 'hear', 'good', 'tune', 'ear', 'lol'], ['loong', 'day', 'bed', 'cuddl', 'papabear', 'watch', 'south', 'park', 'yay', 'birthday', 'bbq', 'tomorrow', 'not', 'wait'], ['heey', 'awsom', 'god', 'bless'], ['ami', 'meredith', 'soccer', 'team', 'well', 'also', 'news', 'soccer', 'team', 'aswel', 'xx'], ['motorcycl', 'sale', 'road', 'mind', 'would', 'stupid', 'get', 'summer', 'month', 'away'], ['yay', 'happi', 'mother', 'day', 'fb'], ['head', 'theatr', 'show', 'tonight', 'exit'], ['bit', 'curious', 'much', 'pay'], ['busi', 'fun', 'mother', 'day', 'thank', 'got', 'wii', 'fit', 'yay'], ['excit', 'rove', 'tonight', 'jennif', 'garner', 'gina', 'riley'], ['lara', 'thank', 'much', 'ff', 'recommend'], ['thank', 'share', 'anyth', 'coffe', 'good', 'big', 'fan', 'not', 'live'], ['haha', 'dork', 'sound', 'yummi', 'share'], ['thxx', 'bathroom', 'said'], ['good', 'morn', 'twittertakeov'], ['ever', 'pointless', 'argument', 'drunk', 'mum', 'drunk', 'nan', 'drunk', 'mum', 'bf', 'dinner', 'fun', 'time', 'round', 'hahah'], ['yeah', 'tragic', 'need', 'haircut'], ['suffer', 'restless', 'leg', 'butt', 'syndrom'], ['omg', 'love', 'guy', 'thank', 'keepin', 'entertain', 'awak', 'missinmydgbigtym'], ['thank'], ['blogtv', 'fun', 'not', 'wait', 'til', 'next', 'time'], ['hehe', 'funni', 'midget', 'thing', 'cheer', 'alex', 'wave', 'germani', 'right', 'spain'], ['happi', 'even', 'make', 'laundri', 'wonder'], ['excit', 'tour', 'fotc', 'idea', 'see', 'tomorrow'], ['empitom', 'epic', 'fail', 'know', 'epic', 'fail'], ['good', 'day', 'drive', 'mountain', 'visit', 'kati', 'eat', 'chip', 'amp', 'fudg', 'stock', 'love', 'smell', 'soap'], ['yvonn', 'thank', 'ffrecommend', 'love', 'profil', 'photo', 'agre', 'quot', 'sleep', 'quot', 'lol'], ['saw', 'new', 'star', 'trek', 'movi', 'yesterday', 'good', 'quiet', 'day', 'today', 'gym', 'lunch'], ['least', 'get', 'closer', 'normal', 'bedtim', 'enjoy', 'trip', 'keep', 'us', 'updat', 'sweet', 'dream'], ['want', 'know', 'not', 'like', 'hun', 'know', 'go', 'back'], ['oh', 'love', 'sunday', 'morn', 'like', 'mum', 'made', 'scrambl', 'egg', 'toast'], ['feel', 'higher', 'mt', 'everest'], ['chillin'], ['plop', 'twice', 'twice'], ['yeah', 'teas', 'boofi', 'buy', 'red', 'hair', 'extens', 'way'], ['oh', 'get', 'well', 'soon', 'alexa', 'take', 'rest'], ['oh', 'would', 'rivet', 'tv', 'trip', 'break', 'room', 'coffe', 'toothpick', 'eye', 'keep', 'open'], ['morrn', 'last', 'day', 'random', 'awesom', 'weekend', 'go', 'round', 'dbar', 'style', 'good', 'timezz'], ['emo', 'moment', 'mani', 'tear', 'love', 'famili', 'soror'], ['welcom', 'twitter', 'hope', 'would', 'not', 'long', 'saw', 'light', 'join', 'us'], ['home', 'go', 'sleep', 'goodnight', 'twitter', 'world'], ['happi', 'mother', 'day', 'kid', 'amp', 'mum'], ['basic', 'listen', 'miley', 'cyrus', 'fourteen', 'hour', 'love'], ['love', 'quot', 'good', 'girl', 'go', 'bad', 'quot'], ['haha', 'yeah', 'heard', 'leicest', 'home', 'self', 'movi', 'candi', 'amaz', 'even'], ['good', 'see', 'famili', 'good', 'day', 'today'], ['omg', 'mad', 'came', 'radio'], ['hi', 'twit', 'friend', 'happi', 'mother', 'day', 'beauti', 'amaz', 'mother'], ['chill', 'room', 'comput'], ['pack', 'trip', 'ascari', 'track', 'thank', 'bacardi'], ['watch', 'soon', 'love', 'new', 'york', 'sweet', 'lookout'], ['watch', 'dan', 'funni', 'haha'], ['good', 'morn'], ['yes', 'clear', 'relish', 'act', 'togeth', 'spark', 'perform', 'milk', 'laugh'], ['love', 'song', 'night', 'quot', 'quot', 'brad', 'paisley', 'happi', 'mother', 'day', 'love', 'amp', 'light', 'joy'], ['follow', 'not', 'either', 'way', 'realli', 'cool', 'tshirt', 'hey', 'johno', 'x'], ['say', 'diana', 'want', 'burn', 'pic', 'dvd', 'cd'], ['rees', 'piec', 'ili'], ['good', 'morn', 'chairman', 'board', 'live', 'thing'], ['anytim', 'not', 'match', 'stamina', 'nice', 'warm', 'comfi', 'bed', 'call', 'scream', 'night', 'ninja'], ['like', 'new', 'trend', 'next'], ['happi', 'mother', 'day'], ['go', 'bed', 'happi', 'mother', 'day', 'peopl'], ['not', 'wait', 'see', 'friday', 'hope', 'meet', 'guy', 'would', 'make', 'night', 'even', 'better'], ['sunris', 'blvd', 'east', 'awesom', 'get', 'sleep', 'yay'], ['morn', 'well'], ['aww', 'sweet'], ['great', 'day', 'anoth', 'one', 'await'], ['sunni', 'feel', 'realli', 'well', 'today', 'yippe'], ['perfect', 'thank', 'lt', 'lt'], ['chillin', 'hangov', 'hollyoak', 'plate', 'morn'], ['good', 'morn', 'everyon'], ['ohh', 'ok', 'thought', 'go', 'nut', 'mayb', 'pass', 'way', 'back'], ['nice', 'jet', 'ski', 'test', 'hope', 'book', 'go', 'well', 'cheer', 'ad', 'got', 'twitter', 'watch', 'gadget', 'show'], ['thank', 'yoou', 'twittertakeov'], ['discov', 'bug', 'new', 'netplay', 'build', 'publish', 'bug', 'fix', 'hope', 'new', 'beta', 'tomorrow'], ['nice', 'day'], ['listen', 'weightless', 'time', 'low', 'thank', 'make', 'listen'], ['gott', 'home', 'work', 'relax'], ['happi', 'mother', 'day'], ['final', 'made', 'mother', 'day', 'got', 'car'], ['lol', 'tri', 'take', 'old', 'man', 'eh', 'good', 'heheh', 'cute'], ['sleep', 'miss', 'fun', 'hey', 'dg', 'let', 'us', 'play', 'anoth', 'gamm', 'brian'], ['yeay', 'haha', 'thank', 'much', 'jiah'], ['anyon', 'big', 'finger', 'love'], ['chill', 'mcfli', 'last', 'night', 'absoulut', 'incred', 'love'], ['wow', 'good', 'idea', 'yesterday', 'alreadi', 'took', 'present', 'thank', 'anyway'], ['print', 'mom', 'amazon', 'gift', 'card', 'happi', 'mother', 'day', 'talk', 'last', 'minut'], ['still', 'thorough', 'enjoy', 'convers'], ['thank'], ['sanctuarysunday', 'awesom', 'news', 'leo', 'award', 'sanctuari', 'look', 'like', 'got', 'nomint', 'not', 'bad'], ['walk', 'cloud', 'sweet', 'novemb', 'lake', 'hous'], ['not', 'wait', 'make', 'call', 'tomorrow', 'got', 'keep', 'move', 'forward'], ['thank', 'headsup', 'tour', 'book', 'ticket', 'palac', 'june'], ['realli', 'want', 'see', 'not', 'wait', 'thursday'], ['welcom', 'twitter', 'let', 'know', 'question', 'would', 'love', 'help'], ['aw', 'taxi', 'man', 'go', 'fast', 'mee'], ['love', 'simpl', 'safari', 'toolbar'], ['thank'], ['today', 'go', 'two', 'year', 'best', 'two', 'year', 'ever'], ['watch', 'find', 'nemo', 'nephew', 'cute'], ['njoy', 'sunday', 'plce', 'learn', 'joomla'], ['happi', 'mommi', 'day', 'mother', 'world'], ['parent', 'teacher', 'thing', 'yesterday', 'bore', 'go', 'skl', 'saturday', 'lol'], ['anticip', 'make', 'cup', 'tea', 'agre', 'must', 'happen', 'awesom'], ['oh', 'cute', 'poppi'], ['thank'], ['happi', 'mother', 'day'], ['thank', 'new', 'work', 'arriv', 'week'], ['weetabix', 'choco', 'milk', 'yum'], ['aww', 'thank', 'inde', 'graduat', 'friday', 'final', 'stand', 'teach', 'america', 'law', 'school'], ['ya', 'kelil', 'total', 'awesom', 'amaz', 'templ', 'cultur', 'amaz', 'thailand'], ['final', 'home', 'big', 'travel', 'ahh', 'time', 'realx'], ['thank'], ['let', 'us', 'hope', 'pray', 'go', 'wiser', 'way', 'let', 'us', 'hope', 'pray', 'go', 'wiser', 'way'], ['perfect', 'thank', 'enjoy', 'sunday', 'work'], ['think', 'fun', 'got', 'hide', 'defend', 'enemi', 'fun', 'huh'], ['cut', 'slice', 'chees', 'cake', 'make', 'everyth', 'better'], ['happi', 'mother', 'day', 'mommi'], ['haha', 'interest', 'haha'], ['sun', 'attempt', 'increas', 'effort', 'ala', 'not', 'said', 'see', 'bath', 'couch', 'amp', 'book', 'immedi', 'futur'], ['pleasur', 'great', 'recip'], ['thank', 'share'], ['thank', 'love'], ['rain', 'cat', 'dog', 'gda', 'sk', 'today', 'look', 'nice', 'window'], ['thank', 'tweet', 'use', 'set', 'ref', 'middl', 'ad', 'chapter', 'edit'], ['awesom', 'beer', 'pong', 'parti', 'hous', 'yard', 'tonight', 'go', 'sun', 'rise', 'offici'], ['hour', 'find', 'good', 'star', 'trek', 'film', 'realli', 'ticket', 'cost', 'euro', 'hope', 'worth'], ['realli', 'enjoy', 'podcast', 'time', 'listenen', 'show', 'def', 'listen'], ['enjoy', 'quot', 'gear', 'war', 'quot', 'pc', 'game', 'realli', 'good'], ['good', 'night', 'set', 'twitter', 'thing', 'new', 'expect', 'come', 'handi'], ['kyneton', 'breakfast', 'morn', 'slow', 'live', 'noic', 'beauti', 'sunni', 'autumn', 'day', 'drove', 'back', 'melb', 'via', 'daylesford'], ['thank', 'monday'], ['anoth', 'note', 'geodefens', 'easi', 'onward', 'medium', 'map', 'whole', 'world', 'pain', 'await', 'explor'], ['hope', 'hear', 'soon'], ['go', 'big', 'weekend', 'not', 'wait', 'see', 'x'], ['well', 'noth', 'flash', 'differ', 'chocol', 'chang', 'good', 'meet', 'yesterday', 'atmospher', 'amp', 'discuss'], ['aww', 'loov'], ['happi', 'mother', 'day'], ['went', 'shop', 'sport', 'tour', 'yesterday', 'garley', 'funni', 'need', 'brunch', 'shower'], ['come', 'year', 'wil', 'said', 'yes', 'would', 'good'], ['hey', 'thank', 'follow', 'love', 'name', 'elijah', 'go', 'name', 'son'], ['watch', 'eat', 'drunk', 'annoy', 'tri', 'realli', 'hard', 'not', 'glre'], ['go', 'al', 'need', 'check', 'one', 'store', 'hope', 'find', 'thing', 'look'], ['good', 'time', 'must', 'sleep', 'lol', 'gym', 'amp', 'danc', 'rehears', 'like', 'hour'], ['know', 'updat', 'realli', 'amus', 'prop', 'auction', 'much', 'baseship', 'bed', 'go'], ['nice', 'brunch', 'bay', 'thank', 'god', 'mommi'], ['thankyou', 'sugaar', 'way', 'leav', 'town', 'realli', 'hope', 'could', 'see', 'next', 'time', 'ya', 'ra', 'skrg', 'sempit', 'bgt', 'sih', 'waktunya', 'ya'], ['simpl', 'greet', 'unexpect', 'peopl', 'actual', 'lighten', 'mood', 'not', 'ever', 'happen'], ['pleas', 'settl', 'cheap', 'cider', 'meet', 'deadlin', 'seen', 'new', 'blog'], ['happi', 'mother', 'day', 'mother'], ['cool', 'not', 'wait', 'hear', 'stori', 'xoxo'], ['good', 'morn', 'fabul', 'morn'], ['go', 'eat', 'pasta', 'bake', 'favourit', 'food', 'later', 'go', 'flea', 'market', 'lilim'], ['ahh', 'okay', 'make', 'sens', 'start', 'prepar'], ['good', 'hear', 'morn'], ['not', 'frighten', 'like', 'see', 'boy', 'leather', 'go', 'everi', 'year', 'brilliant', 'atmo'], ['day', 'like', 'today', 'thank', 'mom', 'teach', 'proverb', 'thank', 'twitter', 'love'], ['mum', 'realli', 'happi', 'pretti', 'small', 'oh', 'wow', 'tomorrow', 'test', 'one', 'present', 'one', 'pasta', 'recepi'], ['saw', 'play', 'amaz'], ['day', 'till', 'birthday', 'hope', 'weather', 'good', 'best', 'good', 'thursday', 'friday', 'otherwis', 'il', 'scream', 'happi', 'keiron'], ['heheh', 'pretti', 'excit', 'though'], ['chillin', 'listen', 'tune'], ['come', 'apart', 'easi', 'enough'], ['excus', 'love', 'bein', 'comfi'], ['went', 'short', 'flight', 'around', 'geelong', 'waterfront', 'surpris', 'well', 'handl', 'still', 'exhaust', 'last', 'week', 'meetup'], ['love'], ['happi', 'mother', 'day', 'not', 'got', 'mom', 'present', 'yet', 'print', 'amazon', 'gift', 'card'], ['thank', 'way', 'men', 'hairstyl', 'right', 'grow', 'hair', 'long', 'anyway', 'hope', 'good', 'weekend'], ['hope', 'mom', 'like', 'pamper', 'gift', 'sent'], ['lushh', 'wernt', 'manag', 'keep', 'lol', 'aww', 'amaz', 'xx'], ['mum', 'ask', 'us', 'thank', 'introduc', 'us', 'kenni', 'mother', 'day', 'dinner'], ['moral', 'support', 'student'], ['headach', 'morn', 'instead'], ['learn', 'play', 'guitar', 'one', 'best', 'thing', 'done', 'boredom'], ['amaz', 'happi', 'enjoy', 'sunday', 'xx'], ['read', 'lactos', 'stuff', 'eat', 'hard', 'chees', 'lactos', 'jump', 'joy', 'raini', 'day', 'yay'], ['busi', 'exam', 'week', 'come', 'alway', 'look', 'bright', 'side', 'life', 'whistl'], ['true', 'depend', 'coupl', 'person', 'found', 'ad', 'increas', 'fun', 'amp', 'increas', 'bond'], ['happi', 'birthday'], ['flu', 'allergi', 'not', 'matter', 'tri', 'squeez', 'sundayi'], ['brief', 'preview', 'omg', 'jame', 'creepi', 'role', 'scare'], ['hahaha', 'cartoon', 'mascot', 'go', 'monster', 'nice', 'detail', 'good', 'shadow', 'realist', 'tonsil'], ['happi', 'mother', 'day', 'mommi'], ['sound', 'like', 'great', 'day', 'enjoy'], ['go', 'mariah', 'never', 'listen', 'hater', 'fan', 'long', 'grate', 'music', 'not', 'wait', 'album'], ['westend', 'enjoy', 'sun'], ['not', 'get', 'lot', 'sleep', 'last', 'night', 'good', 'thing', 'read'], ['yeah', 'well', 'thank', 'blush'], ['happi', 'mother', 'day', 'tell', 'mom', 'awesom', 'madr', 'amp', 'great', 'exampl', 'archuleta', 'familia'], ['oh', 'know', 'aprreci', 'back', 'plan'], ['good', 'morn', 'tweepl', 'sun'], ['go', 'kill', 'person', 'went', 'manchest', 'kid', 'not', 'want', 'polic', 'door'], ['happi', 'mother', 'day'], ['good', 'morn', 'everyon'], ['love', 'random', 'act', 'kind', 'laughter'], ['day', 'still', 'tire'], ['sweet'], ['senior', 'ball', 'hella', 'fun', 'good', 'night'], ['happi', 'mother', 'day', 'show', 'love', 'beauti', 'amaz', 'mom', 'lt'], ['duckrac', 'bath', 'not', 'quit', 'work', 'especi', 'duck', 'polar', 'bear', 'seal', 'amp', 'whale'], ['print', 'mom', 'amazon', 'gift', 'card', 'happi', 'mother', 'day', 'talk', 'last', 'minut'], ['nice', 'see', 'tweet', 'sunday', 'may', 'celebr', 'mother', 'day', 'today', 'nice', 'yer', 'mom'], ['got', 'home', 'anoth', 'wonder', 'night'], ['haha', 'love', 'hmm', 'lol', 'need', 'good', 'band'], ['way', 'nab', 'youngster', 'go', 'best', 'friend', 'swear', 'younger', 'men', 'appar', 'go', 'longer'], ['made', 'email', 'pal', 'happi'], ['happi', 'mother', 'day', 'mom'], ['cute'], ['wtf', 'polyvor', 'enjoy', 'though'], ['love', 'song', 'lol', 'amaz', 'steph', 'xoxo'], ['feel', 'shit', 'nerv', 'trip', 'plastic', 'telescop', 'yesti', 'fell', 'wall', 'head', 'still', 'hurt'], ['omg', 'book', 'soo', 'funni'], ['soo', 'happi', 'final', 'kean', 'cipriano', 'repli', 'chat', 'messag', 'hope', 'not', 'fake'], ['good', 'morn', 'look', 'forward', 'listen', 'prodigi', 'radio', 'big', 'weekend', 'brought', 'album', 'yesterday', 'amaiz', 'tbqh', 'x'], ['forgiv', 'good', 'lord', 'time', 'wat', 'except', 'mighti', 'oracl', 'not', 'amp', 'ing', 'care', 'fulli', 'support', 'unixodbc'], ['go', 'ask', 'waldi', 'hope', 'make', 'new', 'keyword'], ['singapor', 'warm', 'blast', 'alreadi'], ['star', 'trek', 'not', 'disappoint', 'star'], ['hello', 'everyon', 'sit', 'rock', 'sam', 'air', 'best', 'classic', 'rock', 'station', 'twitter'], ['wish', 'mother', 'happi', 'mother', 'day', 'love', 'ya'], ['honour', 'friend'], ['work', 'hard', 'mayb', 'hard', 'work'], ['ok', 'bedtim', 'bonzo', 'got', 'done', 'math', 'homework', 'brain', 'done', 'day', 'nite', 'nite', 'great', 'day'], ['enjoy', 'fanci', 'meal', 'smtime', 'thr', 'joy', 'solitud', 'realli', 'enjoy', 'food', 'amp', 'lk', 'date', 'world'], ['okay', 'okay', 'sleep', 'realz', 'goodnight', 'follow'], ['hmm', 'dollhous', 'sound', 'pretti', 'good', 'think', 'download', 'tri', 'watch'], ['tell', 'friend', 'tie', 'rail', 'expect', 'tweet', 'tomorrow', 'headach', 'feel', 'tire'], ['woke', 'longest', 'sleep', 'nice', 'get', 'work', 'done', 'prep', 'next', 'wk', 'amp', 'free', 'k', 'come', 'home', 'tonight'], ['listen', 'heart', 'aka', 'took', 'car', 'need', 'hour', 'loong', 'day', 'tomorrow'], ['pretti', 'damn', 'good', 'friday', 'night'], ['got', 'home', 'anoth', 'amaz', 'night'], ['gloomi', 'day', 'not', 'stop', 'bliss', 'hope', 'ronaldo', 'score', 'derbi', 'match', 'today'], ['congrat', 'sarah', 'awsum'], ['happi', 'mother', 'day', 'mother'], ['ok', 'peep', 'good', 'morn', 'go', 'bed', 'hit', 'later'], ['wow', 'weather', 'amaz', 'today'], ['hehe', 'expert', 'eh'], ['swine', 'flu', 'victim', 'unit'], ['omg', 'dunk', 'dampier', 'massiv', 'big', 'up', 'love'], ['train', 'fost', 'tiberiu', 'lovin', 'la', 'noi', 'aflat', 'ca', 'sunt', 'imbecili', 'pest', 'tot', 'fun'], ['hat', 'slight', 'unexpect', 'yet', 'success', 'end', 'groul', 'day', 'night'], ['happi', 'mother', 'day', 'mom', 'especi', 'wonderfuli', 'mommi'], ['effort', 'though'], ['happi', 'mader', 'day'], ['yeah', 'exact', 'fan', 'overpow', 'hater', 'anyday', 'know', 'wat', 'wat', 'wnt', 'dnt', 'even', 'care', 'anymor', 'know', 'truth'], ['thank', 'dedic', 'lamb', 'unparallel', 'also', 'true', 'lamb', 'dedic', 'unparallel'], ['retweet', 'jesus', 'post', 'made', 'laugh', 'not', 'worri', 'not', 'sublimin', 'code'], ['take', 'dad', 'law', 'sunday', 'stroll', 'old', 'leigh', 'beauti', 'morn', 'say', 'hi', 'morri', 'lol'], ['hurray', 'old', 'friend', 'beer', 'ladi', 'friend'], ['hope', 'school', 'go', 'good', 'tomorrow'], ['yep', 'awesom', 'max', 'haha'], ['dig', 'download', 'film', 'mi', 'familia', 'love', 'itun'], ['went', 'quick', 'not', 'chanc', 'lol'], ['went', 'muslim', 'marriag', 'first', 'time', 'life', 'came', 'back', 'stomach', 'full', 'tasti', 'briyani', 'realli', 'like', 'much'], ['go', 'chop', 'tini', 'bit', 'one', 'two'], ['hahahah', 'lol', 'fun', 'aye', 'div', 'experi', 'love', 'spongebob', 'l'], ['one', 'good', 'gig'], ['hey', 'hey', 'happi', 'mother', 'day'], ['awesom', 'time'], ['great', 'exercis', 'sunday', 'morn', 'quot', 'stop', 'wheel', 'karma', 'quot', 'transform', 'negat', 'love', 'life'], ['realli', 'happi', 'n', 'leigh', 'thnx', 'share', 'happi', 'us', 'mean', 'world', 'us', 'love', 'ya', 'marta'], ['brent', 'cross', 'wow', 'live', 'close'], ['bonjour', 'twitterland'], ['happi', 'mother', 'day'], ['happi', 'mother', 'day', 'heidi', 'klum'], ['happi', 'mother', 'day'], ['got', 'home', 'interest', 'night'], ['alway', 'miss', 'not'], ['sit', 'bus', 'dublin', 'listen', 'tokio', 'must', 'know'], ['make', 'good', 'girl', 'go', 'bad'], ['find', 'someth', 'like', 'easi', 'get', 'good', 'gift', 'lot', 'money', 'honest', 'nowher', 'near', 'person', 'though'], ['dayss', 'ahh', 'super', 'excit', 'tell', 'heart', 'not', 'beat', 'jls', 'awesom', 'yesterday'], ['happi', 'mother', 'day', 'mommi'], ['good', 'morn', 'world', 'hope', 'everyon', 'ok'], ['wish', 'peopl', 'would', 'notic'], ['g', 'morn', 'rain', 'rain', 'not', 'care', 'much'], ['lan', 'poker', 'much', 'fun', 'someon', 'help', 'rememb', 'ki', 'compr', 'chal', 'raha', 'hai', 'abhi'], ['friend', 'true', 'fan'], ['happi', 'mother', 'day', 'wonder', 'mom'], ['not', 'think', 'bear', 'cute', 'earli', 'day', 'kudo', 'fair', 'empress'], ['print', 'mom', 'amazon', 'gift', 'card', 'happi', 'mother', 'day', 'talk', 'last', 'minut'], ['wait', 'final', 'shipwreck', 'start', 'goodtim', 'lt'], ['discov', 'great', 'site'], ['money', 'world', 'could', 'never', 'make', 'happi', 'mom', 'son'], ['sat', 'pjs', 'drink', 'tea', 'watch', 'polit', 'show', 'love'], ['nice', 'see', 'euruko', 'pictur', 'big', 'screen', 'confer', 'break'], ['home', 'cours', 'ass', 'day', 'n', 'visit', 'boy', 'rob', 'mother', 'yo', 'mutha'], ['relat', 'ruin', 'wp', 'blog', 'mani', 'time', 'warn', 'quot', 'back', 'quot'], ['ok', 'point', 'taken', 'tell', 'team', 'stop', 'cynic', 'champion', 'standard', 'far', 'better', 'anyway'], ['unfortun', 'peopl', 'work', 'let', 'bad', 'morn', 'offici', 'reveng', 'dish', 'best', 'serv', 'cold'], ['ali', 'like', 'wonder', 'sunday'], ['funni', 'gnight'], ['hmm', 'tasti', 'go', 'curri', 'rice', 'pea', 'probabl'], ['alright', 'live', 'next', 'hour', 'vivid', 'spring', 'summer', 'music', 'rawk', 'enjoy'], ['like', 'tripl', 'got', 'lot', 'well', 'well', 'done'], ['set', 'excit', 'sunday', 'lol'], ['aw', 'thank', 'sam', 'phil', 'love'], ['yes', 'like', 'much', 'not', 'even', 'cheesi'], ['would', 'applaud', 'sort', 'good', 'theolog', 'psycholog', 'amp', 'sociolog', 'reason', 'agre', 'lighten'], ['found', 'food', 'engin', 'futur', 'life', 'cool', 'iphon', 'app', 'call', 'afterlif'], ['go', 'shop', 'mammyy', 'makeup', 'face', 'general', 'quit', 'nice', 'today'], ['episod', 'season', 'love', 'chuck', 'bass', 'go', 'short', 'stack', 'film', 'next', 'sat', 'make', 'flag'], ['hey', 'sherri', 'thanx', 'da', 'messag', 'wonder', 'could', 'follow', 'plzz'], ['oh', 'nice', 'someth', 'nice', 'next', 'week', 'go', 'madrid', 'next', 'weekend', 'day'], ['thankyou'], ['knoow', 'pizza', 'girl', 'episod', 'xd', 'lt'], ['pretti', 'least', 'think', 'need', 'catch', 'sleep', 'soon', 'though'], ['good', 'morn', 'mommi', 'happi', 'mother', 'day', 'pull', 'cat', 'tail', 'know', 'like'], ['listen', 'right', 'much', 'fun', 'get', 'somehow'], ['thursday', 'basic', 'noth'], ['welcom'], ['cool'], ['midwest', 'girl', 'close', 'yet', 'far'], ['well', 'mother', 'amp', 'grandma', 'bit', 'kid', 'mode'], ['wonder', 'imagin', 'ocean', 'us', 'not', 'far'], ['final', 'home', 'crazi', 'parti', 'thank', 'drive', 'home'], ['like', 'sound', 'love', 'beauti', 'love', 'wind', 'face'], ['welcom'], ['happi', 'birthday', 'littl', 'sister', 'gee', 'celebr', 'articl'], ['hope', 'mum', 'mother', 'day', 'love', 'close', 'famili', 'amp', 'friend'], ['like', 'fuck', 'still', 'drunk', 'hell', 'great', 'time', 'crazi'], ['ammoxx', 'great', 'day', 'woman', 'notic', 'smile', 'never', 'disappear', 'face', 'ha', 'murray', 'cos', 'owe'], ['wish', 'could', 'choos', 'band', 'play', 'trash', 'june'], ['happi', 'mother', 'day', 'american', 'mama'], ['hi', 'hun', 'realli', 'love', 'tutori', 'yday', 'soo', 'much', 'one', 'best', 'tutori', 'watch', 'long', 'time', 'xx'], ['hahahah', 'use', 'say'], ['great', 'day', 'woman', 'notic', 'smile', 'never', 'disappear', 'face', 'ha', 'murray', 'cos', 'owe'], ['sorri', 'could', 'not', 'help', 'tri', 'get', 'trend', 'topic'], ['ok', 'kind', 'thought', 'mean', 'would', 'funni', 'though'], ['amaz', 'time', 'danc', 'dj', 'dan', 'rubi', 'skye', 'tonight', 'still', 'look', 'roommat', 'sf', 'know', 'anybodi'], ['congrat', 'howi', 'hope', 'bring', 'littl', 'jame', 'germani', 'soon', 'wish', 'best', 'famili'], ['not', 'cancel', 'account', 'yet', 'not', 'log', 'sinc', 'novemb', 'think', 'mayb', 'main', 'rogu'], ['son', 'get', 'vote', 'today', 'coz', 'grown', 'love', 'care', 'man', 'love', 'mum'], ['anoth', 'note', 'total', 'love', 'pic', 'pic'], ['pretti', 'sure', 'sort', 'tweet', 'lose', 'follow', 'stuff', 'well', 'worth'], ['good', 'morn', 'drive', 'work'], ['new', 'hair', 'go', 'greeatt', 'use'], ['mm', 'look', 'yummi', 'good', 'see'], ['yes', 'done', 'last', 'homework', 'readi', 'dx', 'go', 'waalki', 'sun', 'shine', 'oh', 'yeah'], ['yeah', 'talk', 'bore'], ['happi', 'mother', 'day'], ['good', 'morn', 'everybodi'], ['thank', 'come', 'tonight', 'hope', 'ya', 'fun'], ['oh', 'watch', 'third', 'episod', 'jona', 'awesom'], ['hee', 'hee', 'way', 'thank', 'linkedin', 'tip', 'still', 'use', 'thank', 'advanc'], ['love', 'jumper'], ['realli', 'good', 'night'], ['hope', 'feel', 'better', 'soon'], ['oh', 'sweet', 'definit', 'check', 'get', 'chanc'], ['ooh', 'realli', 'well', 'know', 'alway', 'welcom'], ['happi', 'mother', 'day'], ['happi', 'lina', 'haha', 'birthdaypres', 'would', 'comment', 'new', 'video'], ['knew', 'mom', 'love', 'flower', 'love', 'rieger', 'begonia', 'hang', 'basket', 'seem', 'perfect'], ['complet', 'excel', 'dave', 'matthew', 'concert', 'jason', 'mraz', 'open', 'amp', 'heard', 'quot', 'stay', 'leav', 'quot', 'amp', 'quot', 'crush', 'quot', 'first', 'time', 'live'], ['happi', 'mother', 'day', 'mom'], ['aww', 'love', 'char', 'enjoy', 'lucki', 'food', 'lol'], ['love', 'britain', 'got', 'talent', 'last', 'night', 'shaun', 'greg', 'amaz', 'hot', 'not', 'say', 'notic'], ['happi', 'mother', 'day'], ['hallelujah', 'final', 'finish', 'career', 'assign', 'feel', 'finish', 'task', 'great', 'idea', 'mayb', 'lol'], ['quot', 'viewer', 'linkedin', 'profiel', 'also', 'view', 'barack', 'obama', 'francisco', 'van', 'jole', 'erwin', 'quot', 'good', 'compani'], ['fyi', 'also', 'turkish', 'star', 'war', 'rip'], ['happi', 'mother', 'day', 'valk'], ['thank', 'tadi', 'jam'], ['good', 'mornin', 'everyon', 'beauti', 'sunday', 'beauti', 'mom', 'breakfast', 'ladi', 'let', 'us', 'move'], ['happi', 'birthday'], ['grate', 'amaz', 'famili', 'bless', 'happi', 'mother', 'day', 'everyon'], ['funni', 'sit', 'extern', 'keyboard', 'mous', 'macbook', 'bed', 'look', 'strang', 'comfort'], ['mess', 'cross', 'kneel', 'bit', 'get', 'call'], ['happi', 'mother', 'day', 'not', 'got', 'mom', 'present', 'yet', 'print', 'amazon', 'gift', 'card'], ['nice', 'quiet', 'sunday'], ['hotel', 'thank'], ['great', 'night', 'ashleigh', 'make', 'good', 'danc', 'teacher', 'kick', 'ben', 'butt', 'pillow', 'fight'], ['thank'], ['good', 'morn', 'melodi', 'wish', 'wonder', 'mother', 'day', 'famili'], ['show', 'product', 'bit', 'behind'], ['sure', 'sleep', 'tell', 'favorit', 'part', 'tomorrow', 'laugh', 'pretti', 'much', 'whole', 'time'], ['alway', 'seem', 'know', 'exact', 'right', 'thing', 'say', 'thank', 'youregreat'], ['aww', 'bless', 'guy', 'cute', 'still', 'touch', 'bb', 'contest', 'xxoo'], ['new', 'friend', 'call', 'shame'], ['funni', 'cute', 'kid'], ['happi', 'sunday', 'sunshin', 'frankfurt', 'hope', 'mother', 'enjoy', 'day'], ['go', 'program', 'not', 'program', 'long', 'time'], ['one', 'favorit', 'ever', 'pleas', 'keep', 'great', 'work', 'john'], ['love', 'hat', 'cool', 'look', 'like', 'fun', 'day', 'love', 'use', 'word', 'quot', 'crikey', 'quot'], ['happi', 'momma', 'day', 'honor', 'mom', 'sign', 'maternalhealth', 'mother', 'luvin', 'kid'], ['cute', 'dog'], ['must', 'admit', 'first', 'saw', 'name', 'post', 'thought', 'exploit', 'attempt'], ['tri', 'play', 'john', 'travolta', 'quot', 'greas', 'lightn', 'quot', 'basslin', 'cool'], ['hey', 'web', 'url', 'look', 'good'], ['heya', 'thank', 'accept', 'add'], ['vacat', 'golden', 'time', 'spam', 'googl', 'redirect'], ['mother', 'day', 'went', 'lunch', 'celebr', 'went', 'shop', 'gift', 'mom'], ['go', 'back', 'bed', 'lol', 'enjoy', 'time', 'gym', 'sleep'], ['oh', 'hahah', 'ok'], ['star', 'treek', 'one', 'hot', 'guy', 'get', 'watch', 'hot', 'stuff', 'woo'], ['watch', 'camp', 'rock', 'eat', 'raspberri', 'rippl', 'icecream', 'awesom'], ['sign', 'night', 'good', 'sunday', 'night'], ['hope', 'abl', 'join', 'us', 'futur', 'edit'], ['pleas', 'wish', 'wife', 'evelyn', 'happi', 'mother', 'day', 'tell', 'hope', 'wonder', 'day', 'spoil', 'today'], ['not', 'happen', 'go'], ['great', 'weekend', 'ate', 'much', 'think', 'look', 'forward', 'trip', 'hobart', 'friday'], ['wolverin', 'awesom', 'love', 'great', 'actor'], ['thank'], ['glad', 'wore', 'black', 'rat', 'flowi', 'shirt', 'full', 'dozen', 'mix', 'oystser', 'seafood', 'platter', 'death', 'chocol'], ['thank', 'love', 'word', 'crikey', 'like', 'sayin'], ['morn', 'darlin', 'hope', 'feelin'], ['find', 'someon', 'give', 'massag', 'wish', 'could', 'half', 'world', 'away', 'lol'], ['quot', 'good', 'even', 'kind', 'sir', 'bow', 'quot'], ['oic', 'need', 'get', 'upgrad', 'space', 'want', 'use', 'prob', 'use', 'photoshop', 'dreamweav'], ['lol', 'half', 'alreadi', 'bulki', 'gear', 'super', 'slim', 'light', 'ssd', 'perform', 'unreal'], ['take', 'looki', 'sound', 'great'], ['happi', 'mother', 'day'], ['top', 'way', 'go', 'green', 'pretti', 'help', 'kind', 'cool', 'actual'], ['haha', 'better', 'drunken', 'tweet', 'mean'], ['meant', 'heavi', 'rain', 'n', 'flood', 'bkk', 'last', 'night', 'lucki', 'bkk'], ['worri', 'good', 'news', 'good', 'spread'], ['amaz', 'x'], ['read', 'book', 'call', 'quot', 'gamer', 'girl', 'quot', 'not', 'bad'], ['bow', 'glad', 'servic'], ['two', 'small', 'dog', 'good', 'hear', 'center', 'parc', 'wd', 'take', 'cruis', 'new', 'york', 'queen', 'mari', 'real', 'treat'], ['happi', 'mother', 'day', 'mom'], ['haha', 'drunk', 'golf', 'sound', 'awesom', 'predict', 'great', 'score', 'today'], ['thank', 'comment'], ['watch', 'standard', 'dvd', 'version', 'blu', 'uk', 'yet', 'effect', 'best', 'seen', 'home', 'system', 'yet', 'titti'], ['current', 'costa', 'coffe', 'like', 'place', 'sat', 'busi', 'loung', 'oo', 'businessi', 'today'], ['ice', 'skate', 'last', 'show', 'part', 'morn', 'mozart', 'awesom', 'not', 'wait', 'friday', 'saturday', 'love'], ['thank', 'link', 'vote', 'amp', 'send'], ['good', 'morn'], ['happi', 'mom', 'day'], ['look', 'nice', 'atleast', 'haha', 'lt'], ['twikini', 'enjoy', 'sun'], ['nice', 'meet', 'ya'], ['bit', 'earli', 'want', 'nice', 'lunch', 'good', 'time'], ['awesom', 'book', 'not', 'wait', 'film', 'enjoy', 'not', 'scare', 'x'], ['inde', 'look', 'forward', 'day'], ['happi', 'mother', 'day', 'esp', 'mommi'], ['walk', 'dog', 'horseforth', 'park', 'hangov', 'sunday', 'morn', 'yay'], ['happi', 'mother', 'day', 'mom', 'jah', 'tc'], ['would', 'love', 'ala', 'cub', 'would', 'not', 'gracious', 'enough', 'stop', 'wreck', 'hous', 'soak', 'bone'], ['haha', 'hi', 'mum', 'wow', 'yes', 'modern', 'need', 'get', 'facebook', 'account', 'talk', 'write'], ['thank'], ['alway', 'think', 'look', 'good', 'place', 'apperici', 'everyon', 'support', 'everi', 'site', 'join'], ['hello', 'biggest', 'fan', 'realli', 'carnt', 'till', 'new', 'moon', 'come', 'good', 'luck', 'nd', 'cast', 'film', 'xx'], ['good', 'morn', 'tweet'], ['moo', 'lol', 'copi', 'thing', 'look', 'good'], ['hi', 'thank', 'follow', 'good', 'luck', 'friend', 'ha'], ['see', 'think', 'thought', 'smile', 'caught', 'radio', 'big', 'daft', 'grin', 'face'], ['son', 'bitch', 'could', 'not', 'put', 'releas', 'alreadi', 'bought'], ['aww', 'sweet', 'wish', 'could', 'see', 'yourz'], ['done', 'run', 'feel', 'great', 'fatigu', 'speed'], ['lol', 'blow', 'kiss', 'catch', 'daddi', 'neway', 'chillin', 'hun', 'see', 'earli', 'sleep'], ['actual', 'love', 'nesquik', 'cereal'], ['great', 'weekend', 'one', 'hang', 'nick', 'amp', 'brendon', 'church', 'morn', 'not', 'believ', 'loretta', 'mother', 'day', 'raffl'], ['nice', 'love', 'amaz', 'singer', 'love'], ['ahh', 'babi', 'cute', 'happi', 'mother', 'day'], ['thank'], ['happi', 'mother', 'day', 'day'], ['john', 'john', 'switch', 'mean', 'pimp', 'someon', 'still', 'pwns', 'halo', 'wast', 'hahahaha', 'anoth', 'amaz', 'night'], ['mother', 'day', 'not', 'thnx', 'pm'], ['good', 'luck', 'pressur', 'test', 'not', 'worri', 'everyth', 'great'], ['happi', 'mother', 'day', 'mom', 'wonder', 'great', 'day'], ['spent', 'night', 'final', 'relax', 'nogard', 'wow', 'finish', 'work', 'need', 'take', 'small', 'break', 'art', 'realli', 'miss'], ['amaz', 'night', 'favorit', 'ladi', 'friend'], ['work', 'drunk', 'golfer', 'excit', 'not', 'bad', 'sir'], ['cool', 'wonder', 'not', 'sleep', 'much'], ['back', 'leg', 'kill', 'yesterday', 'big', 'old', 'leak', 'kitchen', 'look', 'like', 'stay', 'pjs', 'day', 'infront', 'tv'], ['hop', 'shower', 'help', 'tidi', 'room', 'shit', 'hole', 'mum', 'fuck', 'friend'], ['get', 'puppyy', 'name', 'think', 'romeo', 'cute'], ['love', 'mother', 'day'], ['love', 'uniqu', 'accordion', 'thief', 'buff', 'thank'], ['goin', 'cousin', 'soon', 'dog', 'soo', 'cute'], ['might', 'get', 'around', 'not', 'sure', 'make', 'flat', 'html', 'fun', 'fun', 'fun'], ['want', 'itt', 'got', 'itt'], ['turtl', 'shoe', 'make', 'awesom', 'coupl', 'shoe', 'could', 'talk', 'back', 'turtl', 'p', 'lol'], ['happi', 'mother', 'dat'], ['blind', 'faith'], ['fantast', 'actor', 'time', 'got', 'recognit'], ['got', 'yaay', 'realli', 'worri', 'phone', 'would', 'not', 'fit', 'glad', 'happi', 'mother', 'day', 'lol'], ['love', 'flock', 'ubuntu'], ['goodmorn', 'twitter', 'oh', 'gosh', 'woke', 'soo', 'nice', 'lol', 'oh', 'hai', 'thar', 'twittervers', 'happi', 'mothersday', 'everybodi', 'especi', 'mine'], ['happi', 'mother', 'day', 'mom', 'play', 'ago'], ['happi', 'mother', 'day', 'mom'], ['tri', 'not', 'fall', 'asleep', 'ancient', 'assign', 'drink', 'water', 'ice', 'lime', 'yum'], ['receiv', 'first', 'pressi', 'happi', 'happi'], ['fish', 'wow', 'listen', 'ska', 'pandora', 'lazi', 'sunday', 'morn'], ['lol', 'like', 'cult', 'haha'], ['head', 'feel', 'soo', 'much', 'better'], ['ohh', 'love', 'mors', 'everi', 'episod', 'video', 'amp', 'sometim', 'gaze', 'love'], ['fantast', 'friend', 'includ', 'sever', 'one', 'met', 'thank', 'life', 'amaz', 'peopl'], ['omg', 'right', 'hahaha', 'stupid'], ['ha', 'good', 'love', 'boy', 'cos', 'never', 'stir', 'hatr', 'mighti', 'red', 'scum', 'everyon', 'love', 'citi'], ['hey', 'mari', 'twitter', 'luvv', 'youu'], ['happi', 'mother', 'day', 'beaut', 'mum'], ['clean', 'day', 'today', 'run', 'stuff', 'set', 'schedul', 'week', 'feel', 'much', 'better', 'calmer'], ['buttfuck', 'stupid', 'silli', 'forget'], ['happi', 'mother', 'day', 'mom'], ['happi', 'mother', 'dayi'], ['haha', 'lol', 'english', 'work', 'doo', 'colleg'], ['realli', 'well', 'stay', 'long', 'need', 'definit', 'come', 'visit', 'look', 'forward'], ['good', 'girl', 'sarah', 'got', 'club'], ['winter', 'flu', 'twitter', 'logi', 'get', 'notic', 'haha', 'love', 'rove'], ['lol', 'current', 'player', 'brick', 'would', 'nice', 'someth', 'slim'], ['mayb', 'go', 'see', 'hannah', 'montana', 'movi', 'todaay', 'seen', 'one', 'time', 'not', 'wait', 'see'], ['happi', 'mother', 'day', 'tri', 'not', 'nail', 'teenag', 'tree'], ['not', 'wait', 'see'], ['happi', 'mother', 'day', 'mom'], ['happi', 'mother', 'day', 'everyon', 'still', 'play', 'pet', 'societi'], ['great', 'site', 'photo', 'fantast', 'use', 'visit', 'pembrok', 'inc', 'skomer', 'june'], ['wonder', 'day', 'gorgeous', 'girl', 'follow', 'dinner', 'drink', 'swede'], ['not', 'realli', 'nice', 'pic', 'could', 'imagin', 'thought'], ['lol', 'oh', 'dnt', 'worri', 'l', 'abl', 'squeez', 'soon', 'enough', 'hope', 'good', 'day', 'today'], ['thank', 'share'], ['good', 'weekend'], ['law', 'week', 'go', 'go', 'fuck', 'excit'], ['know', 'make', 'late', 'night', 'call', 'india', 'team', 'member', 'pictur', 'struggl', 'messag', 'thank'], ['great', 'sunbath', 'garden', 'afternoon', 'watch', 'ado', 'see', 'win', 'import', 'match', 'tv'], ['lol', 'mani', 'stalker', 'today', 'love', 'get', 'creepi', 'stalker'], ['glorious', 'sunni', 'day', 'london', 'town', 'drama', 'school', 'fight', 'peopl', 'sword', 'protect', 'romant', 'structur', 'face'], ['mcfli', 'gig', 'last', 'nightt', 'omg', 'amazin', 'not', 'sit', 'whole', 'thing', 'mcfli', 'see', 'best', 'mate', 'tutus'], ['love', 'smell', 'roast', 'oven', 'thank', 'idea'], ['love', 'ever', 'know'], ['precis', 'follow', 'import', 'feel', 'explain', 'bit'], ['great', 'make', 'sure', 'get', 'copi'], ['xd', 'hello', 'import', 'date'], ['sanctuarysunday', 'fav', 'charact', 'ashley', 'awesom'], ['break', 'back', 'book', 'fun', 'love'], ['mother', 'alreadi', 'bought', 'gave', 'mother', 'day', 'present', 'mother'], ['girlfriend', 'still', 'like', 'sesam', 'st'], ['rent', 'soon', 'hope', 'get', 'home', 'tonight', 'though', 'train', 'problem'], ['thank', 'share'], ['aww', 'lol', 'yh', 'worth', 'mcfli', 'worth', 'eekk'], ['thabk', 'made', 'feel', 'special'], ['final', 'got', 'twitter', 'let', 'us', 'hope', 'make', 'good', 'use', 'site'], ['quot', 'perfect', 'practic', 'make', 'perfect', 'quot'], ['cool', 'would', 'happi', 'contribut', 'futur', 'articl', 'enjoy', 'rest', 'weekend'], ['round', 'round', 'garden', 'amaz', 'thing', 'still', 'talk'], ['proud', 'watch', 'film'], ['day', 'home', 'today', 'prove', 'rather', 'love'], ['finnish', 'doubl', 'cheeseburg', 'good', 'readi', 'watch', 'spanish'], ['round', 'round', 'garden', 'amaz', 'thing', 'still', 'talk'], ['happi', 'mother', 'day', 'mama'], ['yay', 'live', 'demo', 'rhode', 'love', 'euruko'], ['awesom', 'sunday', 'servic', 'god', 'jesus', 'pray', 'man'], ['thank', 'much'], ['thank', 'follow'], ['um', 'glad', 'enjoy'], ['yesterday', 'year', 'anniversari', 'best', 'day', 'ever', 'yay', 'mcr'], ['not', 'think', 'isp', 'happi', 'us', 'weekend'], ['print', 'mom', 'amazon', 'gift', 'card', 'happi', 'mother', 'day', 'talk', 'last', 'minut'], ['darl', 'dd', 'say', 'quot', 'mum', 'best', 'friend', 'quot', 'told', 'tell', 'said', 'love', 'ya', 'moo', 'jd'], ['sort', 'oper', 'system', 'app', 'seper', 'drive'], ['great', 'hug'], ['welcom', 'love', 'cute', 'stuff'], ['garden', 'get', 'lot', 'fresh', 'air', 'love', 'sunday'], ['speakerphon', 'besti', 'love', 'kid'], ['pleas'], ['greet', 'everi', 'momma', 'happi', 'momma', 'day'], ['not', 'msn', 'case', 'lot', 'easier', 'hahaha'], ['kill'], ['happi', 'mother', 'day', 'mom', 'pseudo', 'stepmom'], ['learn', 'fli', 'higher'], ['morn', 'happi', 'mother', 'day', 'miz', 'thank', 'lanc'], ['yep', 'tri', 'beat', 'cold', 'winter', 'morn', 'swim', 'alway', 'good', 'start', 'day'], ['thank', 'clayton', 'go', 'favorit', 'greek', 'restur', 'church', 'mom', 'day', 'love', 'huckabe'], ['mom', 'happi', 'present', 'yayi'], ['aha', 'thank', 'jae'], ['book', 'amp', 'save', 'summer', 'amazon', 'villag', 'suit', 'best', 'place'], ['sshh', 'everybodi', 'think', 'asleep', 'not', 'disturb'], ['hey', 'hope', 'right', 'watch', 'warm', 'gp', 'spain'], ['spent', 'time', 'guild', 'war', 'birthday', 'updat', 'menageri', 'welcom', 'new', 'featur', 'ranger', 'anyway'], ['caught', 'lunch', 'today', 'correct', 'stalk'], ['happi', 'mother', 'day', 'xx'], ['revis', 'continu', 'get', 'bore', 'tire', 'not', 'wait', 'get', 'interest', 'thing', 'week', 'half', 'left', 'though'], ['dan', 'public', 'transport', 'decid', 'everyth', 'north', 'london', 'utter', 'crap', 'southern', 'train', 'alright'], ['hear', 'lot', 'good', 'thing', 'new', 'trek', 'movi', 'see', 'dad', 'quot', 'fellow', 'treki', 'quot', 'would', 'like', 'see'], ['thank', 'agre'], ['happi', 'mother', 'day', 'strong', 'hard', 'work', 'mother', 'may', 'god', 'bless', 'famili'], ['fab', 'eh', 'feel', 'free', 'come', 'along', 'chat', 'drink', 'luigi', 'tomorrow'], ['well', 'thank', 'tri', 'rememb', 'put', 'somewher'], ['peopl', 'england', 'watch', 'one', 'thankyou'], ['avid', 'fan', 'playboy', 'magazin', 'love', 'magazin'], ['watch', 'live', 'near', 'excit', 'race'], ['happi', 'mother', 'day', 'mom'], ['better', 'believ', 'would', 'not', 'miss', 'world'], ['look', 'forward', 'ever', 'write', 'thing', 'misanthrop', 'must', 'peac', 'w', 'human', 'well'], ['stupid', 'alarm', 'lol', 'morn', 'twiit'], ['hope', 'happi', 'mother', 'day'], ['loov'], ['mm', 'noth', 'lucki', 'got', 'great', 'friend', 'like', 'cheer'], ['right', 'shower', 'littl', 'treasur', 'ill', 'see', 'later'], ['hour', 'til', 'plane', 'ahh', 'yay'], ['last', 'night', 'bad', 'guy', 'tri', 'enter', 'garden', 'alon', 'realli', 'got', 'scare', 'feel', 'realli', 'stupid', 'not', 'funni'], ['alway', 'bit', 'smug', 'denial', 'stuff', 'pretti', 'spectacular'], ['smell', 'cigarett', 'alcohol', 'least', 'like'], ['sweet', 'someth', 'new', 'show'], ['hid', 'passport', 'pant', 'genius'], ['happi', 'mother', 'day', 'favorit', 'mom'], ['agfest', 'pretti', 'awesom', 'load', 'peopl', 'lol'], ['thank', 'becam', 'ibm', 'master', 'inventor', 'realli', 'enjoy', 'blog', 'particular', 'vegan', 'tag'], ['gm', 'tweeter', 'happi', 'mother', 'day', 'mother', 'pretend', 'mother'], ['great', 'talk', 'toni', 'afternoon', 'go', 'give', 'anoth', 'go'], ['us', 'tweep', 'not', 'forget', 'call', 'mom', 'today'], ['happi', 'mother', 'day', 'gt', 'gt', 'gt', 'rose'], ['cool', 'nice', 'bless', 'ya', 'upto', 'love', 'l', 'xoxox'], ['happyy', 'mothersdayi', 'mummi', 'best'], ['mood', 'way', 'much', 'fun', 'lol', 'love', 'danc', 'techno', 'lt', 'amp', 'amp', 'set', 'back', 'lt', 'gnite'], ['europ', 'sound', 'finish', 'exam', 'teus', 'talk'], ['happi', 'mother', 'day', 'mom'], ['right', 'make', 'compromis', 'kill', 'us'], ['ahh', 'sunshin', 'delet', 'spam', 'email', 'day', 'bbq', 'sun', 'wonder'], ['ah', 'midday', 'great', 'time', 'breakfast'], ['haha', 'head', 'bigger', 'awwh', 'lol'], ['quot', 'said', 'quot', 'darl', 'happen', 'fall', 'asleep', 'carri', 'home', 'cuz', 'know', 'not', 'quot', 'quot', 'goodnight', 'twittererer'], ['haha', 'like', 'go'], ['love', 'degre', 'right', 'amaz', 'enjoy', 'melt', 'vega', 'l'], ['mother', 'day', 'drama', 'awesom'], ['happi', 'mother', 'day', 'mother', 'happi', 'mother', 'day', 'mother', 'miss', 'mom'], ['hehe', 'thank', 'advic', 'choos', 'shoe', 'three', 'hard'], ['nice', 'r', 'plan', 'oh', 'n', 'happi', 'mother', 'day', 'happen', 'b', 'mother'], ['sunday', 'morn', 'realis', 'film', 'snob', 'said', 'msn', 'entertain'], ['thank'], ['know', 'great', 'climb', 'soo', 'good'], ['chillax', 'hyde', 'park'], ['love', 'sunday', 'especi', 'still', 'pj', 'plan', 'get', 'time', 'soon'], ['sound', 'good'], ['awesom', 'look', 'sourc', 'well'], ['helloo', 'scene', 'peopl'], ['good', 'morn', 'people', 'look', 'like', 'go', 'nice', 'day', 'today', 'better', 'last', 'week', 'rain'], ['bought', 'ludi', 'rug', 'dog', 'best'], ['english', 'broken'], ['happi', 'mother', 'day'], ['good', 'role', 'model', 'like', 'yinz', 'think'], ['good', 'manag', 'turn', 'studio', 'envi', 'product'], ['congrad', 'shower', 'sound', 'like', 'fun', 'upcom', 'quot', 'jump', 'audienc', 'quot', 'wd', 'love', 'join'], ['excel', 'got', 'name', 'yet', 'not', 'forget', 'twitpic'], ['love', 'hairss'], ['local', 'coffeeshop', 'sold', 'shitti', 'stuff', 'last', 'time', 'quit'], ['would', 'not', 'call', 'cool', 'danger', 'reckon', 'fit', 'stupid', 'categori'], ['happi', 'mother', 'day', 'mum'], ['nah', 'realli', 'gradual', 'ptfe', 'tape', 'goe', 'mm', 'time', 'year', 'love', 'x'], ['good', 'morn', 'hun', 'promis', 'glad', 'like', 'love', 'day'], ['got', 'follow', 'go', 'look', 'forward'], ['headach', 'gone', 'thank', 'god', 'time', 'tea', 'think'], ['yay', 'nekkid', 'write', 'work', 'keep', 'warm', 'awe', 'alway', 'cactus', 'good', 'luck'], ['happi', 'mother', 'day', 'mum', 'also', 'sis', 'quot', 'mum', 'quot', 'jess', 'ahah'], ['heao', 'keen', 'next', 'weekend', 'mummi', 'lt'], ['thank', 'new', 'follow'], ['like', 'idea', 'elimin', 'bludger', 'beater', 'tackl', 'peopl', 'make', 'near', 'danger', 'book', 'quidditch'], ['kickoff', 'red', 'car', 'hope'], ['chang', 'mind', 'dammit', 'tsar', 'chang', 'mind', 'time', 'without', 'prior', 'notic'], ['fear', 'crept', 'alreadi', 'dismiss', 'let', 'thing', 'right', 'coz', 'time', 'feel', 'differ'], ['morn', 'final', 'got', 'stream', 'media', 'pc', 'via', 'wireless', 'router', 'much', 'easier', 'use', 'usb', 'dongl', 'ah', 'techi', 'simplic'], ['wish', 'birthday', 'massacr', 'would', 'come', 'australia', 'think', 'said', 'think', 'though'], ['great', 'time', 'celebr', 'mother', 'day', 'mom', 'best', 'job', 'earth'], ['almost', 'almost', 'thank', 'quot', 'good', 'save', 'quot', 'z'], ['juz', 'donat', 'chariti', 'not', 'feel', 'good', 'gave', 'good', 'workout', 'heavi', 'lift'], ['happi', 'birthday'], ['defo', 'not', 'wait', 'nice', 'afternoon', 'music'], ['tell', 'pete', 'look', 'sexi', 'beard'], ['sociolog', 'done', 'english', 'biolog', 'left', 'go', 'die'], ['realli', 'help', 'swear', 'lot', 'realiz', 'haha'], ['happi', 'hear', 'feel', 'fine'], ['firefli', 'weekend', 'scifi', 'channel', 'happi', 'man'], ['yes', 'sound', 'like', 'great', 'idea', 'messag', 'lj'], ['rt', 'entertain', 'night', 'bring', 'favourit', 'way', 'enjoy', 'music', 'togeth'], ['celebr', 'mother', 'day', 'appl', 'pie'], ['happi', 'mother', 'day', 'ladi', 'hope', 'wonder', 'day'], ['actual', 'also', 'thought', 'mother', 'day', 'may', 'rememb', 'pentecost', 'useless', 'complic', 'would', 'say'], ['hahah', 'seem', 'think', 'similar', 'way'], ['smile', 'everyth', 'work'], ['hello', 'yup', 'sure', 'xx'], ['sensat', 'ocean', 'white', 'portug', 'absolut', 'amaz', 'adoreii'], ['happi', 'mother', 'day', 'god', 'bless', 'amp', 'mother', 'worldwid', 'mother', 'natur', 'technolog', 'emot', 'motion'], ['happi', 'mother', 'day'], ['glad', 'not', 'uni', 'anymor'], ['say', 'gud', 'eve', 'guy', 'let', 'us', 'play', 'poker', 'facebook', 'yeah', 'not', 'read', 'poker', 'face'], ['son', 'captur', 'god', 'littl', 'girl'], ['made', 'card', 'mom', 'not', 'wait', 'see', 'smile', 'face', 'see'], ['would', 'love', 'hear', 'nokia', 'perspect'], ['think', 'recent', 'job', 'opportun', 'hope', 'get', 'one', 'gettng', 'readi', 'church'], ['littl', 'late', 'congratul', 'leah', 'happi', 'mother', 'day'], ['sensat', 'ocean', 'white', 'portug', 'absolut', 'amaz', 'adoreii'], ['obama', 'last', 'night', 'quot', 'cover', 'vote', 'apolog', 'fox', 'quot'], ['inde', 'live', 'life', 'edg', 'thing', 'one', 'foot', 'foul', 'law'], ['well', 'put', 'good', 'brother', 'fine', 'form'], ['never', 'late', 'need', 'buck', 'idea', 'stop', 'bunch', 'stuffi', 'old', 'reactionari'], ['string', 'dress', 'work', 'track', 'pleas', 'come', 'biggest', 'fan'], ['greet', 'happi', 'mother', 'day'], ['oh', 'realli', 'good', 'dude', 'thank', 'ad'], ['omg', 'luat', 'examenul', 'la', 'spss', 'happi'], ['read', 'cool', 'definit', 'get', 'one'], ['great', 'day', 'rain', 'keep', 'may', 'go', 'swim', 'instead', 'dine'], ['could', 'use', 'garageband', 'though', 'probabl', 'overkil'], ['answer', 'realli', 'cool', 'question'], ['love'], ['realli', 'bore', 'today', 'ate', 'bowl', 'ful', 'rasberri', 'grape', 'wait', 'dinner'], ['happi', 'mother', 'day'], ['happi', 'mother', 'day', 'everyon'], ['assign', 'actual', 'look', 'pretti', 'glad', 'chang', 'topic', 'last', 'minut'], ['thanki', 'pictur', 'soon', 'wash', 'love', 'good', 'satde', 'xx'], ['like', 'mr', 'piggl', 'mean', 'pickl'], ['thank', 'make', 'laugh'], ['haha', 'earli'], ['love', 'guy', 'get', 'ass', 'australia', 'decemb', 'birthday'], ['happi', 'mother', 'day', 'good', 'day'], ['two', 'favourit', 'convers', 'guy'], ['happi', 'mother', 'day', 'allergi', 'gay', 'oh', 'hope', 'miller', 'better', 'day'], ['hit', 'school', 'tomorrow', 'ahaha', 'stay', 'til', 'think', 'xx'], ['happi', 'mother', 'day', 'mother', 'grandmoth', 'furbabi', 'mommi', 'etc', 'head', 'breakfast', 'mom', 'short'], ['love', 'read', 'love', 'film', 'make'], ['hey', 'negat', 'primatech', 'handl', 'tube', 'decad', 'longer', 'hero'], ['haha', 'twitter', 'hard', 'though', 'not'], ['thank', 'follow', 'man'], ['sure', 'care', 'also', 'make', 'statement', 'not', 'parallel', 'idea', 'happen', 'seen'], ['happi', 'mother', 'day', 'twitter', 'mom', 'includ'], ['goodnight', 'everyon', 'happi', 'mother', 'day', 'mother'], ['happi', 'mother', 'day', 'mom'], ['oh', 'rock', 'horni'], ['whaattaatt', 'good', 'cook', 'realli', 'creativ', 'silli', 'sierra'], ['dap', 'best', 'lol'], ['pleas', 'come', 'onlin', 'hope', 'amaz', 'weekend'], ['unfortunatelli', 'norway', 'big', 'famili', 'happen', 'therefor', 'need', 'old', 'hit'], ['today', 'interest'], ['town', 'mother', 'nice', 'amp', 'sunni'], ['good', 'parti', 'last', 'night', 'although', 'extrem', 'tire', 'xd', 'bed', 'loung', 'around', 'watch', 'tv', 'sleep', 'day'], ['wow', 'coffe', 'hand', 'alreadi', 'outsid', 'peac', 'sunday', 'morn'], ['happi', 'mother', 'day', 'mum', 'love', 'lot', 'month', 'day', 'go', 'month', 'go', 'bbi', 'love', 'bash'], ['watch', 'wolverin', 'yesterday', 'spur', 'moment', 'kind', 'thing', 'awesom', 'proud', 'south', 'african', 'director'], ['sunset', 'view', 'beauti', 'room'], ['well', 'thank', 'import'], ['happi', 'birthday'], ['good', 'luck', 'chan', 'gue', 'kmrn', 'bawa', 'backpack', 'kosong', 'quit', 'help'], ['good', 'nation', 'formula', 'one', 'one', 'hour'], ['pretti', 'ladi', 'happi', 'mother', 'day', 'mother', 'futur'], ['bloodi', 'fed', 'lost', 'last', 'statement', 'r', 'hound', 'anoth', 'one', 'dodg', 'one', 'last', 'week'], ['awesom', 'get'], ['sit', 'go', 'home', 'week', 'not', 'wait', 'see', 'famili'], ['good', 'luck', 'auction'], ['go', 'watch', 'boy', 'stripe', 'pj', 'hope', 'not', 'cri'], ['gave', 'bike', 'thorough', 'wash', 'degreas', 'greas', 'think', 'realli', 'good', 'job'], ['amaz', 'time', 'last', 'night', 'mcfli', 'incred'], ['oo', 'show', 'french', 'skill', 'lol', 'thing', 'good', 'love', 'weather', 'outsid'], ['succes', 'follow', 'tayla'], ['happi', 'mother', 'day', 'love'], ['happi', 'mother', 'day', 'mommi', 'woman', 'man', 'long', 'someon', 'day']]
[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]

Positive/Negative Frequency¶

  • Corpus of tweet tokens used for the first method
In [74]:
corpus = [["i", "love", "nlp"],
          ["i", "miss", "you"],
          ["i", "love", "you"],
          ["you", "are", "happy", "to", "learn"],
          ["i", "lost", "my", "computer"],
          ["i", "am", "so", "sad"]]

sentiment = [1, 0, 1, 1, 0, 0]
  • Create a build_freqs function used to build a dictionnary with the word and sentiment as index and the count of occurence as value
Word Positive Negative
love dict[(love, 1)] dict[(love, 0)]
lost dict[(lost, 1)] dict[(lost, 0)]
happy dict[(happy, 1)] dict[(happy, 0)]
In [75]:
def build_freqs(tweet_list, sentiment_list):
  freqs = {}
  for tweet, sentiment in zip(tweet_list, sentiment_list):
    for word in tweet:
      pair = (word, sentiment)
      if pair in freqs:
        freqs[pair] += 1
      else:
        freqs[pair] = 1
  return freqs
  • Build the frequency dictionnary on the corpus by using the function
In [76]:
freqs = build_freqs(corpus, sentiment)
In [77]:
print(freqs)
{('i', 1): 2, ('love', 1): 2, ('nlp', 1): 1, ('i', 0): 3, ('miss', 0): 1, ('you', 0): 1, ('you', 1): 2, ('are', 1): 1, ('happy', 1): 1, ('to', 1): 1, ('learn', 1): 1, ('lost', 0): 1, ('my', 0): 1, ('computer', 0): 1, ('am', 0): 1, ('so', 0): 1, ('sad', 0): 1}
  • Build the frequency dictionnary on the entire dataset by using the function
In [78]:
freqs_all = build_freqs(X, y)
In [79]:
print("Frequency of word 'love' in + tweets: {}".format(freqs_all[("love", 1)]))
print("Frequency of word 'love' in - tweets: {}".format(freqs_all[("love", 0)]))
Frequency of word 'love' in + tweets: 1358
Frequency of word 'love' in - tweets: 67
  • Create a tweet_to_freqs function used to convert tweets to a 2-d array by using the frequency dictionnary
In [80]:
def tweet_to_freq(tweet, freqs):
  x = np.zeros((2,))
  for word in tweet:
    if (word, 1) in freqs:
      x[0] += freqs[(word, 1)]
    if (word, 0) in freqs:
      x[1] += freqs[(word, 0)]
  return x
  • Print the 2-d vector by using the tweet_to_freqs function and the corpus dictionnary
In [81]:
print(tweet_to_freq(["i", "love", "nlp"], freqs))
[5. 3.]
  • Print the 2-d vector by using the tweet_to_freqs function and the dataset dictionnary
In [82]:
print(tweet_to_freq(["i", "love", "nlp"], freqs_all))
[1358.   67.]
  • Plot word vectors in a chart and see where they locate
In [83]:
fig, ax = plt.subplots(figsize = (8, 8))

word1 = "happi"
word2 = "sad"

def word_features(word, freqs):
  x = np.zeros((2,))
  if (word, 1) in freqs:
    x[0] = np.log(freqs[(word, 1)] + 1)
  if (word, 0) in freqs:
    x[1] = np.log(freqs[(word, 0)] + 1)
  return x

x_axis = [word_features(word, freqs_all)[0] for word in [word1, word2]]
y_axis = [word_features(word, freqs_all)[1] for word in [word1, word2]]

ax.scatter(x_axis, y_axis)  

plt.xlabel("Log Positive count")
plt.ylabel("Log Negative count")

ax.plot([0, 9], [0, 9], color = 'red')
plt.text(x_axis[0], y_axis[0], word1)
plt.text(x_axis[1], y_axis[1], word2)
plt.show()

3.3 Bag of Word¶

  • Corpus of tweet tokens used for the second method
In [84]:
corpus = [["love", "nlp"],
          ["miss", "you"],
          ["hate", "hate", "hate", "love"],
          ["happy", "love", "hate"],
          ["i", "lost", "my", "computer"],
          ["i", "am", "so", "sad"]]
  • Import countVectorizer from the Scikit-learn library
In [85]:
#pip install sklearn
In [86]:
from sklearn.feature_extraction.text import CountVectorizer
  • Create a fit_cv function used to build the Bag-of-words vectorizer with the corpus
In [87]:
def fit_cv(tweet_corpus):
    cv_vect = CountVectorizer(tokenizer=lambda x: x,
                             preprocessor=lambda x: x)
    cv_vect.fit(tweet_corpus)
    return cv_vect
  • Use the fit_cv function to fit the vectorizer on the corpus
In [88]:
cv_vect = fit_cv(corpus)
C:\Users\Administrator\anaconda3\lib\site-packages\sklearn\feature_extraction\text.py:524: UserWarning: The parameter 'token_pattern' will not be used since 'tokenizer' is not None'
  warnings.warn(
  • Get the vectorizer features (matrix columns)
In [89]:
ft = cv_vect.get_feature_names_out()
In [90]:
print("There are {} features in this corpus".format(len(ft)))
print(ft)
There are 13 features in this corpus
['am' 'computer' 'happy' 'hate' 'i' 'lost' 'love' 'miss' 'my' 'nlp' 'sad'
 'so' 'you']
  • Convert the corpus to a matrix by using the vectorize
In [91]:
cv_mtx = cv_vect.transform(corpus)
  • Print the matrix shape
In [92]:
print("Matrix shape is: {}".format(cv_mtx.shape))
Matrix shape is: (6, 13)
  • Convert the matrix to an array
In [93]:
cv_mtx.toarray()
Out[93]:
array([[0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0],
       [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1],
       [0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0],
       [0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0],
       [0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0],
       [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0]], dtype=int64)
  • Transform a new tweet by using the vectorizer
In [94]:
new_tweet = [["lost", "lost", "miss", "miss"]]
cv_vect.transform(new_tweet).toarray()
Out[94]:
array([[0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0]], dtype=int64)
In [95]:
unknown_tweet = [["John", "drives", "cars"]]
cv_vect.transform(unknown_tweet).toarray()
Out[95]:
array([[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]], dtype=int64)

Term Frequency - Inverse Document Frequency (TF-IDF)¶

  • Corpus of tweet tokens used for the third method
In [96]:
corpus = [["love", "nlp"],
          ["miss", "you"],
          ["hate", "hate", "hate", "love"],
          ["happy", "love", "hate"],
          ["i", "lost", "my", "computer"],
          ["i", "am", "so", "sad"]]
  • Import IfidfVectorizer from the scikit-learn Library
In [97]:
from sklearn.feature_extraction.text import TfidfVectorizer
  • Create a fit_tfidf function used to build the TF-IDF vectorizer with the corpus
In [98]:
def fit_tfidf(tweet_corpus):
    tf_vect = TfidfVectorizer(preprocessor=lambda x: x,
                             tokenizer=lambda x: x)
    tf_vect.fit(tweet_corpus)
    return tf_vect
  • Use the fit_cv function to fit the vectorizer on the corpus, and transform the corpus
In [99]:
tf_vect = fit_tfidf(corpus)
tf_mtx = tf_vect.transform(corpus)
  • Get the vectorizer features (matrix columns)
In [100]:
tf = tf_vect.get_feature_names_out()
In [101]:
print("There are {} features in this corpus".format(len(ft)))
print(ft)
There are 13 features in this corpus
['am' 'computer' 'happy' 'hate' 'i' 'lost' 'love' 'miss' 'my' 'nlp' 'sad'
 'so' 'you']
  • Print the matrix shape
In [102]:
print(tf_mtx.shape)
(6, 13)
  • Convert the matrix to an array
In [103]:
tf_mtx.toarray()
Out[103]:
array([[0.        , 0.        , 0.        , 0.        , 0.        ,
        0.        , 0.56921261, 0.        , 0.        , 0.82219037,
        0.        , 0.        , 0.        ],
       [0.        , 0.        , 0.        , 0.        , 0.        ,
        0.        , 0.        , 0.70710678, 0.        , 0.        ,
        0.        , 0.        , 0.70710678],
       [0.        , 0.        , 0.        , 0.96260755, 0.        ,
        0.        , 0.27089981, 0.        , 0.        , 0.        ,
        0.        , 0.        , 0.        ],
       [0.        , 0.        , 0.68172171, 0.55902156, 0.        ,
        0.        , 0.47196441, 0.        , 0.        , 0.        ,
        0.        , 0.        , 0.        ],
       [0.        , 0.52182349, 0.        , 0.        , 0.42790272,
        0.52182349, 0.        , 0.        , 0.52182349, 0.        ,
        0.        , 0.        , 0.        ],
       [0.52182349, 0.        , 0.        , 0.        , 0.42790272,
        0.        , 0.        , 0.        , 0.        , 0.        ,
        0.52182349, 0.52182349, 0.        ]])
  • Transform a new tweet by using the vectorizer
In [104]:
new_tweet = [["I", "hate", "nlp"]]
tf_vect.transform(new_tweet).toarray()
Out[104]:
array([[0.        , 0.        , 0.        , 0.6340862 , 0.        ,
        0.        , 0.        , 0.        , 0.        , 0.77326237,
        0.        , 0.        , 0.        ]])

SENTIMENT MODEL¶

Logistic Regression - Use of logistic function to model a binary dependant variable. delta t = 1/ 1+ exponential -t. Result above 50% Positive prediction, result below 50% negative

  • Helper function This function is used to plot the confusion matrix for the different models to be created
In [105]:
import seaborn as sn

def plot_confusion(cm):
    plt.figure(figsize = (5,5))
    sn.heatmap(cm, annot=True, cmap="Blues", fmt='0f')
    plt.xlabel("prediction")
    plt.ylabel("True value")
    plt.title("Confusion Matix")
    return sn

Train/Test Split¶

  • Check what x and y looks like
In [106]:
print(X)
print(y)
[['layin', 'n', 'bed', 'headach', 'call'], ['funer', 'friday'], ['want', 'hang', 'friend', 'soon'], ['not', 'go', 'prom', 'bf', 'not', 'like', 'friend'], ['hmm'], ['charlen', 'love', 'miss'], ['sorri', 'least', 'friday'], ['choke', 'retain'], ['ugh', 'beat', 'stupid', 'song', 'get', 'next', 'rude'], ['watch', 'hill', 'london', 'realis', 'tourtur', 'week', 'week', 'late', 'watch', 'itonlinelol'], ['sleepi', 'not', 'even', 'late', 'fail'], ['ladi', 'gaga', 'tweet', 'not', 'impress', 'video', 'leak', 'know'], ['convinc', 'alway', 'want', 'signal', 'give', 'think', 'lost', 'anoth', 'friend'], ['way', 'home', 'n', 'deal', 'w', 'underag', 'girl', 'drink', 'gin', 'da', 'bus', 'talk', 'bout', 'feel', 'old'], ['sorri', 'peopl', 'rude', 'isaac', 'get', 'manner', 'know', 'better', 'lewd'], ['damm', 'server', 'still', 'need', 'hit', 'koxper', 'pass'], ['fudg', 'bs', 'whole', 'paper', 'tire', 'ugh', 'hate', 'school', 'time', 'sleep'], ['hate', 'cancer', 'hate', 'hate', 'hate'], ['annoy', 'start', 'type', 'comput', 'middl', 'night'], ['not', 'sleep'], ['miss', 'bl', 'bus'], ['yeah', 'feel', 'funni', 'not', 'slept', 'enough', 'woke', 'mum', 'sing', 'not', 'impress'], ['mm', 'much', 'better', 'day', 'far', 'still', 'quit', 'earli', 'last', 'day', 'ud'], ['lt', 'go', 'first', 'twitter', 'amaz', 'lol', 'come', 'canada', 'would', 'anyth', 'see', 'perform'], ['pick', 'blackberri', 'middl', 'street', 'crush'], ['bed', 'time', 'hope', 'go', 'school', 'tomorrow', 'though', 'not', 'feel', 'well', 'right'], ['well', 'hope', 'could', 'learn', 'stuff', 'not', 'work', 'separ', 'thing', 'also'], ['problem', 'photo', 'twitter', 'not', 'see', 'face'], ['chocol', 'milk', 'much', 'better', 'straw', 'lack', 'said', 'straw'], ['tire'], ['way', 'damn', 'suck', 'b', 'ok'], ['suck', 'not', 'abl', 'take', 'day', 'work', 'money', 'take', 'trip', 'sad'], ['today', 'good', 'sara', 'strep', 'thought', 'angelina', 'share', 'water', 'told', 'prob', 'get'], ['haha', 'poor', 'abi', 'still', 'get', 'sore'], ['want', 'buy', 'great', 'album', 'unfortun', 'not', 'hav', 'enuff', 'fund', 'quot', 'long', 'time', 'noisi', 'quot'], ['ok', 'passeng', 'one', 'aliv', 'dead', 'not', 'know', 'til', 'end', 'cri'], ['ia', 'much', 'not', 'realli', 'happi', 'cook', 'choic', 'singl'], ['woman', 'transfer', 'first', 'impress', 'onto', 'less', 'man', 'weak'], ['brother', 'bloom', 'not', 'open', 'weekend', 'el', 'paso', 'buy', 'brick', 'enjoy', 'watch', 'brother', 'bloom'], ['say', 'miss', 'plurk'], ['bitten', 'blood', 'cat', 'way', 'rabi', 'bacterin', 'seem', 'shot', 'month', 'never', 'wash', 'cat', 'home', 'hate', 'water'], ['sad', 'shin', 'ae', 'got', 'not', 'alex'], ['sure', 'tweet', 'back', 'news', 'abuzz', 'tr', 'knight', 'leav', 'quot', 'confirm', 'quot', 'today', 'muy', 'trist'], ['dammit', 'hulu', 'desktop', 'total', 'screw', 'abil', 'talk', 'particular', 'port', 'one', 'dev', 'server', 'not', 'watch', 'code'], ['jealous', 'mom', 'talk', 'want', 'see', 'twitter', 'make', 'miss'], ['go', 'sweetheart'], ['freak', 'difficult', 'get', 'spellcheck', 'shit', 'would', 'settl', 'offic', 'suit', 'one', 'stupid', 'unhelp', 'window'], ['last', 'one', 'month', 'due', 'summer', 'strawberri', 'not', 'availbl', 'chennai', 'market'], ['correct', 'ador', 'pluck', 'put', 'arm', 'cuz', 'cryin', 'better', 'hahaha'], ['feel', 'sad', 'coz', 'not', 'abl', 'play', 'guy'], ['cayogi', 'want', 'come', 'bz', 'summer', 'not', 'sure', 'anymor', 'teacher', 'life', 'summer', 'suck'], ['first', 'ever', 'drop', 'call', 'mobil', 'call', 'less', 'charg', 'data', 'even', 'though', 'data', 'pack'], ['win', 'sigh', 'rakeem'], ['websit', 'gave', 'virus', 'open', 'window', 'kept', 'pop'], ['ahh', 'big', 'scari', 'bug', 'fli', 'around', 'room'], ['wish', 'knew', 'put', 'stole', 'heart', 'never', 'gave', 'occasion', 'like', 'like', 'look'], ['nasti', 'cough', 'not', 'sick', 'huge', 'weekend', 'ahead'], ['stone', 'cold', 'crazi'], ['tire'], ['second', 'wish', 'rain'], ['feel', 'deflat', 'ugh', 'dog'], ['allergi', 'suck', 'duck', 'nut', 'lt', 'gt'], ['well', 'almost', 'good', 'day', 'guess', 'retri', 'tomorrow'], ['sound', 'good', 'appreci', 'suggest', 'week', 'still', 'offlin', 'time', 'ask', 'refund'], ['youstinkatrespondingtotext'], ['miser', 'feel', 'like', 'gona', 'cri', 'suck'], ['well', 'ran', 'beer', 'left', 'not', 'sure', 'eta', 'wait', 'wait', 'wait', 'bleh', 'go', 'long', 'nite', 'methink'], ['nose', 'stud', 'fell', 'not', 'find', 'look', 'like', 'head', 'amsterdam', 'today', 'get', 'new', 'one'], ['clair', 'love', 'show', 'got', 'offic', 'radio'], ['sigh', 'go', 'bed', 'not', 'feel', 'right', 'anymor'], ['depress', 'watch', 'think', 'danc'], ['cross', 'stuck', 'twiddl', 'thumb', 'ugh'], ['not', 'sleep', 'sore', 'move'], ['awe', 'miss', 'babi'], ['answer', 'never', 'learn', 'write', 'basic'], ['rip', 'leonardo', 'great', 'mini', 'fiddler', 'crab'], ['last', 'day', 'work', 'uni', 'today', 'sad', 'time'], ['thank', 'neemah', 'go', 'soo', 'close', 'izzi', 'yet', 'far'], ['head', 'hurt', 'bad', 'could', 'scream'], ['new', 'work', 'well', 'challeng', 'not', 'go', 'well', 'commit', 'not', 'check', 'email', 'pm', 'fail', 'first', 'day', 'twice'], ['new', 'blog', 'post', 'blog', 'auto', 'insuran', 'found', 'auto', 'insur', 'polici', 'expir', 'careless', 'meanw'], ['not', 'hate', 'finish', 'work', 'still', 'hour', 'left', 'work', 'time'], ['still', 'miss', 'husband', 'realli', 'want', 'home'], ['miss', 'puppi'], ['not', 'get', 'memo', 'look', 'amaz'], ['given', 'pizza', 'kid', 'would', 'never', 'let', 'fav', 'hot', 'one'], ['yearl', 'pet', 'home', 'die', 'sad', 'whole', 'famili'], ['feel', 'sad', 'reason'], ['upload', 'new', 'blog', 'pain', 'stori', 'year', 'old', 'man', 'cri', 'want', 'die', 'sad'], ['addict', 'kind', 'curs', 'night', 'time', 'everytim', 'one', 'feel', 'like', 'make', 'music', 'afterward'], ['headach', 'go', 'bed', 'goodnight'], ['get', 'california', 'vintag', 'ahahah', 'best', 'dress', 'want', 'not', 'ebay'], ['took', 'shift', 'tomorrow', 'not', 'realli', 'feel', 'like', 'work', 'right'], ['money', 'phone'], ['day', 'readi', 'visit', 'torchwood', 'see', 'heard', 'anyth'], ['bris', 'not', 'hear', 'thunder'], ['bad', 'red', 'devil', 'disappoint', 'say', 'least'], ['not', 'fast', 'enough', 'ssd', 'iop', 'hpt', 'might', 'tri', 'adaptec'], ['da', 'heck', 'garag', 'man', 'get', 'ask'], ['ate', 'mandi', 'pleas', 'forgiv', 'realli', 'sorri', 'not', 'want', 'lose', 'bff'], ['umm', 'yeah', 'probabl', 'pretti', 'good', 'note', 'self', 'eeww'], ['plane', 'ticket', 'expens'], ['need', 'job', 'bad'], ['daammnn', 'wish'], ['nite', 'n', 'bore', 'oppos', 'almost', 'sleep', 'frm', 'b'], ['happi', 'birthdayi', 'hope', 'awesom', 'day', 'not', 'see', 'next', 'last', 'night'], ['would', 'wish', 'sever', 'migrain', 'would', 'stop', 'doc', 'prescript', 'not', 'work'], ['miss', 'game'], ['cuz', 'airlin', 'super', 'lame'], ['still', 'piti', 'come', 'lamb', 'though'], ['sorri', 'hear', 'optimist', 'thing', 'get', 'better', 'us'], ['done', 'paint', 'bedroom', 'furnitur', 'still', 'tabl', 'wait', 'move', 'uggh', 'move', 'heat'], ['insomnia'], ['peopl', 'hous', 'not', 'know', 'close', 'door'], ['amp', 'soo', 'hungri'], ['not', 'like', 'possibl', 'left', 'side', 'brain', 'hurt', 'thing', 'call', 'vp', 'shunt', 'possibl', 'death'], ['hear', 'helicopt', 'fli', 'hous', 'kind', 'weird', 'news', 'headach', 'back', 'boo'], ['think', 'vog', 'make', 'sicker', 'think', 'feel', 'slight', 'achi'], ['homework', 'suck', 'big', 'time', 'math', 'worst'], ['never', 'start'], ['loov', 'guitar', 'play', 'think', 'sound', 'magnific', 'better'], ['not', 'cri', 'lol'], ['hate', 'new', 'mt', 'dew', 'one', 'giant', 'scare', 'gross', 'time'], ['aw', 'not', 'let', 'secret'], ['transport', 'church', 'not', 'make', 'crush', 'oh', 'well', 'time', 'assign', 'suppos', 'throat', 'realli', 'hurt'], ['hate', 'see', 'pregnant', 'women', 'smokingg', 'soo', 'irrespons', 'n', 'selfish', 'saad', 'ultim', 'babi', 'one', 'suffer'], ['not', 'avoid', 'lie'], ['piss', 'not', 'let', 'follow', 'ericka'], ['close', 'spot', 'late'], ['not', 'seen', 'muffin', 'two', 'whole', 'day'], ['miss', 'back', 'give', 'regard'], ['admit', 'bit', 'bum', 'not', 'friend', 'walk', 'today'], ['girl', 'blunt', 'soo', 'thought', 'right', 'absolut', 'great', 'day', 'home'], ['twitter', 'hack'], ['found', 'mj', 'mous', 'flat', 'djs', 'cours', 'none', 'left', 'size'], ['hahaha', 'well', 'tri', 'ugli'], ['not', 'even', 'want', 'know', 'know', 'vhemt', 'not', 'go', 'would', 'miss'], ['awesom', 'weekend', 'not', 'go', 'move', 'sat', 'lot', 'fun', 'though'], ['pm', 'need', 'beup', 'earli', 'set', 'garag', 'sale', 'start', 'wish', 'said', 'beat'], ['kno', 'doo', 'partyin'], ['go', 'sleep', 'go', 'fall', 'asleep', 'play', 'app', 'tomorrow', 'go', 'suck'], ['hate', 'bf', 'beat', 'da', 'dog', 'guess', 'way', 'teach', 'pitt'], ['sprain', 'ankl', 'like', 'realli', 'bad', 'tore', 'stuff', 'hurt', 'birthday', 'weekend'], ['think', 'may', 'broke', 'toe', 'bar', 'drunk', 'girl', 'steppin'], ['diabet', 'dad', 'amp', 'might', 'not', 'sure', 'still', 'allow', 'eat', 'sugar', 'throughout', 'day'], ['scari', 'lightn', 'thunder', 'glad', 'go', 'sleep', 'hope', 'not', 'late', 'school', 'tomorow', 'haha'], ['teeth', 'head', 'hurt'], ['hang', 'sam', 'billi', 'veronica', 'not', 'go', 'school', 'tomorrow', 'take', 'sam', 'bodi', 'shop', 'dang', 'car', 'accid'], ['arrest', 'develop', 'sad'], ['wick', 'time', 'leav', 'come', 'not', 'stay', 'night'], ['feel', 'deflat', 'doggi'], ['got', 'home', 'not', 'want', 'read', 'last', 'chaper', 'break', 'dawn', 'not', 'want'], ['manual', 'process', 'take', 'outlook', 'databas', 'pff', 'crappi', 'msft', 'product'], ['alo', 'sad', 'quiet', 'empti', 'tonight'], ['hahahaha', 'not', 'horribl', 'other', 'sing', 'sure', 'could', 'work', 'wish', 'could', 'afford', 'drum', 'set'], ['cystic', 'lacrim', 'infectect', 'eye', 'face', 'swollen', 'hurt'], ['oh', 'nevermind', 'think', 'thing', 'unsalvag'], ['sad', 'christian', 'lacroix', 'file', 'bankruptci'], ['not', 'feel', 'good', 'fuckk'], ['ohh', 'poor', 'girl', 'email', 'reli', 'octob', 'mr'], ['bad', 'time'], ['aarrgghh', 'fu', 'hose', 'leak', 'water', 'new', 'float', 'floor'], ['go', 'dread', 'dmv', 'tomorrow'], ['puppi', 'gizmo', 'haha', 'still', 'growl', 'alway', 'look', 'back', 'long', 'prupl', 'scar', 'fingi'], ['yeah', 'plus', 'littl', 'far', 'walk', 'pinocchio', 'sushi'], ['feel', 'deflat', 'doggi'], ['found', 'book', 'start', 'real', 'journal', 'tonight', 'annoy', 'zit', 'lip', 'make', 'look', 'like', 'herp'], ['feel', 'bad', 'got', 'bad', 'news', 'mum'], ['damn', 'girl', 'ya', 'got', 'let', 'know', 'get', 'kit', 'togeth', 'amp', 'got', 'flyer', 'next', 'weekend', 'quot'], ['dbl', 'boo', 'sick', 'flippin', 'blow', 'bahaha', 'kno', 'not', 'mani', 'friend', 'either', 'feel', 'lame', 'haha'], ['feel', 'sick', 'stomach', 'idkk', 'whyy'], ['count', 'hour', 'lost', 'sunshin', 'weekend'], ['got', 'final', 'tabl', 'third', 'not', 'think', 'get', 'free', 'seat'], ['work', 'morn', 'friend', 'get', 'parti', 'bberri', 'lite', 'flash', 'red', 'messag'], ['fb', 'bore', 'want', 'sing', 'right'], ['last', 'day', 'bone'], ['feel', 'like', 'hous', 'arrest'], ['know', 'shortag', 'shell', 'crab', 'use', 'beach', 'due', 'beach', 'comber', 'sad'], ['stupid', 'tooth', 'hurt'], ['love', 'song', 'quot', 'togeth', 'quot', 'quot', 'quot', 'song', 'think', 'still'], ['comput', 'broken', 'broke', 'laptop', 'use', 'phone', 'ahh', 'still', 'fuck', 'order'], ['good', 'not', 'holiday', 'chalet', 'sight', 'look', 'v', 'similar', 'one', 'go', 'home', 'today'], ['sad', 'economi', 'heard', 'anoth', 'friend', 'lose', 'job', 'sad', 'remind'], ['start', 'feel', 'realli', 'panicki', 'anxious', 'someth', 'bad', 'happen', 'cos', 'seem', 'like', 'age'], ['dog', 'ran', 'awayi'], ['suck', 'bad'], ['anyon', 'know', 'good', 'rap', 'song', 'need', 'make', 'cd', 'idea', 'hellpp'], ['awak', 'anybodi', 'els', 'awak', 'wish', 'live', 'us', 'sinc', 'fun', 'happen', 'asleep'], ['mobil', 'phone', 'refus', 'charg', 'either', 'batteri', 'broken', 'chargerr', 'boo'], ['hmm', 'thought', 'sleep', 'bad', 'not', 'see', 'video', 'tomorrow', 'night'], ['morn', 'everyon', 'sorri', 'go', 'earli', 'last', 'night', 'bad', 'news', 'felt', 'total', 'crap', 'today', 'new', 'day'], ['wish', 'parent', 'put', 'chines', 'school', 'younger', 'much', 'easier', 'get', 'job'], ['jealous', 'look', 'like', 'schindler', 'list', 'toronto'], ['near', 'fell', 'asleep', 'jolt', 'bed', 'massiv', 'panic', 'attack', 'not', 'sure', 'sleep'], ['oh', 'f', 'ck', 'complet', 'forgot', 'thirsti', 'thursday', 'oh', 'gaga', 'suck'], ['one', 'peopl', 'wrong', 'world', 'blame', 'peopl', 'great', 'world', 'live', 'shit'], ['bet', 'cool', 'sr', 'huh', 'not', 'not', 'stop', 'sweat', 'sinc', 'noon', 'dad', 'pack'], ['eww', 'dislik'], ['decid', 'tran', 'frm', 'relax', 'natur', 'hair', 'wish', 'whole', 'head', 'look', 'like', 'root', 'age', 'instant', 'gratif'], ['sorri', 'bout', 'cat'], ['stomach', 'feel', 'like', 'touch', 'full'], ['pug', 'woke', 'incred', 'sleep'], ['wait', 'hear', 'new', 'album', 'sure', 'replay', 'love', 'much'], ['soo', 'much', 'work', 'littl', 'time'], ['miss', 'iron', 'chef'], ['ds', 'version', 'suck'], ['know', 'ridicul', 'never', 'got', 'hang', 'love', 'chicago', 'want', 'go', 'shop', 'trip', 'sound', 'like', 'fun'], ['hate', 'net', 'ayaw', 'bumuka', 'ng', 'twitter'], ['ugh', 'internet'], ['omg', 'not', 'tweet', 'much', 'today', 'sad'], ['feel', 'giddi', 'want', 'go', 'home'], ['link', 'not', 'work'], ['somebodi', 'pleas', 'save', 'polar', 'bear'], ['miss', 'mom', 'quot', 'may', 'angel', 'lead', 'quot'], ['jacksonvill', 'beach', 'walk', 'cold', 'ass', 'water', 'work', 'morn', 'ili', 'lt', 'gt'], ['not', 'sleep', 'suck', 'one', 'day', 'sleep', 'get', 'go', 'shop', 'mom', 'ugh'], ['well', 'got', 'home', 'not', 'till', 'tmw', 'comcast', 'right', 'not', 'miss'], ['hope', 'ya', 'sleepin', 'well', 'guy', 'still'], ['finish', 'not', 'color', 'draw', 'come'], ['laker', 'babi', 'laker', 'miss', 'game', 'tmwr', 'work', 'keep', 'post', 'pleas'], ['damn', 'drunk', 'hot', 'suck'], ['miss', 'babi'], ['shower', 'water', 'sweat', 'mean', 'one', 'thing', 'sick'], ['poor', 'not', 'sleep'], ['went', 'pole', 'class', 'feel', 'discourag', 'hopeless', 'cone', 'danc', 'sexi', 'move', 'spread', 'leg'], ['poor', 'unfortun', 'soul', 'not', 'appear', 'pant'], ['look', 'like', 'anoth', 'sleepless', 'night', 'dedic', 'homework', 'sorri', 'advanc', 'chapman'], ['lot', 'mock'], ['not', 'pussi', 'damnit', 'send', 'right', 'way'], ['not', 'sleep', 'noth', 'tv'], ['oh', 'superseed', 'not', 'good', 'enough'], ['realli', 'realli', 'bore', 'guess', 'go', 'bed'], ['sometim', 'thing', 'say', 'hurt', 'one', 'love', 'unintent', 'never', 'ever', 'take', 'back', 'fix'], ['suck'], ['ii', 'know', 'mean'], ['fever', 'not', 'feel', 'work'], ['take', 'hors', 'pill', 'hope', 'get', 'sleep', 'tonight'], ['pgpm', 'student', 'pgpm', 'student', 'year', 'back', 'wish', 'could', 'stay', 'one'], ['hey', 'school', 'hate', 'place'], ['work', 'home', 'today', 'back', 'kill', 'doctor', 'physio', 'later', 'today'], ['back', 'work', 'distract'], ['demi', 'say', 'hi', 'enough', 'replay', 'pleas', 'love', 'much'], ['first', 'impress', 'silverlight', 'sad', 'base', 'saw', 'today', 'quit', 'problemat'], ['desperat', 'hope', 'dad', 'take', 'vanessa', 'game'], ['hi', 'fuck', 'job'], ['miss', 'deepli'], ['big', 'vanessa', 'go', 'septemb', 'go', 'fast', 'hard', 'cuz', 'workin', 'much', 'miss', 'alot'], ['somebodi', 'pleas', 'save', 'polar', 'bear'], ['nose', 'runni', 'head', 'pound', 'teeth', 'hurt', 'like', 'bitch', 'man', 'feel', 'aw'], ['headin', 'mind', 'soul', 'justa', 'lil', 'realiti'], ['grove', 'hell', 'hope', 'not', 'suck'], ['feel', 'like', 'shit', 'say', 'happi', 'belat', 'birfdayi', 'month', 'late'], ['sad', 'kind', 'discourag', 'goin', 'shit', 'wack'], ['fc', 'final', 'time', 'hate', 'keep', 'happen'], ['serious', 'bore', 'without', 'anyon', 'talk', 'not', 'tire', 'enough', 'sleep'], ['bed', 'bed', 'bed', 'never', 'answer', 'text', 'anymor', 'thought', 'day', 'sent', 'one', 'never', 'heard', 'back', 'sad', 'day'], ['hope', 'not', 'fail', 'english', 'would', 'sad'], ['sorri', 'bad', 'drive', 'experi'], ['alreadi', 'miss'], ['plan', 'may', 'chang', 'noo'], ['sister', 'douchebag'], ['relist', 'fee', 'not', 'complet', 'sale', 'suck'], ['knew', 'worn', 'sar', 'mask', 'plane', 'socal', 'feel', 'begin', 'sore', 'throat'], ['juli', 'long'], ['wear', 'glass', 'give', 'headach'], ['finish', 'sew', 'night', 'upload', 'pictur', 'slidebar', 'beach', 'not', 'believ', 'difficulti', 'twitter'], ['liesgirlstel', 'guy', 'call', 'phone', 'see', 'number', 'real', 'ohh', 'phone', 'not', 'work', 'tri', 'tomorrow'], ['bum', 'not', 'wear', 'sweet', 'nike', 'kick', 'work'], ['night', 'tweeti', 'oc', 'tomorrow', 'hope', 'pray', 'rachyl', 'get', 'better', 'soon'], ['depress', 'stuck', 'insid', 'day'], ['even', 'saw', 'news', 'feed', 'archi', 'websit', 'not', 'believ', 'would', 'choos', 'veronica', 'disappoint'], ['hate', 'sick', 'miss'], ['depress', 'not', 'includ', 'morcom', 'garden', 'quiz', 'facebook'], ['upsidedown', 'tomato', 'plant', 'die'], ['friday', 'last', 'not', 'much', 'fun', 'skint', 'though'], ['caa', 'iht', 'earlier', 'icant', 'wait', 'long', 'ahar'], ['friday', 'yay', 'bonus', 'not', 'drive', 'wale', 'tonight', 'athough', 'miss', 'kitten', 'cuddl', 'go', 'ride'], ['children', 'promis', 'birthday', 'brekki', 'bed', 'problem', 'bugger', 'food', 'hous'], ['not', 'use', 'blackberri', 'today', 'suck'], ['q', 'studio', 'creat', 'season', 'googl', 'look', 'dvd', 'downstair', 'feel', 'lazi'], ['hate'], ['time', 'tv', 'spend', 'day', 'catch', 'studi', 'hate', 'onlin', 'summer', 'class'], ['want', 'visit', 'anim', 'late'], ['pc', 'agre', 'problem', 'must', 'stop', 'spend', 'work'], ['jonaswebcast', 'miss'], ['dang', 'realli', 'look', 'like', 'crap', 'sigh', 'shower', 'get', 'readi'], ['not', 'sleep', 'not', 'like', 'night'], ['go', 'miss', 'live', 'comet', 'action', 'tomorrow', 'go', 'take', 'care', 'cousin', 'not', 'access', 'interwebz'], ['lol', 'not', 'drink'], ['found', 'not', 'drink', 'bar', 'boo', 'miss', 'palomino', 'cheer', 'sad', 'face'], ['not', 'sleep', 'hour', 'toss', 'turn'], ['omg', 'go', 'die', 'swine', 'flu', 'go', 'melbourn'], ['pack', 'not', 'like'], ['plus', 'deposit', 'tax', 'return', 'chequ', 'first', 'time', 'year', 'not', 'clear', 'immedi'], ['holi', 'crap', 'rain', 'la', 'not', 'jacket', 'oh'], ['aright', 'twitter', 'fam', 'guess', 'outti', 'go', 'tri', 'n', 'sleep', 'horribl', 'pain'], ['lol', 'hi', 'emmi', 'latin', 'would', 'help', 'studi', 'aptitud', 'test', 'get', 'grad', 'school', 'want', 'take'], ['reject', 'food', 'substanc'], ['tri', 'interview', 'dr', 'paul', 'twomey', 'ceo', 'icann', 'phone', 'issu', 'cut', 'interview', 'min'], ['not', 'think', 'take', 'needl', 'watch', 'horribl', 'gori', 'short', 'film', 'drug', 'month', 'ago', 'scar', 'life'], ['not', 'want', 'go', 'back', 'work', 'sleepi', 'time'], ['watch', 'biggest', 'loser', 'hallmark', 'never', 'fail', 'make', 'cri', 'nyeh'], ['suck', 'old', 'actual'], ['better', 'missi', 'tell', 'biggest', 'loser'], ['saw', 'fox', 'get', 'freeway', 'hope', 'goe', 'home'], ['recap', 'britain', 'got', 'talent', 'britain', 'seem', 'talent', 'america'], ['cnt', 'get', 'goin', 'old', 'messag', 'gt', 'gt', 'gt', 'gt', 'help', 'lt', 'lt', 'lt', 'lt'], ['good', 'time', 'rock', 'open', 'mic', 'thank', 'love', 'n', 'support', 'work', 'busi', 'plan', 'present', 'cg'], ['swim', 'go'], ['hmm', 'use', 'tinytwitt', 'small', 'screen', 'realli', 'not', 'much', 'fun'], ['unfortun', 'not'], ['love', 'johnni', 'carson', 'go', 'hate', 'see', 'jay', 'leno', 'go'], ['even', 'though', 'everyon', 'want', 'newish', 'song', 'teacher', 'agre', 'old', 'grumpi', 'not', 'like', 'us', 'happi', 'haha'], ['english', 'essay', 'r', 'amp', 'done', 'long', 'time', 'ago', 'assign', 'last', 'thursday'], ['internet', 'server', 'phoenix', 'fuck'], ['sorri', 'guy', 'drop', 'trip', 'person', 'commit'], ['awesom', 'wish', 'could', 'fli', 'see'], ['nope', 'het', 'lost', 'amp', 'found'], ['rocki', 'cola', 'diner', 'whittier', 'tonight', 'teacher', 'pal', 'b', 'great', 'time', 'chat', 'one', 'els', 'came'], ['bed', 'still', 'exhaust', 'vega'], ['lol', 'true', 'mayb', 'next', 'year', 'loov', 'siggi', 'not', 'rememb', 'password', 'mod', 'thing', 'cake'], ['umm', 'soo', 'realli', 'hard', 'concentr', 'rite', 'wen', 'weird', 'lupus', 'feel', 'goin', 'thro', 'bodi'], ['know', 'enjoy', 'watch', 'two', 'twitter', 'entertain', 'comic', 'miss'], ['not', 'yet', 'sorri'], ['fall', 'asleep', 'know', 'feel', 'lol', 'drag', 'hell', 'tonight', 'quit', 'excit'], ['god', 'not', 'even', 'catch', 'public', 'transport', 'swine', 'flu', 'shit', 'hous'], ['dad', 'said', 'trip', 'uk', 'cancel', 'due', 'da', 'swine', 'flu', 'oop', 'sorri', 'abang'], ['hahaha', 'alright'], ['wake', 'earlier', 'thought', 'dad', 'want', 'take', 'food'], ['um', 'not', 'think', 'text', 'msgs', 'quot', 'subject', 'line', 'quot', 'fail'], ['want', 'see', 'friend'], ['unless', 'invit', 'come', 'beta', 'key', 'not', 'go', 'much', 'help'], ['sorri', 'andrew', 'wish', 'someth', 'could'], ['finsh', 'work', 'eleven', 'even', 'allowd', 'cauz', 'realli', 'not', 'want', 'lol'], ['anybodi', 'soo', 'bore'], ['not', 'chaseton', 'either', 'pleas', 'not', 'die', 'heart', 'realli', 'sad'], ['interest', 'show', 'say', 'least', 'recap', 'tomorrow', 'first', 'must', 'sleep', 'work'], ['feel', 'like', 'hot', 'box', 'matter', 'go', 'still', 'feel', 'like', 'hot', 'box', 'ice', 'cream', 'not', 'work', 'n', 'e'], ['uugh', 'hate', 'everyth'], ['take', 'moment', 'want', 'annonym', 'back', 'fb', 'safe', 'say', 'anyth', 'someon', 'els', 'anoth', 'friend'], ['not', 'not', 'sister', 'hous', 'tonit'], ['damn', 'hi', 'facebook', 'wrong', 'not', 'add', 'photo'], ['aku', 'kbangun', 'mimpi', 'bad', 'dream'], ['follow', 'follow', 'love', 'pout', 'pleas'], ['not', 'even', 'wii', 'b', 'like', 'xbox', 'use'], ['not', 'sleep', 'darn', 'frustrat'], ['bff', 'rock', 'hotel', 'california', 'song', 'done', 'stay', 'next', 'hmm', 'careless', 'whisper'], ['one', 'day', 'loneli', 'creep', 'slap', 'face'], ['not', 'feel', 'good'], ['go', 'home', 'serious', 'enough'], ['miss', 'oklahomaa', 'listen', 'citizen', 'cope', 'til', 'pass'], ['make', 'sad'], ['feel', 'like', 'go', 'cough', 'lung'], ['wish', 'teas', 'movi', 'night'], ['lost', 'follow', 'night', 'nobodi', 'like'], ['miss', 'one', 'year', 'forbidden', 'fruit', 'tree', 'garden', 'munch', 'disappoint', 'one'], ['want', 'new', 'phone', 'seen', 'much', 'cellphon', 'commerci'], ['soo', 'sad', 'edg', 'page', 'not', 'go', 'come', 'cri'], ['time', 'realli', 'need', 'shut', 'go', 'sleep', 'head', 'ach', 'bad', 'realli', 'not', 'take'], ['becuz', 'braggin'], ['strict', 'diet', 'ugh', 'feel', 'like', 'cheat', 'one', 'day', 'ill', 'throw', 'everyth'], ['ze', 'franz', 'not', 'friend', 'think', 'think', 'creepi', 'stalker', 'sommat', 'hmph'], ['take', 'back', 'horribl', 'shoe', 'mum', 'made', 'get', 'urggh', 'nasti', 'footwear', 'problem', 'not', 'find', 'shoe'], ['wow', 'feel', 'like', 'ish', 'realli', 'feel', 'bad', 'ignor', 'ahol', 'not', 'overturn', 'prop'], ['wish', 'not', 'teas', 'movi', 'night'], ['not', 'know', 'tire', 'today', 'bye', 'time', 'beddi'], ['mayb', 'take', 'drink', 'feel', 'massiv', 'hangov', 'still', 'not', 'yself', 'today'], ['friend', 'travel', 'tale', 'held', 'farewel', 'parti', 'kind', 'disappoint', 'would', 'still', 'septemb', 'fault'], ['night', 'not', 'talk', 'victor', 'bore', 'night', 'grr', 'hate', 'shit'], ['go', 'die', 'tomorrow', 'night'], ['go', 'get', 'tri', 'catch', 'z', 'high', 'school', 'tomorrow', 'realli', 'suck', 'wish', 'not', 'grow'], ['sleep', 'lost', 'voic', 'coupl', 'day', 'ago'], ['big', 'day', 'xt', 'launch', 'amaz', 'much', 'free', 'stuff', 'thanx', 'edg', 'telecom', 'found', 'phone', 'afford', 'yet', 'though'], ['oh', 'yeah', 'poorest', 'person', 'not', 'joke', 'poor', 'peopl'], ['oh', 'well', 'hope', 'get', 'better'], ['cycl', 'though', 'good', 'healthi', 'eat', 'healthi', 'eat', 'contradict', 'term'], ['kind', 'sick', 'n', 'tire', 'bs', 'guy', 'dish'], ['wish', 'carlton', 'game', 'live', 'stupid', 'channel', 'lol'], ['bt', 'gamer', 'like', 'year', 'made', 'attempt', 'lol', 'yea', 'luvd', 'extent'], ['hahaha', 'oh', 'man', 'pleas', 'come', 'pomona', 'would', 'love', 'see', 'everyday', 'instead', 'like', 'year'], ['miss', 'come', 'michigan', 'like', 'not', 'wait', 'till', 'juli'], ['mayb', 'good', 'night', 'sleep', 'everyon'], ['yea', 'tough', 'keep', 'go', 'sometim', 'not', 'sure', 'worth'], ['dissapoint', 'hhaha'], ['hun', 'okay', 'see', 'alot', 'post', 'exercis', 'like', 'mad', 'not', 'eat', 'sleep'], ['oh', 'tweetdeck', 'malfunct', 'il', 'web', 'fixd'], ['sorri', 'still', 'sick', 'know', 'know', 'guess', 'quot', 'pelzer', 'present', 'quot'], ['adam', 'samberg', 'new', 'moon', 'trailor', 'good', 'even', 'bad', 'cabl', 'friday'], ['happen', 'afraid', 'miss', 'larg', 'part', 'stori'], ['hell', 'yes', 'late'], ['dell', 'audio', 'devic', 'teradici', 'give', 'hard', 'time', 'linux', 'ubuntu', 'jaunti', 'kernel', 'not', 'load', 'drv'], ['got', 'ass', 'kick', 'tripoli', 'lol', 'got', 'bad', 'card', 'suck'], ['creep', 'ice', 'cream', 'social', 'good', 'time', 'lar', 'real', 'girl', 'sad', 'movi'], ['ahh', 'quot', 'let', 'right', 'one', 'quot', 'dvd', 'broke'], ['hey', 'love', 'ac', 'see', 'onlin', 'not', 'yet', 'not', 'wait', 'buy', 'look', 'amaz'], ['fml', 'work', 'uniform', 'wash', 'line'], ['ohh', 'shit', 'realiz', 'still', 'not', 'talk', 'b', 'like', 'dat', 'time'], ['written', 'fuck', 'get', 'less', 'idea', 'everi', 'day', 'everi', 'day'], ['naw', 'not', 'match', 'lol', 'shenanigan', 'discuss', 'thing'], ['not', 'part', 'unfortun'], ['dude', 'not', 'know', 'person', 'experi', 'sorri', 'someth', 'like', 'went'], ['aww', 'well', 'random', 'woke', 'not', 'sleep', 'mani', 'thing', 'mind'], ['babi', 'miss'], ['wish', 'could', 'time', 'xbox', 'project', 'tie'], ['pancak', 'alway', 'end', 'soggi'], ['big', 'zongzi', 'lunch', 'ate', 'not', 'work', 'less', 'eat', 'useless', 'becom'], ['sososo', 'bum', 'like', 'realli', 'bum', 'hate', 'rain', 'ruin', 'date'], ['work', 'late', 'night', 'dell', 'notebook', 'dell', 'qualiti', 'gone', 'hill', 'warrenti', 'servic', 'suck', 'poor', 'peopl', 'buy', 'mac', 'instead'], ['wow', 'hurt', 'way', 'wors', 'thought', 'would'], ['none', 'thought', 'make', 'sens', 'sober'], ['know', 'right', 'hope', 'someth', 'come', 'though'], ['not', 'sleep', 'tomorrow', 'must', 'wake', 'earli'], ['bore', 'headach'], ['feel', 'like', 'crap', 'whenev', 'lay', 'hate', 'heartburn', 'amp', 'backach'], ['miss', 'lone', 'empti', 'without'], ['miss', 'everyon'], ['gone', 'bed', 'age', 'ago', 'damn', 'tedtalk', 'got', 'get', 'earli'], ['anoth', 'build', 'fail', 'someth', 'not', 'right', 'big', 'scheme', 'thing'], ['keep', 'fall', 'asleep', 'suppos', 'awak', 'miss', 'babyy'], ['way', 'not', 'want', 'go'], ['need', 'wake', 'earlier', 'actual', 'tire', 'enough', 'fall', 'asleep'], ['omg', 'never', 'seen', 'ring', 'creppi', 'ass', 'movi'], ['love', 'ur', 'admit', 'niley', 'kiss', 'chang', 'mind', 'haha', 'amp', 'not', 'jemi', 'still', 'cute'], ['make', 'feel', 'better', 'lost', 'overnight', 'post', 'pictur', 'babi'], ['still', 'sick', 'sigh'], ['feel', 'realli', 'weird'], ['tri', 'self', 'learn', 'photoshop', 'not', 'go', 'well'], ['steam', 'punlk', 'fashion', 'show', 'anim', 'north', 'first', 'year', 'sinc', 'torcon', 'not', 'back', 'til', 'amp', 'miss'], ['throat', 'hurt', 'go', 'go', 'read', 'go', 'bed', 'text', 'mee'], ['die', 'hangout', 'friday', 'afternoon'], ['mann', 'got', 'iphon', 'jealous'], ['wonder', 'come', 'mcdonald', 'take', 'long', 'deliv', 'food'], ['ya', 'weather', 'super', 'weird', 'look', 'like', 'go', 'rain', 'today', 'cours', 'not', 'darnitt'], ['much', 'injustic', 'imagin', 'get', 'wors', 'get', 'better', 'afraid', 'doubt', 'sorri'], ['miss', 'nostalgia', 'everyon', 'pleas', 'kick', 'tushar'], ['kind', 'sick', 'n', 'tire', 'bs', 'guy', 'dish'], ['not', 'know', 'lol', 'head', 'hurt', 'realli', 'bad', 'amp', 'stomach', 'hmm', 'person', 'think', 'deal', 'wit'], ['expens'], ['wtf', 'facebook', 'clear', 'whole', 'survey', 'last', 'q', 'night', 'get', 'better', 'better', 'els', 'next'], ['take', 'advic', 'lookin', 'phone', 'cost', 'relationship'], ['weird', 'guy', 'hous', 'without', 'not', 'like'], ['fuck', 'wast', 'deodor', 'not', 'goin', 'not', 'havin', 'compani', 'let', 'funk', 'ya'], ['wish', 'knew', 'curs', 'tumblr'], ['finish', 'watch', 'seri', 'return', 'chaser', 'war', 'everyth', 'realli', 'quit', 'crap', 'compar', 'use'], ['miss', 'bestfriend', 'left', 'school'], ['ouch', 'earphon', 'shock'], ['tri', 'sleep', 'not', 'work'], ['tummi', 'hurt'], ['haha', 'got', 'one', 'go', 'curs', 'none', 'friend', 'like', 'tai', 'lol'], ['gorgeous', 'weather', 'bike'], ['blackout', 'citi', 'never', 'good'], ['aww', 'mayb', 'traumat'], ['live', 'small', 'market', 'deliv', 'bread', 'food', 'bank', 'time', 'realli', 'tough', 'even'], ['ugh', 'much', 'happen', 'today', 'realli', 'need', 'hug'], ['bore', 'want', 'go', 'taekwando'], ['tongu', 'still', 'hurt', 'need', 'sleep'], ['aww', 'ok', 'lol', 'hope', 'still', 'not', 'back', 'state'], ['need', 'littl', 'lie', 'not', 'feel', 'great', 'today', 'boo'], ['decid', 'not', 'stand', 'alltop', 'spam', 'longer'], ['miss', 'rich'], ['twitter', 'shit', 'bore', 'c', 'not', 'month'], ['home', 'ice', 'cream', 'first', 'pic', 'camera', 'batteri', 'die', 'last', 'night', 'forgot', 'charg'], ['bye', 'scotti', 'go', 'miss', 'ili', 'lt'], ['new', 'comment', 'jowki', 'wish', 'time', 'blog', 'often'], ['gray', 'feel', 'neglect'], ['oh', 'know', 'feel', 'damn', 'repres', 'bank', 'america', 'tri', 'make', 'sound', 'like', 'b'], ['mass', 'cleanout', 'room', 'rearrang', 'sent', 'mother', 'buy', 'bin', 'bookshelf', 'sinc', 'mine', 'suck', 'bad', 'mood'], ['rob', 'got', 'lucki', 'game', 'beat'], ['feel', 'realli', 'sick', 'watch', 'fifth', 'element', 'smoke', 'cigg', 'ugh', 'hate', 'cold'], ['bah', 'not', 'think', 'fb', 'fan', 'page', 'get'], ['sweeti', 'sat', 'tabl', 'woke', 'sweet', 'think', 'home', 'around', 'pm', 'xx'], ['bruis', 'knee', 'make', 'hard', 'skate', 'tomorrow'], ['lol', 'went', 'buy', 'new', 'laptop', 'februari', 'alreadi', 'knew', 'lol', 'look', 'anyway', 'walk', 'away', 'sadfac'], ['fyi', 'internet', 'thurstag', 'saturday', 'feel', 'becom', 'product', 'day'], ['sit', 'everyon', 'took', 'good', 'seat'], ['free', 'wifi', 'vacay', 'ruin'], ['maatt', 'not', 'spoken', 'age', 'dude', 'not', 'forget', 'bout', 'aussi', 'fan', 'lool', 'love', 'ya', 'xx'], ['oh', 'wait', 'wrong', 'state'], ['fuck', 'cold', 'north', 'like', 'df', 'yesterday'], ['tri', 'sleep', 'without', 'pill', 'not', 'work', 'wide', 'awak', 'late', 'take', 'sleep', 'til'], ['phone', 'die', 'soon', 'oh'], ['sorri', 'mean'], ['dog', 'eye', 'seem', 'bad', 'fork', 'new', 'wash', 'machin', 'not', 'vet', 'bill', 'top', 'eh'], ['not', 'sleep', 'not', 'find', 'grandmoth', 'quilt', 'locket', 'sick', 'may', 'lost', 'somehow', 'stolen'], ['bum', 'f', 'f', 'f', 'broke'], ['sign', 'account', 'polit', 'websit', 'could', 'post', 'comment', 'not', 'work'], ['come', 'never', 'sleep', 'past', 'not', 'good'], ['public', 'talk', 'juli', 'got', 'cancel', 'not', 'know'], ['would', 'like', 'mile', 'gas', 'price', 'crazi', 'alpin', 'next', 'summer', 'def'], ['feel', 'rough', 'today', 'want', 'cuddl', 'sleep'], ['flu', 'pass', 'unto', 'shop', 'got', 'fresh', 'chicken', 'chicken', 'amp', 'sat', 'sad', 'panda'], ['not', 'well'], ['oh', 'hell', 'way', 'tell'], ['wish', 'live', 'atleast', 'relat', 'close', 'ohio', 'not', 'seen', 'almost', 'year'], ['oh', 'crap'], ['not', 'get', 'messag', 'bought', 'princess'], ['unhappi', 'hate', 'affect', 'everyth', 'relationship', 'peopl', 'person', 'attitud'], ['feel', 'extrem', 'ill'], ['oh', 'offend', 'ha'], ['quot', 'name', 'toni', 'hey', 'quot', 'poor', 'toni'], ['back', 'time', 'wish', 'teenag', 'wish', 'could', 'feel', 'healthi', 'not', 'rememb', 'like', 'feel', 'healthi', 'anymor'], ['friend', 'deepli', 'sorri', 'move', 'miss', 'much'], ['besti', 'need'], ['damn', 'someth', 'say', 'one', 'listen'], ['miss', 'old', 'healthi', 'loos', 'faith', 'ever'], ['go', 'get', 'tri', 'catch', 'z', 'high', 'school', 'tomorrow', 'realli', 'suck', 'wish'], ['rawr', 'whatnot', 'godaw', 'draw', 'night', 'tonight', 'even', 'less', 'progress', 'made', 'expect'], ['ach', 'amp', 'chill', 'join', 'parti', 'could', 'not', 'cold', 'go', 'away', 'get', 'wors'], ['ohh', 'sorri', 'someon', 'els', 'pic', 'bad'], ['bed', 'stomach', 'ach'], ['not', 'answer', 'call', 'thought', 'homi'], ['school', 'start', 'two', 'day', 'go', 'still', 'not', 'want', 'l'], ['facebook', 'quizz', 'one', 'cure', 'boredom', 'haha', 'hurt'], ['lappi', 'charger', 'complet', 'dead', 'conserv', 'left', 'batteri', 'afford', 'buy', 'new', 'one'], ['summer', 'glau', 'appear', 'dollhous', 'next', 'year', 'still', 'not', 'believ', 'not', 'renew', 'tscc'], ['final', 'watch', 'rest', 'guild', 'season', 'alway', 'feel', 'sorri', 'hope', 'time', 'char'], ['not', 'heart', 'ach', 'children', 'want', 'adopt', 'alexi'], ['lunch', 'go', 'home', 'well', 'today'], ['goodnight', 'everyon'], ['bad', 'vo', 'got', 'sick', 'think', 'amp', 'not', 'even', 'med', 'feel', 'like'], ['miss', 'bring', 'back', 'keychain'], ['one', 'day', 'jay', 'leno', 'que', 'sad'], ['spoke', 'keith', 'urban', 'record', 'compani', 'not', 'get', 'show', 'till', 'back', 'holiday', 'sorri', 'jack', 'tri', 'mate'], ['honza', 'take', 'flight', 'back', 'czech', 'republ', 'morn', 'realli', 'go', 'miss'], ['sad', 'thing'], ['feel', 'talaga', 'ng', 'tao'], ['fuck', 'hot', 'damn', 'air', 'condit'], ['never', 'like', 'boy', 'jerm'], ['watch', 'two', 'patient', 'die', 'tonight', 'put', 'funk', 'one', 'young'], ['aila', 'cyclon', 'left', 'hous', 'calcutta', 'broken', 'sunshad', 'balconi', 'huge', 'branch', 'tree', 'thru', 'bathroom', 'window'], ['guy', 'paranoid', 'drop', 'countdown', 'not', 'fair', 'iv', 'vote', 'heap'], ['not', 'realli', 'good', 'night', 'miss', 'littl', 'girl'], ['wish', 'sri', 'panwa'], ['sad', 'not', 'text', 'today'], ['tweet', 'tarmac', 'cork', 'airport', 'delay'], ['hate', 'tweetdeck', 'reach', 'access', 'limit'], ['suck', 'hate', 'money', 'issu'], ['wear', 'glass', 'today', 'cos', 'right', 'eye', 'swollen', 'not', 'know'], ['heard', 'move', 'sydney', 'next', 'year', 'not', 'happi'], ['dam', 'keep', 'rainin'], ['never', 'chanc', 'sleep', 'midnight', 'mind', 'tire'], ['happi', 'b', 'home', 'mind', 'wander', 'not', 'sleep'], ['weebo', 'die'], ['peopl', 'pathet', 'know', 'one', 'tri'], ['littl', 'famili', 'parti', 'tonight', 'hope', 'rock'], ['complic', 'dream'], ['ahh', 'excit', 'juli', 'ecxept', 'stupid', 'australia', 'not', 'get', 'til', 'like', 'decembberr', 'still', 'ahh', 'congratss'], ['fun', 'tonight', 'leav', 'carlil', 'dalla', 'today', 'sneak', 'show'], ['bout', 'watch', 'notori', 'feelin', 'wish', 'could', 'eat', 'someth', 'not', 'surgeri', 'tomorrow', 'food', 'til', 'saturday'], ['sexi', 'success', 'young', 'profession', 'might', 'realli', 'join', 'bni'], ['meh', 'almost', 'not', 'sleep', 'not', 'finish', 'anyth', 'close', 'cancel', 'dokomi'], ['want', 'mont', 'cristo', 'sandwich', 'soo', 'bad'], ['awak', 'migran', 'yey', 'tummi', 'hurt', 'evil', 'ib'], ['ee', 'jealous', 'sia', 'not', 'get', 'see'], ['fair'], ['go', 'miss', 'miss', 'suhana'], ['unstabl', 'broadband', 'electr', 'take', 'toll', 'mental', 'stabil'], ['sink', 'hospit', 'toilet', 'low', 'crotch', 'grey', 'suit', 'spatter', 'water', 'time', 'physio'], ['mari', 'hate', 'wana', 'walmart', 'butno', 'one', 'want', 'go'], ['feel', 'realli', 'sick'], ['aww', 'tessi', 'want', 'hug'], ['def', 'want', 'cuddl', 'mayb', 'play', 'one', 'far', 'away'], ['face', 'arm', 'tragic', 'serious'], ['feel', 'nauseous', 'not', 'sleep'], ['got', 'go', 'get', 'readi', 'go', 'meadowhal', 'not', 'believ', 'internet', 'broke', 'yesterday', 'gut'], ['err', 'think', 'like', 'buck', 'ticket', 'expens'], ['damnit', 'run', 'candi', 'coat', 'book'], ['watch', 'blood', 'veoh', 'episod', 'love', 'could', 'watch', 'live', 'action', 'not', 'old', 'enough'], ['miss'], ['tummi', 'hurt'], ['watch', 'good', 'famili', 'premier', 'onlin', 'think', 'may', 'last', 'episod', 'watch', 'pretti', 'amaz', 'mediocr', 'pass'], ['go', 'dream', 'princ', 'charm', 'tonight', 'n', 'see', 'everyth', 'goe', 'back', 'normal', 'realli', 'hope', 'lt'], ['sit', 'school', 'suck'], ['stupid', 'wireless', 'not', 'work', 'downstair'], ['chang', 'hairstyl', 'not', 'good', 'suppos', 'n', 'not', 'wealth', 'much', 'money', 'hate'], ['mm', 'love', 'curri', 'not', 'oregan', 'though'], ['kind', 'lone', 'nobodi', 'answer', 'phone'], ['babi', 'bros', 'last', 'time', 'sing', 'front', 'school', 'proud', 'get', 'old'], ['nah', 'light', 'kill', 'mood', 'got', 'get', 'bed'], ['go', 'work', 'typic', 'sunshin', 'deep', 'sleep', 'stupid', 'friday'], ['not', 'proper', 'drag', 'week'], ['still', 'miss', 'not', 'think', 'come', 'back'], ['look', 'deceiv'], ['not', 'work', 'long', 'time', 'kind', 'miss', 'miss', 'anna', 'seen', 'prob', 'slo', 'summer'], ['look', 'old', 'pictur', 'love', 'amp', 'miss', 'good', 'old', 'day'], ['come', 'back', 'perth', 'miss', 'show'], ['soo', 'bore', 'right'], ['wat', 'riversid'], ['madd', 'bore'], ['yeahh', 'yeah', 'hifi', 'lol', 'grr', 'dad', 'pain', 'said', 'not', 'find', 'anyon', 'go', 'not', 'go'], ['wife', 'not', 'get', 'guest', 'list', 'tomorrow', 'show', 'not', 'exist', 'lame', 'guess', 'wife', 'show'], ['throat', 'hurt', 'not', 'sleep'], ['pull', 'muscl', 'neck', 'morn', 'feel', 'like', 'get', 'sore'], ['finish', 'minish', 'cap', 'great', 'game', 'miss', 'ezlo', 'link'], ['sad', 'bprohibit', 'tweet', 'tonight', 'sorri'], ['unfair', 'good', 'rock', 'show', 'happen', 'pune'], ['miss', 'awesom', 'weather', 'movi'], ['ugh', 'not', 'sleep', 'bus', 'still', 'like', 'hour'], ['feel', 'realli', 'bad', 'goofin', 'not', 'know', 'realli', 'not', 'meet', 'dang', 'sorri', 'amp', 'big', 'mouth'], ['oh', 'man', 'yogg', 'today', 'wors', 'last', 'week'], ['friday', 'tube', 'work', 'slow'], ['miss', 'guy', 'prob', 'not', 'b', 'bk', 'til', 'august', 'sumtim', 'come', 'bk', 'anytim', 'ill', 'sure', 'let', 'kno'], ['still', 'not', 'sleep'], ['worri', 'sock', 'tonight'], ['say', 'bad', 'trip', 'angri'], ['strain', 'hear', 'hard', 'way'], ['unfair', 'good', 'rock', 'show', 'happen', 'pune'], ['bird', 'oh', 'man', 'not', 'cool', 'amp', 'amp', 'not', 'sleep', 'yet', 'night'], ['worri', 'repli', 'send', 'sms'], ['oh', 'good', 'god', 'crampss'], ['home', 'earli', 'yeh', 'work', 'weekend', 'not', 'happi', 'much'], ['not', 'sleep', 'could', 'not', 'sleep', 'last', 'night', 'eather', 'wabbl', 'wabbl'], ['two', 'macaroon', 'go', 'say', 'oh', 'nut', 'wow', 'need', 'get'], ['stay', 'away', 'home', 'sinc', 'part', 'india', 'dnt', 'hav', 'gud', 'wireless', 'internet', 'fuck'], ['honest', 'feel', 'like', 'not', 'heal', 'get', 'better', 'not', 'good'], ['thingsmummysaid', 'need', 'learn', 'wash', 'dish', 'laundri', 'not', 'alway', 'right'], ['omg', 'mcdonald', 'combo', 'wendi', 'sunda', 'puke', 'materi'], ['realli', 'need', 'sort', 'bird', 'tabl', 'feeder', 'robin', 'blue', 'tit', 'bulli'], ['tiir', 'not', 'sleep'], ['hate', 'work', 'night', 'cos', 'not', 'realli', 'abl', 'enjoy', 'gorgeous', 'weather', 'asleep'], ['need', 'camera', 'blower', 'camera', 'censor', 'dirteeh'], ['realli', 'stop', 'reli', 'famili', 'say', 'go', 'get', 'lunch'], ['chang', 'hairstyl', 'not', 'good', 'suppos', 'n', 'not', 'wealth', 'much', 'money', 'hate'], ['lost', 'mx', 'way'], ['comput', 'ethernet', 'school', 'slow'], ['miss', 'go', 'ek', 'everi', 'summer', 'amp', 'christma', 'vaca', 'take'], ['wish', 'peopl', 'would', 'leav', 'jon', 'amp', 'kate', 'alon', 'realli', 'like', 'show'], ['yup', 'sad', 'eh', 'betti', 'man', 'betti'], ['bad', 'headach', 'get', 'wors', 'minut', 'not', 'better'], ['work', 'lunch', 'lot', 'work', 'not', 'enough', 'help'], ['suck', 'hear', 'hate', 'day', 'like'], ['pol', 'song', 'new', 'album', 'realli', 'miss', 'udd'], ['tire', 'summer', 'alreadi'], ['feel', 'realli', 'sick'], ['hard', 'time', 'fall', 'asleep'], ['omg', 'reali', 'not', 'sleep', 'ughh'], ['took', 'termin', 'trilog', 'need', 'actual', 'tv', 'seri', 'still', 'not', 'find', 'anyth', 'tempt'], ['translat', 'complic', 'someon', 'go', 'teach'], ['someon', 'hack', 'email', 'fuck'], ['die', 'get', 'hand', 'diagnosi', 'murder', 'dvd', 'boxset', 'peski', 'kid', 'amazon', 'still', 'not', 'deliv', 'zimbabw'], ['bore', 'noth'], ['haha'], ['song', 'make', 'want', 'cri'], ['aww', 'not', 'cri', 'ashley'], ['oop', 'not', 'open'], ['sigh', 'sad', 'lone', 'profess'], ['look', 'like', 'eprocur', 'address', 'offic', 'mate', 'blacklist', 'ask', 'whitelist'], ['sibl', 'left', 'alon', 'bore'], ['bus', 'almost', 'hour', 'late', 'crappi', 'alarm', 'clock', 'leeuwarden'], ['wish', 'grandmoth', 'taken', 'us'], ['heard', 'regina', 'girl', 'song', 'les', 'deux', 'think', 'come', 'back', 'mc', 'miss'], ['bum', 'not', 'get', 'see', 'manchest', 'orchestra', 'sold', 'spent', 'night', 'buy', 'tv', 'show', 'itun', 'lame'], ['walmart', 'open', 'first', 'store', 'amritsar', 'tomorrow', 'place', 'limit', 'wholesal'], ['omg', 'fair'], ['not', 'weekend', 'sorri', 'steph', 'work'], ['not', 'honey', 'got', 'mad', 'yrs', 'go', 'crazi'], ['sore', 'throat', 'sinc', 'monday', 'morn', 'sick', 'hurtin', 'want', 'freakin', 'sleep'], ['gha', 'work', 'hope', 'traffic', 'clear', 'time', 'get'], ['got', 'home', 'effin', 'sad'], ['cheer', 'lizzi', 'b', 'anoth', 'foh', 'hero', 'concert', 'still', 'suppos', 'b', 'upset', 'xoxoxo'], ['taxi', 'q', 'pelangi', 'super', 'loong', 'get', 'headach', 'transit'], ['sad', 'not', 'hope', 'american', 'doll', 'poss', 'blah', 'vacant', 'dynam'], ['tri', 'die', 'end', 'sentenc', 'annpyimg', 'thing', 'id', 'feel', 'fine', 'anoth', 'day', 'not', 'play', 'hit'], ['rent', 'bike', 'unknown', 'trail', 'random', 'bump', 'big', 'hill', 'kid', 'one', 'beat', 'littl', 'girl', 'not', 'good', 'day', 'b', 'famili', 'vacat'], ['feel', 'like', 'done', 'london', 'marathon', 'ach'], ['go', 'die', 'studi', 'overload', 'weekend', 'much', 'homework', 'pay', 'work', 'interrupt', 'screw'], ['not', 'excit', 'blow', 'anoth', 'candl', 'today', 'kid'], ['alway', 'sad', 'watch', 'seri', 'green', 'wing', 'left', 'watch'], ['today', 'though', 'bad', 'want'], ['soo', 'tire', 'want', 'crawl', 'back', 'bed'], ['fam', 'back', 'big', 'island', 'said', 'vog', 'bad', 'not', 'see', 'ocean', 'sad'], ['sunni', 'morn', 'big', 'k', 'lawn', 'mow', 'mile', 'run', 'attempt', 'urgh'], ['babi', 'help', 'math'], ['quot', 'lock', 'abroad', 'quot', 'make', 'bein', 'half', 'brown', 'good', 'risk', 'mgmt', 'travelin', 'world', 'blend', 'feel', 'sorri', 'hostag', 'magnet', 'white', 'pepo'], ['sorri', 'lol', 'never', 'like', 'actual', 'time', 'spend', 'unfortun', 'everyth', 'alway', 'insan', 'go'], ['sorri', 'could', 'not', 'fit', 'hal', 'name'], ['go', 'ask', 'want', 'go', 'club', 'hidden', 'hous', 'sat', 'night', 'hehe'], ['think', 'annoy', 'keep', 'get', 'twitter', 'error', 'messag', 'mobil'], ['shanni', 'sorri', 'not', 'mean', 'upset', 'thought', 'would', 'find', 'cute', 'sorri', 'not', 'sad'], ['right', 'total', 'forgot', 'might', 'not', 'till', 'august', 'though', 'great', 'summer'], ['ohh', 'emm', 'gee', 'souvlaki', 'want', 'go', 'home', 'lol'], ['rah', 'rah', 'youtub', 'not', 'work', 'oh', 'great'], ['cat', 'pain'], ['epicfail', 'joseph', 'class', 'long', 'liao'], ['tweet', 'much', 'not', 'even', 'pay', 'attent'], ['busi', 'day', 'disappoint', 'today', 'show', 'repeat'], ['god', 'piss', 'alway', 'enter', 'comp', 'amp', 'never', 'sore', 'loser'], ['jessi', 'gone', 'away', 'weekend', 'miss', 'alreadi'], ['someth', 'wrong', 'tire', 'bare', 'keep', 'eye', 'open', 'yet', 'done', 'last', 'toss', 'amp', 'turn', 'bed'], ['awak', 'mum', 'turn', 'internet', 'could', 'not', 'watch', 'live', 'chat', 'ccri', 'sad'], ['tire', 'want', 'sleep', 'stupid', 'work', 'get', 'way'], ['would', 'contest', 'not', 'chicken'], ['time', 'bed', 'oh', 'wish', 'someon', 'lay', 'next'], ['spider', 'bed', 'calm', 'fear', 'listen', 'green', 'day', 'lt'], ['poltergeist', 'hous'], ['fake', 'kid'], ['shit', 'hope', 'theyr', 'wrong', 'need'], ['spider', 'room', 'save'], ['woow', 'lucki', 'xd', 'break', 'go', 'end', 'class', 'start', 'june'], ['aww', 'internet', 'right', 'boi'], ['omg', 'sore', 'shoulder'], ['result', 'salari', 'decreas'], ['get', 'tonight', 'sytycd', 'onlin', 'like', 'hulu', 'paid', 'like', 'itun', 'miss', 'favorit', 'judg', 'not', 'sleep'], ['lol', 'friend', 'problem', 'differ', 'guild', 'wtf', 'wrong', 'server'], ['suck', 'like', 'hell'], ['fml', 'still', 'awak', 'melatonin', 'not', 'work'], ['not', 'mind', 'sam', 'like', 'kate', 'not', 'like', 'chris', 'smarmi'], ['augh', 'fever', 'gone', 'end', 'miss', 'weho', 'club', 'tomorrow', 'night', 'go', 'piss', 'stupid', 'boytoy', 'gave', 'plagu'], ['feel', 'not', 'want', 'get', 'bed', 'bother', 'not', 'go', 'work', 'turn', 'da', 'light', 'pull', 'da', 'shade', 'n', 'tv', 'type', 'sick'], ['work', 'lot', 'overtim', 'week', 'realiz', 'book', 'half', 'day', 'tomorrow', 'week', 'break', 'even'], ['oist', 'tym', 'di', 'pa', 'ko', 'tym', 'may', 'sakit', 'na', 'siya', 'not', 'blame'], ['omg', 'man', 'pray', 'ya'], ['not', 'close', 'librari', 'due', 'great', 'weather', 'ac', 'not', 'work', 'fb'], ['time', 'hous', 'chore', 'ugh'], ['get', 'readi', 'school', 'read', 'go', 'set', 'montepulciano', 'practic', 'cri', 'not'], ['not', 'sound', 'like', 'fun'], ['miss', 'taylor', 'like', 'crazi', 'not', 'wait', 'till', 'back'], ['shatter', 'pwg', 'botch', 'hybrid', 'dolphin', 'shirt', 'order', 'sent', 'xl'], ['believ', 'tomorrow', 'night', 'jay', 'leno', 'last', 'episod', 'tonight', 'show', 'encourag', 'everyon', 'watch', 'welcom', 'conan'], ['not', 'sleep'], ['not', 'understand', 'anyth', 'help'], ['crash', 'qmbol'], ['know', 'sad'], ['fuck', 'nervous'], ['realli', 'ultra', 'bore'], ['holi', 'cute', 'dexter', 'alreadi', 'lost', 'kitten', 'face', 'gettin', 'chunki', 'butt', 'sinc', 'got', 'back', 'qld', 'haha'], ['wake', 'earli', 'goddam', 'last', 'day', 'bummer'], ['goodgirl', 'not', 'takin', 'advantag'], ['damn', 'hordi'], ['gahh', 'tire', 'right'], ['not', 'drink', 'enough', 'hangov', 'tire', 'work'], ['cheek', 'hurt', 'bad', 'happen'], ['think', 'come', 'realli', 'realli', 'realli', 'look', 'foreword', 'see', 'come'], ['know', 'kid', 'not', 'say', 'well', 'not', 'realli'], ['enthusiasm', 'mee'], ['aww', 'not', 'guess', 'not', 'blackberrymesseng'], ['drink', 'realli', 'nice', 'coffe', 'got', 'go', 'dentist', 'morn'], ['sick', 'bad', 'throat', 'worst', 'toothach', 'good', 'thing', 'work', 'pharmaci', 'load', 'drug'], ['till', 'last', 'night'], ['depechemod', 'concert', 'next', 'week', 'cancel', 'altern', 'date', 'not', 'known', 'yet', 'dave', 'gahan', 'tumor'], ['tweet', 'last', 'hour', 'nobodi', 'like', 'tweetboard'], ['saad', 'need', 'someon', 'talk'], ['bore', 'bare', 'even', 'tweet', 'noth', 'talk', 'boredboot'], ['tshwane', 'want', 'doubl', 'rate', 'tri', 'phone', 'get', 'servic', 'endless', 'loop', 'fail'], ['never', 'invit'], ['say', 'goodby', 'someth', 'familiar', 'never', 'becom', 'familiar'], ['roughnight'], ['tire', 'climb', 'bed', 'fall', 'asleep', 'hope', 'weekend', 'fun', 'coupl', 'week', 'left'], ['bad', 'day', 'got', 'wors'], ['bus', 'goin', 'work', 'omg', 'serious', 'soo', 'tire', 'not', 'know', 'surviv', 'hour', 'shift'], ['got', 'love', 'wake', 'home', 'midnit', 'dangg', 'pray', 'jumpi'], ['sleep', 'pattern', 'screw', 'need', 'tri', 'stay', 'midnight', 'get', 'decent', 'sleep', 'coz', 'not', 'slept'], ['need', 'hot', 'green', 'tea', 'not', 'sleep'], ['time', 'germani', 'went', 'fast', 'day', 'left', 'hope', 'move', 'soon'], ['wish', 'could', 'rub', 'head'], ['blue', 'sky', 'still', 'grey', 'hazi', 'window'], ['test', 'anoth', 'updat', 'sorri', 'bother', 'guy'], ['jus', 'got', 'hom', 'fr', 'tda', 'funer', 'sad', 'cri', 'much', 'time', 'much', 'love', 'grandpa', 'lt', 'never', 'got', 'say', 'last', 'quot', 'goodby', 'quot'], ['not', 'use', 'msn', 'either', 'not', 'think', 'thousand', 'mile', 'away', 'not', 'face', 'face'], ['dude', 'suck', 'would', 'tow', 'space'], ['goodmorn', 'woke', 'earli'], ['well', 'run', 'cat', 'today', 'know', 'sad', 'cri', 'scream', 'lung', 'felt', 'horribl', 'poor', 'thing'], ['stomach', 'hurt'], ['realli', 'want', 'blackberri', 'sidekick', 'hella', 'wack', 'night'], ['earli', 'proppa', 'shatter', 'knacker'], ['work', 'miss', 'everythin', 'yesterday', 'not', 'know', 'wot', 'anybodi'], ['shame', 'gotto', 'go', 'work'], ['googl', 'wave', 'look', 'cool', 'work', 'guy', 'came', 'idea', 'year', 'ago'], ['love', 'hate', 'drive', 'pollut'], ['today', 'feel', 'like', 'friday', 'bad', 'not'], ['unfair', 'hustlabal', 'us', 'citizen', 'work', 'person', 'appear', 'expect', 'prowler'], ['not', 'sleep', 'peopl', 'keep', 'textin'], ['kewl', 'jb', 'chat', 'awesom', 'miss', 'lot', 'though', 'go', 'skewl'], ['hate', 'fact', 'hour', 'away', 'tonight', 'tomorrow', 'mile', 'apart', 'wish'], ['fulli', 'yell', 'say', 'dnt', 'fcking', 'stupid', 'grow', 'stop', 'band', 'shit', 'throw', 'remot', 'thnks', 'love'], ['underpaid', 'realli', 'not', 'need', 'well'], ['ohyeahh', 'hate', 'heat'], ['spend', 'not', 'spend', 'hte', 'question', 'mind'], ['feel', 'bad', 'not', 'get', 'see'], ['disappoint', 'realli', 'suck', 'get', 'use'], ['get', 'rather', 'annoy', 'notebook', 'know', 'old', 'got', 'wrinkl', 'never', 'slow'], ['okay', 'thank', 'not', 'find'], ['mad', 'not', 'scarey'], ['oh', 'troubl', 'paradic'], ['exact', 'feel', 'hope', 'start', 'feel', 'better', 'soon'], ['still', 'awak', 'not', 'fall', 'asleep', 'not', 'one', 'bit', 'sleepi'], ['go', 'crazi', 'pain', 'amp', 'got', 'wait', 'till', 'thursday'], ['feel', 'like', 'truck', 'hit', 'also', 'resembl', 'man', 'hit', 'truck'], ['not', 'fan', 'layout', 'chang', 'hyperlink', 'not', 'like', 'indent', 'well', 'click', 'link', 'show'], ['miss'], ['useless', 'tweet', 'lol', 'jk', 'yay', 'come', 'tomorrow', 'long', 'gnna', 'phil'], ['stomach', 'kill', 'not', 'sleep'], ['holi', 'shit', 'super', 'sunni', 'friday', 'whitsun', 'tube', 'deeseart', 'wish', 'park'], ['miss', 'neic', 'not', 'wait', 'see', 'bad', 'n', 'grown', 'ass', 'lol'], ['soo', 'happi', 'frustrat', 'time', 'ohh', 'noo', 'britney', 'record', 'new', 'video', 'radar', 'soo', 'exxciite'], ['booya', 'sup', 'tweep', 'happi', 'infam', 'day', 'get', 'soon', 'not', 'wait', 'play', 'need', 'find', 'time', 'though'], ['scari', 'guy', 'colbert'], ['wit', 'cha', 'got', 'home', 'da', 'regga', 'club', 'wishin', 'sexin', 'somebodi'], ['not', 'good', 'mood'], ['ugh', 'talk', 'someon', 'realli', 'bore'], ['inclin', 'think', 'stupid'], ['omg', 'period', 'cramp', 'ftl', 'much', 'pain'], ['remind', 'need', 'pick', 'mask', 'thank', 'prefer', 'not', 'take', 'med', 'b', 'addict'], ['goto', 'work', 'ahh', 'kill', 'life', 'not', 'go', 'way', 'want', 'atm', 'ta', 'ta', 'kid', 'x'], ['feel', 'lone', 'dh', 'night', 'shift'], ['addict', 'glee', 'watch', 'video'], ['horribl', 'dream', 'scari', 'face', 'awak', 'rest', 'night', 'god', 'dammit'], ['thought', 'go', 'anoth', 'def', 'jam', 'fight', 'game', 'turn', 'crappi', 'karaok', 'game', 'miss', 'fight'], ['arghh', 'gone', 'starbuck', 'amp', 'given', 'skim', 'milk', 'instead', 'soy', 'milk', 'not', 'milk', 'hav', 'throw', 'away', 'expens'], ['confus', 'peopl', 'pose', 'other', 'twitter', 'mean', 'realli', 'homework', 'peopl', 'live', 'imit', 'sad'], ['twitter', 'mean', 'pic', 'late', 'stole', 'mine', 'entir', 'day'], ['ugh', 'knee', 'injuri', 'except', 'mine', 'infect', 'cut', 'hurt', 'like', 'hell'], ['bum', 'miss', 'rock', 'climb', 'trip', 'next', 'week'], ['red', 'wtf', 'happen', 'dark', 'blue', 'black', 'stripe'], ['sick', 'stomach', 'headach', 'wish', 'someon', 'could', 'come', 'rub', 'templ'], ['realli', 'want', 'sleep', 'butmi', 'eye', 'not', 'let'], ['not', 'good', 'start', 'day', 'left', 'money', 'home', 'hot', 'day', 'look', 'free', 'carpark'], ['want', 'wednesday', 'alreadi', 'hurri', 'go', 'new', 'zealand', 'busi', 'not', 'sit', 'bore', 'stress'], ['ah', 'man', 'suck', 'happen', 'prompt', 'reinstal'], ['hemp', 'cloth', 'marvel', 'unfortun'], ['note', 'not', 'feel', 'miss'], ['reject'], ['stupid', 'msn', 'not', 'sign'], ['ship', 'stuck'], ['hurt'], ['dread', 'go', 'work', 'friiday', 'whoop'], ['home', 'lone'], ['school', 'absolut', 'sick', 'want', 'go', 'home', 'write', 'geographi', 'best'], ['love', 'babi', 'not', 'hurt', 'not', 'hurt', 'want', 'watch', 'ruxburi', 'right'], ['oop', 'cy', 'place', 'near', 'troubl'], ['blast', 'past', 'nts', 'must', 'suck', 'bad', 'school'], ['sad', 'not', 'get', 'see', 'rica', 'leav', 'later', 'today'], ['way', 'block', 'follow', 'idea', 'sorri'], ['want', 'somebodi', 'love', 'love', 'think', 'constant'], ['exact', 'hate', 'drive', 'thru', 'dandi', 'sittin', 'light', 'next', 'car', 'asian', 'r', 'callin', 'amp', 'held', 'knife', 'scum'], ['doodl', 'wrong'], ['freakin', 'lond', 'thursday', 'readi', 'hit', 'hay', 'surpris', 'surpris', 'not', 'freakin', 'sleep', 'boo'], ['weather', 'ugh', 'someth', 'like', 'asthma', 'yeah', 'ventolin'], ['need', 'good', 'idea', 'fast'], ['comput', 'kill', 'combo', 'mirror', 'edg', 'realli', 'poor', 'thermal', 'gpu', 'one', 'sad', 'game'], ['weather', 'make', 'finger', 'numb', 'still', 'wait'], ['tri', 'finish', 'move', 'stuff', 'tonight', 'not', 'feel', 'good'], ['mudweight', 'haul', 'last', 'time'], ['lot', 'confus', 'work', 'place'], ['tummi', 'hurt', 'go', 'away', 'cramp', 'hate', 'chuu'], ['need', 'come', 'anoth', 'blog', 'post', 'today', 'sleeppyy'], ['wish', 'could', 'find', 'camera', 'realli', 'want', 'record'], ['quot', 'might', 'interest', 'quot', 'thank', 'came', 'saw', 'winc', 'much', 'like', 'flatland'], ['ahh', 'right', 'kidney', 'hurt', 'soo', 'bad', 'oommgg'], ['lost', 'voic', 'tortur'], ['hate', 'wash', 'hair', 'dri', 'amp', 'straighten', 'find', 'grey', 'hair', 'middl', 'layer', 'hair'], ['excit', 'ysj', 'summer', 'ball', 'wish', 'one'], ['love', 'music', 'much', 'gone', 'pain', 'play', 'side', 'finger', 'peel', 'blister', 'play', 'much'], ['hi', 'mel', 'feel', 'unhappi', 'take', 'bit', 'fri', 'not', 'overdo', 'help', 'not'], ['envious', 'peopl', 'not', 'mushi', 'one', 'cuddl'], ['way', 'exam', 'nervous', 'bah'], ['racoon', 'ate', 'bread'], ['miss', 'everyon', 'tonight'], ['ugh', 'two', 'week', 'push', 'produc', 'six', 'pack', 'produc', 'noth', 'pain'], ['tryna', 'find', 'yr', 'old', 'junt', 'k', 'stabl', 'job', 'good', 'home', 'extra', 'room', 'tire', 'young', 'dude'], ['dang', 'internet'], ['get', 'good', 'download', 'speed', 'one', 'els', 'use', 'connect'], ['launch', 'twittix', 'not', 'convinc'], ['consol', 'got', 'bmi', 'test', 'hahaha', 'say', 'obes', 'well', 'much', 'unhappi', 'minut'], ['ooh', 'feel', 'sleepi', 'not', 'want', 'go', 'school'], ['thank', 'girl', 'woke', 'cnt', 'believ', 'sick', 'fever', 'wish', 'could', 'pound', 'nyquil', 'suck'], ['tire', 'not', 'sleep'], ['much', 'sand', 'sd', 'pismo', 'weekend', 'anoth', 'canon', 'powershot', 'broken', 'one', 'year', 'buy', 'time'], ['realli', 'annoy', 'work', 'appear', 'block', 'facebook'], ['yeah', 'notic', 'miss', 'spender', 'closer', 'hold'], ['miss'], ['lone', 'need', 'hug'], ['friday', 'well', 'technic', 'realli', 'thursday', 'dang', 'work', 'saturday', 'morn'], ['get', 'readi', 'tom', 'got', 'go', 'make', 'sure', 'not', 'done', 'anyth', 'stupid', 'ill', 'tweet', 'later'], ['woke', 'bad', 'dream', 'grr'], ['anticip', 'tough', 'day', 'ahead'], ['tire'], ['poor', 'lmao', 'stick', 'head', 'window'], ['head', 'hurt'], ['not', 'believ'], ['take', 'soul', 'friend', 'famili', 'watch', 'die', 'nightmar', 'trust'], ['hey', 'whore', 'kind', 'mean', 'not', 'yu', 'think'], ['wow', 'christian', 'lacroix', 'bankrupt', 'sad'], ['yeah', 'mine', 'said', 'quot', 'nice', 'pictur', 'quot', 'amp', 'gave', 'red', 'x', 'hope', 'get', 'work', 'soon'], ['got', 'messga', 'not', 'work', 'text', 'saver', 'not', 'like', 'money', 'credit', 'sad', 'wat', 'xoxo'], ['much', 'learn'], ['missin', 'bro'], ['kidney', 'stone', 'realli', 'ugh'], ['youtub', 'account'], ['back'], ['also', 'spoke', 'lt'], ['still', 'sick', 'home'], ['place', 'call', 'take', 'somebodi'], ['hate', 'feel', 'get', 'listen', 'song', 'complet', 'remind', 'thing', 'use', 'amp', 'get', 'emot'], ['want', 'ride', 'bicycl', 'today', 'cold', 'cloudi', 'today'], ['ever', 'come', 'across', 'someth', 'remind', 'alot', 'one', 'person', 'complet', 'broke', 'heart'], ['hungri', 'agaaiin', 'maam'], ['alreadi', 'noo'], ['parti', 'wipe', 'dead', 'stuff'], ['still', 'not', 'call', 'back', 'regard', 'groundbreak', 'product', 'sent', 'earlier'], ['morn', 'folk', 'light', 'tweet', 'today', 'crowd', 'busi', 'friday', 'insid', 'sunshin'], ['ugh', 'frustrat', 'see', 'brief', 'week', 'group', 'most', 'tradit', 'agenc'], ['not', 'pet', 'appart', 'realli', 'want', 'rat', 'yet'], ['oh', 'see', 'mean', 'heltershelt', 'person', 'lol', 'yer', 'look', 'scari'], ['not', 'work'], ['good', 'morn', 'peopl', 'good', 'old', 'germani', 'soo', 'cold'], ['dead', 'like', 'awsom', 'love', 'show', 'miss', 'last', 'episod', 'though'], ['fed', 'three', 'hungri', 'stray', 'kitti', 'three', 'can', 'tuna', 'hope', 'stay', 'warm', 'safe', 'tonight'], ['lone', 'need', 'compani'], ['listen', 'msi', 'bake', 'banana', 'bread', 'weird', 'remark', 'not', 'much', 'anymor'], ['wtf', 'advertis', 'gone', 'mad', 'want', 'access', 'camera', 'microphon', 'amazon', 'realli', 'know', 'better'], ['hate', 'websit', 'say', 'ticket', 'price', 'anoth', 'websit', 'not'], ['alic', 'not', 'know', 'wear', 'cinema', 'lt'], ['wonder', 'cold', 'skylight', 'open', 'left', 'gas', 'morn'], ['not', 'know', 'folk', 'sorri'], ['not', 'think', 'go', 'get', 'see', 'sun', 'today', 'gut', 'need', 'colour'], ['youtub', 'tube', 'appear', 'clog', 'somewhat', 'today', 'connect', 'error', 'plenti'], ['tara', 'thai', 'time', 'friend', 'birthday', 'food', 'pretti', 'bad'], ['wow', 'must', 'tire', 'fell', 'asleep', 'exact', 'start', 'news', 'amp'], ['never', 'good', 'stereotyp', 'teen'], ['hate', 'continu', 'get', 'sick', 'whenev', 'exam'], ['missd', 'otha', 'disney', 'day', 'yesterday'], ['song', 'come', 'goodby', 'stuck', 'head', 'not', 'good', 'song', 'sing', 'consid', 'situat'], ['weird', 'realli', 'want', 'harri', 'potter', 'bed', 'spread', 'pillow', 'wish', 'could', 'find', 'one', 'not', 'gryffindor'], ['readi', 'product', 'friday', 'one', 'last', 'year'], ['hella', 'pushin', 'tha', 'could', 'not', 'smash', 'thru'], ['sick', 'amp', 'tire', 'sick', 'amp', 'tire'], ['seiz', 'bolt', 'ya', 'still', 'stuck', 'bush', 'actual', 'seiz', 'bolt', 'lame', 'perhap', 'heat', 'work'], ['found', 'one', 'ankl', 'hurt'], ['worst', 'dream', 'ever', 'laker', 'lose', 'zip', 'amp', 'courney', 'cox', 'mohawk', 'wtf'], ['true', 'not', 'know', 'bother', 'morn', 'cos', 'put', 'poni', 'soon', 'got', 'work', 'anyway'], ['not', 'look', 'forward', 'dress', 'shop', 'tomorrow', 'afraid', 'way', 'abl', 'get', 'want'], ['thank', 'old', 'comput', 'slow', 'kubuntu', 'blender', 'realli'], ['miss', 'last', 'night', 'hon'], ['shuck', 'sorri', 'sometim', 'get', 'wrap', 'fb', 'forget', 'check'], ['caa', 'wahh', 'want', 'cri'], ['appar', 'misplac', 'ipod', 'gb'], ['disappoint', 'go', 'sleep'], ['central', 'lesson', 'histori', 'state', 'parasit', 'alway', 'expand', 'destroy', 'host', 'popul', 'stefan', 'molyneux'], ['aww', 'suck'], ['not', 'wtf', 'whatthefuck', 'realli', 'realli', 'tri', 'kill', 'might', 'depend'], ['serious', 'heartbroken'], ['nick', 'voic', 'still', 'make', 'want', 'kill', 'thing'], ['ever', 'come', 'sf', 'bay', 'area', 'preform', 'feel', 'left'], ['oh', 'think', 'not', 'well', 'photo', 'edit', 'db', 'sorri'], ['aww', 'sad', 'stupid', 'crap', 'phone', 'decid', 'would', 'go', 'screw', 'never', 'work', 'arghh'], ['god', 'weather', 'london', 'ammaz', 'yet', 'train', 'half', 'day'], ['ask', 'ryan', 'stop', 'follow', 'twitter'], ['go', 'bed', 'not', 'sleep', 'right'], ['horribl', 'nightmar', 'not', 'go', 'go', 'back', 'sleep'], ['suffer', 'internet', 'work', 'bad', 'site', 'host', 'russian', 'server', 'avail'], ['tri', 'hard', 'not', 'worri', 'peac', 'despit', 'circumst', 'wonder', 'christian', 'one', 'make', 'hard'], ['feel', 'like', 'alott', 'drug'], ['ahh', 'fuster'], ['think', 'hire', 'one', 'tranlsat', 'one', 'ever', 'understand'], ['epic', 'ocd', 'moment', 'delet', 'sim', 'file', 'spent', 'hour', 'build', 'set', 'favorit', 'food', 'wrong'], ['ugli', 'programm', 'open'], ['massiv', 'headach', 'argh'], ['yay', 'friday', 'hold', 'work', 'tomorrow'], ['head', 'home', 'could', 'realli', 'done', 'without', 'bang', 'head', 'way', 'bus'], ['also', 'hit', 'chin', 'someth', 'fell', 'hurt', 'ugh', 'work', 'go', 'suck'], ['feel', 'sorri', 'everi', 'time', 'print', 'use', 'like', 'new', 'paper'], ['uni', 'work', 'weekend', 'fun', 'time'], ['blech', 'fail', 'receiv', 'dollar', 'quot', 'job', 'usd', 'last', 'month', 'get', 'paid', 'major', 'loss'], ['first', 'time', 'go', 'home', 'earli', 'suck', 'b', 'singl', 'one', 'call'], ['fault', 'not', 'make', 'leav'], ['not', 'let', 'chang', 'background'], ['realli', 'want', 'marri', 'leighton', 'meester', 'damn', 'take', 'eye'], ['ill', 'bed', 'stomach', 'kill'], ['bummer', 'know', 'lol', 'actual', 'parti', 'school', 'think', 'somehow', 'help'], ['gawd', 'peopl', 'still', 'rememb', 'pregger', 'comment', 'hate'], ['ugh', 'not', 'doin', 'good'], ['whyy', 'still', 'awak', 'work', 'not', 'good'], ['not', 'feel', 'like', 'get'], ['gone', 'r', 'day', 'wen', 'use', 'sit', 'exam', 'exam', 'class', 'bunk', 'n', 'fun'], ['tire', 'not', 'sleep', 'tri'], ['marri', 'lt', 'fun', 'parti', 'tonight', 'drink', 'wud', 'come', 'see'], ['wast', 'live'], ['know', 'man', 'day', 'pull', 'bed'], ['got', 'sore', 'feet'], ['uff', 'ble', 'litt', 'trist', 'av', 'lese', 'den', 'sist', 'tweetsen', 'din', 'challeng', 'proov', 'tough'], ['back', 'amp', 'e', 'nice', 'doctor', 'diagnos', 'ligament', 'damag', 'felt', 'could', 'still', 'run', 'might', 'take', 'day', 'heal'], ['havin', 'stupid', 'stomach', 'pain', 'amp', 'today', 'outing', 'sph', 'frenz', 'amp', 'stomach', 'nvr', 'fail', 'dissappoint', 'haiz'], ['dude', 'not', 'even', 'say', 'bye'], ['son', 'birthday', 'mexican', 'meal', 'major', 'game', 'buy', 'miss', 'lego', 'day'], ['oop', 'complet', 'forgot'], ['boo', 'season', 'final'], ['noth', 'sad', 'actual'], ['rain', 'rain', 'go', 'away'], ['fuck', 'typic', 'gh', 'arriv', 'leav', 'work', 'go', 'long', 'day'], ['constant', 'listen', 'song', 'fli', 'cutest', 'quot', 'peter', 'pan', 'amp', 'wendi', 'turn', 'fine', 'quot'], ['bout', 'knock', 'feelin', 'lil', 'sick', 'peac'], ['noo', 'miss', 'much', 'went', 'stag', 'prom', 'high', 'school', 'middl', 'school', 'danc', 'help', 'gt', 'gt'], ['slept', 'day', 'lol', 'time', 'start', 'un', 'articl', 'fun'], ['give', 'easili'], ['not', 'friend', 'ever', 'miss', 'year', 'old', 'perv', 'like', 'not', 'shape', 'shifter'], ['hey', 'chocol', 'chip', 'good', 'want', 'snack', 'snack'], ['hubbi', 'dentist', 'readi', 'hold', 'hand', 'get', 'nervi', 'potenti', 'buy', 'car', 'tomorrow'], ['googledoc', 'folder', 'instead', 'label', 'like', 'gmail', 'kind', 'like', 'label'], ['need', 'present', 'mom', 'could', 'anybodi', 'help'], ['go', 'post', 'offic', 'tri', 'sort', 'whole', 'ebay', 'hacker', 'thing'], ['yeah', 'go', 'rubbish'], ['miss', 'man', 'two', 'month', 'long', 'not', 'see'], ['sf', 'felt', 'way', 'intens', 'tonight', 'hope', 'not', 'keep', 'upset', 'not', 'hang', 'pearl'], ['chilli', 'n', 'lonley', 'n', 'livingroom'], ['sorri', 'hear', 'lost', 'two', 'hard', 'drive', 'year', 'know', 'feel'], ['mani', 'farewel', 'parti', 'sad', 'see', 'peopl', 'leav'], ['make', 'jealous', 'want', 'one', 'long', 'guy', 'marri'], ['close', 'sale', 'not', 'look', 'good'], ['sleepi', 'feel', 'weather', 'ugh', 'damn', 'tonsil', 'need', 'compani', 'somebodi', 'talk'], ['word', 'count', 'hand', 'hurt'], ['would', 'total', 'take', 'not', 'alreadi', 'gone', 'sorri', 'lol'], ['hmm', 'think', 'take', 'back', 'feel', 'better', 'morn', 'think', 'spoke', 'earli'], ['wish', 'not', 'bum', 'kind'], ['took', 'today', 'work', 'slept', 'day'], ['itun', 'upgrad', 'reset', 'playcount', 'zero', 'know', 'one', 'hasta', 'siempr', 'version', 'like', 'best'], ['feel', 'bore', 'miss', 'school', 'time'], ['stomach', 'explod', 'wendi', 'everyth', 'tast', 'good', 'bad'], ['worst', 'mine', 'use', 'realli', 'bad', 'first', 'not', 'even', 'get', 'bed'], ['imissu', 'come', 'back', 'home', 'honey'], ['fall', 'asleep', 'wake', 'gun', 'shot', 'not', 'fun'], ['concern', 'famili'], ['fix', 'bike', 'chain', 'way', 'filthi', 'bloodi', 'mess', 'love', 'weather', 'though'], ['not', 'sleep', 'amp', 'miss', 'long', 'hairr'], ['mom', 'ok', 'far', 'miss', 'jaron'], ['call', 'toyota', 'car', 'not', 'readi', 'til'], ['oh', 'dear', 'not', 'fun'], ['not', 'watch', 'hgtv', 'afraid', 'infomerci', 'take'], ['aw', 'hiccup', 'today', 'not', 'fall', 'asleep'], ['know', 'wish', 'would', 'want', 'cuddl', 'sleep', 'ga', 'go', 'world', 'coke'], ['hey', 'site', 'go', 'listen', 'web', 'stream', 'not', 'get', 'site'], ['oh', 'cr', 'p', 'placebo', 'tix', 'tori', 'amo', 'go', 'sale', 'anticip', 'hot', 'cake', 'distribut'], ['want', 'move', 'qld', 'alreadi', 'cold', 'weather', 'kill'], ['woke', 'amp', 'not', 'go', 'back', 'sleep', 'txt', 'bff', 'sayin', 'call', 'sound', 'import', 'hour', 'ago'], ['play', 'bejewl', 'facebook', 'damn', 'want', 'higherscor'], ['truss', 'fail'], ['stuck', 'huge', 'traffic', 'jam'], ['porridg', 'tast', 'shit', 'cba', 'today', 'man'], ['sell', 'car', 'cost', 'much', 'afford', 'one', 'rollersk', 'bye', 'bye', 'petey'], ['love', 'morn', 'cycl', 'work', 'met', 'degre', 'offic'], ['trend', 'topic', 'twitter', 'use', 'use', 'like', 'middl', 'schooler', 'pass', 'around', 'note', 'class', 'bore'], ['hate', 'type', 'mac', 'wish', 'done', 'english', 'essay', 'soon', 'sleepi'], ['want', 'get', 'hand', 'dirti', 'fubumvc', 'document', 'not', 'yet', 'complet'], ['serious', 'get', 'hurt', 'day', 'nation', 'joke'], ['mosquito', 'truck', 'wake'], ['haha', 'okay', 'talk', 'middl', 'colleg', 'grad', 'think', 'got', 'worri'], ['not', 'tell', 'thrill', 'noseble', 'first', 'time', 'age', 'overjoy', 'not', 'cover', 'urgh'], ['not', 'seem', 'sleep', 'tonight', 'need', 'get', 'less', 'hour'], ['bah', 'wake'], ['hate', 'work', 'especi', 'weather', 'good'], ['torn', 'get', 'extend', 'warranti', 'iphon', 'mine', 'run', 'jailbreak', 'alreadi', 'got', 'problem', 'batteri', 'amp', 'earpiec'], ['back', 'much', 'email', 'inbox'], ['friday', 'night', 'fav', 'night', 'week', 'go', 'stupid', 'dog', 'train', 'class'], ['think', 'goe', 'everyth', 'thought', 'olymp', 'spirit', 'team', 'gb'], ['suck', 'go', 'summer', 'school', 'need', 'catch', 'sever', 'unit'], ['miss', 'cari', 'want', 'drink', 'chocol', 'milk'], ['not', 'ask', 'hope', 'today', 'improv', 'rest', 'week', 'look', 'forward', 'weekend', 'weather'], ['suck', 'took', 'like', 'minut', 'go', 'sleep', 'final'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['ill', 'hate', 'see', 'doc'], ['want', 'get', 'hand', 'dirti', 'fubumvc', 'document', 'not', 'yet', 'complet'], ['shit', 'week', 'fuck', 'week', 'gym', 'worst', 'headach'], ['oh', 'mood', 'go', 'home', 'birthday'], ['crazi', 'part', 'reason', 'includ', 'quot', 'full', 'schedul', 'quot', 'amp', 'quot', 'travel', 'daughter', 'quot', 'not', 'cool'], ['omg', 'sorri', 'worst', 'employe', 'ever', 'hard', 'drive', 'fail', 'take', 'survey', 'data'], ['sad', 'not', 'give', 'not', 'noth'], ['brother', 'woke', 'help', 'homework', 'not', 'happi'], ['disturb', 'sold', 'babi', 'tiger', 'met', 'thailand', 'exot', 'pet', 'greedi', 'bastard'], ['yep', 'wish', 'play', 'dubiln'], ['also', 'anyon', 'els', 'hayfeveri', 'today', 'awak', 'sufferin', 'alreadi'], ['dog', 'fart', 'bad'], ['morn', 'alex', 'hope', 'tweet', 'lot', 'today', 'miss', 'not', 'xx'], ['euh', 'got', 'ldap', 'schema', 'error', 'oh'], ['sorri', 'hear', 'man', 'bullshit', 'not', 'reach', 'heart', 'goe', 'famili'], ['aw', 'sad', 'leav', 'tokyo', 'come'], ['haha', 'nice', 'fun', 'doll', 'hope', 'see', 'ya', 'soon', 'miss', 'face'], ['cold', 'still', 'not', 'find', 'hoodi'], ['eat', 'pringl', 'near', 'realli', 'remind', 'tour', 'jona', 'brother', 'not', 'ask', 'miss', 'much'], ['yummi', 'chocol', 'even', 'got', 'one', 'anybodi', 'listen'], ['make', 'sure', 'next', 'time'], ['hope', 'go', 'away', 'quicker', 'mine', 'week', 'count'], ['wish', 'could', 'go', 'back', 'bed'], ['woke', 'day', 'need', 'go', 'work', 'suck', 'also', 'go', 'dentist', 'fill', 'st', 'helen', 'mri', 'scan'], ['mom', 'left'], ['finish', 'watch', 'termin', 'music', 'noth', 'great'], ['not', 'afford', 'go', 'school'], ['need', 'retail', 'therapi', 'bad', 'money', 'geebus'], ['feel', 'less', 'noth', 'lower', 'zero'], ['attempt', 'sleep', 'puppi', 'sick', 'alreadi'], ['mind', 'race', 'word', 'wrote', 'hate', 'hate', 'not', 'keep', 'fall'], ['not', 'sleep', 'tire', 'goodnight', 'mayb'], ['blimey', 'still', 'suffer'], ['yeah', 'thumb', 'last', 'night', 'sorri'], ['oh', 'fack', 'gave', 'polic', 'serious', 'shit'], ['not', 'afford', 'go', 'school'], ['broke', 'cigarett'], ['feel', 'like', 'red', 'lea'], ['squirrel', 'hate', 'squirrel'], ['morn', 'twitti', 'head', 'colleg', 'back', 'doc', 'god', 'hungri', 'strech', 'ear', 'today', 'payday', 'love'], ['backach'], ['finish', 'video', 'fuck', 'long'], ['lappytop', 'baterri', 'die', 'tryingtofind', 'movieto', 'watch', 'sinc', 'stay', 'goingto', 'room'], ['longer', 'ticket', 'ny'], ['sun', 'shine', 'stuck', 'work'], ['bitten', 'smoothstream', 'not', 'seem', 'work', 'client', 'linux'], ['not', 'know', 'could', 'would', 'cost', 'soo', 'much'], ['madaya', 'ka', 'christian', 'bleh', 'hate'], ['myspac', 'mobil', 'free', 'credit', 'lier'], ['not', 'follow', 'ruin', 'twitter', 'experi'], ['flight', 'hurghada', 'delay', 'hour'], ['go', 'strang', 'weekend', 'probabl', 'srtart', 'work', 'til', 'midnight', 'tonight'], ['lucki', 'want', 'see', 'loservill', 'piti', 'oz'], ['allow', 'calcul', 'exam', 'despit', 'contain', 'lath', 'imposs', 'comput', 'head'], ['whataburg', 'close', 'locat', 'talli', 'harsh', 'might', 'transfer', 'school'], ['hour', 'sleep', 'mild', 'hangov', 'careless', 'loss', 'brand', 'new', 'ipod', 'pouch'], ['worn', 'week', 'sped', 'soo', 'fast', 'go', 'ask', 'mum', 'go', 'movi', 'desper'], ['wee', 'laddi', 'upset', 'hour', 'tri', 'sooth', 'bed', 'nurs', 'etc', 'nope', 'real', 'food', 'blue', 'clue'], ['play', 'skate', 'two', 'hour', 'need', 'get', 'actual', 'skate', 'late'], ['got', 'dentist', 'appoint', 'soon', 'drill', 'feel', 'like', 'got', 'brain', 'blender', 'not', 'look', 'forward'], ['ghh', 'went', 'hour', 'earlier', 'bed', 'think', 'ill', 'get', 'area', 'hr', 'sleep', 'woke', 'hr', 'earlier', 'today', 'go', 'loong', 'one'], ['contempl', 'hand', 'love', 'car'], ['fuck', 'recover', 'boot', 'part', 'mess', 'grr', 'argh', 'busi'], ['ate', 'pussi', 'refus', 'bless', 'cuz', 'alreadi', 'clingi'], ['not', 'well', 'definit', 'not', 'hayfev'], ['come', 'hard', 'find', 'guy', 'passion', 'love', 'woman', 'ever', 'go', 'see', 'day', 'lone'], ['sorri', 'not', 'want', 'cuz', 'act', 'turn', 'right', 'around', 'ignor'], ['oh', 'gosh', 'hair', 'short', 'miss', 'long', 'hair'], ['probabl', 'not', 'weather'], ['lindsay', 'spanish', 'fansit', 'love', 'pleas', 'repli', 'us', 'wish', 'good', 'flight', 'lt'], ['live', 'countri', 'govern', 'alway', 'circus', 'show', 'sad', 'true'], ['dead', 'grandpa', 'pay', 'attent'], ['lol', 'haha', 'realli', 'realli', 'miss'], ['want', 'see', 'stori', 'acorn', 'tonight', 'glen', 'beck', 'miss'], ['almost', 'say', 'quot', 'bless', 'quot', 'sneez', 'cat'], ['goodi', 'feel', 'like', 'disconnect'], ['sigh', 'alway', 'disappoint', 'peopl', 'get', 'way', 'everyon', 'might', 'disappoint', 'everyon', 'els'], ['night', 'dm', 'said', 'quot', 'good', 'quot', 'question'], ['hate', 'bit'], ['miss', 'sweeti'], ['miss', 'feb', 'best', 'night', 'whole', 'entir', 'fuck', 'life', 'would', 'rather', 'night', 'win'], ['kid', 'rememb', 'search', 'local', 'video', 'store', 'owner', 'godown', 'got', 'video', 'tape', 'fungus', 'badluck'], ['wish', 'compani'], ['work', 'suckd', 'anoth', 'close', 'nite', 'dollar', 'pocked', 'need', 'new', 'job'], ['woken', 'feel', 'littl', 'not', 'thing', 'drink', 'bar', 'dri', 'card', 'final', 'sober', 'home', 'time', 'think'], ['bummer', 'tomorrow', 'friday'], ['screw', 'fact', 'not', 'post', 'long', 'updat', 'twitter'], ['not', 'much', 'debat'], ['hey', 'got', 'text', 'sms', 'plan', 'mayb', 'catch', 'flick', 'tonight', 'last', 'night', 'wee', 'bit', 'much'], ['four', 'full', 'day', 'left', 'not', 'want', 'go', 'home'], ['gone'], ['damn', 'fail', 'assassin', 'attempt', 'loui'], ['still', 'awak', 'smh', 'suck'], ['headach', 'cold'], ['grr', 'allow', 'gas', 'grill', 'live', 'suck'], ['headach', 'kill', 'yet', 'need', 'cover', 'bore', 'polic', 'event'], ['sick', 'doctor', 'wait', 'room'], ['much', 'detail', 'glad', 'better'], ['finish', 'villag', 'love', 'could', 'watch', 'wonder', 'not', 'get', 'sleep', 'tonight'], ['soo', 'lost', 'without', 'car', 'truli', 'depress', 'pregnant', 'peopl', 'never', 'stress'], ['like', 'saddest', 'person', 'jtv', 'right', 'not'], ['marley', 'saddest', 'movi', 'ever', 'never', 'cri', 'movi', 'movi', 'mad', 'cri'], ['look', 'forward', 'see', 'raleigh', 'fan', 'year', 'nb', 'scalper', 'took', 'tix', 'sell', 'moron'], ['got', 'attack', 'club'], ['car', 'drop', 'servic', 'mot', 'get', 'train', 'home', 'hate', 'public', 'transport'], ['morn', 'tweepl', 'bit', 'sneezi', 'today'], ['tri', 'understand', 'join', 'els', 'felt', 'left'], ['not', 'win', 'kelli', 'clarkson', 'ticket', 'sorri', 'cecilia', 'realli', 'wish', 'could', 'give', 'much', 'deserv'], ['mad', 'go', 'miss', 'main', 'tomorrow', 'take', 'ef', 'day', 'fli', 'florida'], ['want', 'stay', 'bed', 'day', 'go', 'work', 'instead', 'suck'], ['fun', 'tweet', 'day', 'clean', 'hair', 'lol'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['fix', 'favourit', 'heel', 'fell', 'wear'], ['realiz', 'chris', 'lake', 'spin', 'stockholm', 'yesterday', 'miss'], ['haha', 'love', 'surpris', 'not', 'work', 'til', 'sunday', 'though', 'wait'], ['hate', 'late'], ['feel', 'like', 'shit', 'hope', 'not', 'swine', 'flu', 'someth'], ['friday', 'sick', 'stori', 'life'], ['yummiest', 'pan', 'mee', 'behind', 'danc', 'center', 'ipoh', 'garden', 'south', 'miss'], ['almost', 'lost', 'phone', 'silli', 'indi'], ['still', 'depress', 'felin', 'anoth', 'trip', 'vet', 'tomorrow', 'see', 'not', 'even', 'cover'], ['wtf', 'pog', 'back'], ['go', 'miss', 'roomi', 'longer', 'roomi', 'start', 'tomorrow'], ['sus', 'ate', 'upset', 'not', 'inform', 'turn', 'told', 'sarm', 'expect', 'tell', 'huff'], ['done', 'much', 'brazilian', 'ha', 'meh', 'think', 'love', 'countri', 'uk'], ['buy', 'new', 'washer', 'bought', 'dryer', 'dryer', 'label', 'electr', 'gas', 'grr', 'load', 'tomorrow', 'return'], ['lone', 'right', 'mayb', 'sade', 'got', 'feel', 'like'], ['burfday', 'alon'], ['busi', 'pleasur', 'keep', 'eye', 'anyth', 'miss', 'moondog', 'concert', 'tomorrow', 'night'], ['hmz', 'second', 'popular', 'page', 'government', 'site', 'page', 'fail'], ['want', 'somebodi', 'hold', 'alma', 'tear', 'tear'], ['bore', 'not', 'even', 'teas', 'peopl'], ['bad', 'not', 'either'], ['not', 'think', 'said', 'true', 'rant', 'mcfli', 'not', 'beliv', 'feel', 'asham'], ['begin', 'get', 'way', 'hard', 'pleas', 'friend'], ['not', 'mood'], ['awak', 'not', 'get', 'back', 'sleep'], ['feel', 'realli', 'realli'], ['better', 'work'], ['miss'], ['oh', 'cr', 'goe', 'head', 'quot', 'spin', 'around', 'quot'], ['bad', 'sweden', 'not', 'theater', 'octob'], ['wide', 'awak', 'wish', 'not', 'damn', 'nightshift', 'routin', 'got', 'turn', 'job', 'nashvill', 'oh', 'well'], ['emerg', 'room', 'cousin', 'got', 'mad', 'flu', 'not', 'walk', 'breath', 'hospit', 'alway', 'cold'], ['got', 'finish', 'watch', 'marley', 'cri', 'like', 'fuck', 'miss', 'beast', 'like', 'crazi'], ['phone', 'pass', 'away', 'yesterday', 'jump', 'tabl', 'search', 'new', 'phone'], ['tri', 'best', 'write', 'five', 'year', 'behind', 'heh', 'happen'], ['tummi', 'bug', 'lame', 'got', 'hour', 'sleep'], ['nobodi', 'love', 'twitter'], ['bubbl', 'tea', 'awesom', 'long', 'sinc'], ['soo', 'full', 'start', 'feel', 'sick'], ['know', 'better', 'noth'], ['ever', 'realiz', 'never', 'fulli', 'everyth', 'want', 'feelin'], ['hell', 'awak', 'earli'], ['sad', 'best', 'friend', 'selfish', 'heartless', 'exclud', 'life', 'sad'], ['sad', 'true', 'not', 'right'], ['lost', 'friend', 'alon', 'want', 'go', 'home'], ['not', 'get', 'joke'], ['sorri', 'lone'], ['soo', 'excit', 'pasadena', 'find', 'conferm', 'email'], ['bed', 'tha', 'nerv', 'call', 'blackberri', 'askin', 'hell', 'like', 'got', 'go', 'ya', 'c', 'nap'], ['alreadi', 'feel', 'like', 'one', 'day', 'not', 'abl', 'win'], ['sorri', 'twitter', 'suck', 'ball', 'sinc', 'repli', 'chang', 'fixrepli'], ['rain', 'aahh', 'go', 'melt', 'damn', 'cold', 'freakin', 'cold', 'brr'], ['realli', 'miss', 'photofiltr', 'photoscap', 'gimp', 'damn', 'confus'], ['quot', 'academ', 'cours', 'quot', 'miss', 'alreadi'], ['hard', 'find', 'good', 'hous', 'event', 'sacramento', 'area'], ['last', 'bore', 'previous', 'dayss'], ['bed', 'not', 'sleep', 'someth', 'miss'], ['actual', 'think', 'mean', 'feel', 'sorri'], ['wed', 'tv', 'make', 'cri', 'inner', 'desir', 'etern', 'happi', 'start', 'rest', 'life'], ['not', 'go', 'bed', 'soo', 'tire'], ['man', 'start', 'rain', 'real', 'hard'], ['not', 'mind', 'agh'], ['oh', 'sorri', 'hear', 'sad'], ['okay', 'serious', 'bore', 'noth', 'not', 'go', 'rain'], ['nice', 'concert', 'yesterday', 'nice', 'locat', 'nice', 'peopl', 'great', 'bad', 'cold', 'sinc', 'yesterday', 'night', 'sick', 'suck'], ['not', 'believ', 'wait', 'till', 'octob', 'see', 'quot', 'quot', 'american', 'get', 'see', 'weekend'], ['earlier', 'stupid', 'orthadontist', 'appoint'], ['wrote', 'lyric', 'new', 'song', 'excit', 'slept', 'full', 'stomach', 'worst', 'feel', 'wake', 'still', 'feel', 'full', 'euggh'], ['bum', 'not', 'get', 'tedx', 'ticket'], ['wow', 'one', 'year', 'today', 'luc', 'bourdon', 'kill', 'not', 'seem', 'long', 'ago'], ['hour', 'sleep', 'rest', 'need'], ['dang', 'ran', 'bunni', 'way', 'home', 'feel', 'bad', 'compass', 'anim', 'human'], ['get', 'class', 'hope', 'make'], ['ahh', 'probabl', 'good', 'dubai'], ['not', 'sick', 'year', 'omg', 'suck', 'bad', 'sick', 'end', 'includ', 'full', 'restroom', 'cleanup'], ['file', 'much', 'less', 'fun', 'sort', 'cos', 'still', 'look', 'amp', 'hunt', 'detail'], ['oh', 'hate'], ['wish', 'get', 'least', 'row', 'day', 'not', 'enough', 'rest', 'day', 'day', 'day', 'day'], ['histor', 'jesus', 'ever', 'exist', 'find', 'hard', 'prove', 'hearsay', 'account', 'bug'], ['spent', 'hour', 'look', 'blog', 'topic', 'end', 'invent', 'grr'], ['guess', 'not', 'talk', 'orlando', 'magic', 'noth', 'magic'], ['tire', 'think', 'becom', 'old', 'go'], ['caught', 'tweet', 'got', 'home', 'time', 'last', 'min', 'show', 'bgt', 'tonight', 'miss'], ['hour', 'sleep', 'last', 'night', 'want', 'crawl', 'ball', 'somewher', 'sleep', 'hour', 'work', 'till', 'six'], ['horribl', 'sleep', 'rather', 'bad', 'mood'], ['sore', 'throat', 'come', 'record', 'start', 'new', 'citipoint', 'ep', 'album', 'argghh', 'prayer', 'need'], ['brodi', 'dare'], ['tummi', 'pain', 'n', 'woke', 'stu', 'drink', 'middl', 'night', 'not', 'rememb'], ['look', 'forward', 'daddi', 'return', 'work', 'saturday', 'gone', 'whole', 'month'], ['quot', 'fuck', 'quot', 'not', 'get', 'gift', 'exit', 'soo', 'awesom'], ['freak', 'bore', 'bus', 'hate', 'poor', 'return', 'min', 'train', 'return', 'hour', 'long', 'batteri'], ['footbal', 'session'], ['head', 'pool', 'around', 'serious', 'garden', 'go', 'tweetdeck', 'til', 'sunday', 'even'], ['not', 'fruit', 'sugar', 'cover', 'sweet', 'tummi', 'not', 'happi'], ['sudden', 'crave', 'broccoli', 'chees', 'soup', 'realli', 'bad', 'oh', 'hunger'], ['fo', 'shizzl', 'bore', 'want', 'go', 'someth', 'wish', 'went', 'pisay', 'today', 'oh', 'wellz', 'wonder'], ['actual', 'not', 'fun', 'would', 'think', 'hurt', 'week', 'similar', 'experi'], ['noth', 'could', 'get', 'wors', 'could', 'think', 'id', 'verg', 'kill', 'someon', 'els', 'thing', 'not', 'good', 'anymor'], ['oh', 'love', 'oreo', 'not', 'get', 'mani', 'varieti', 'uk'], ['work', 'earli', 'frustrat', 'work', 'get', 'frustrat', 'work', 'not', 'much', 'time', 'design', 'today'], ['aw', 'say', 'pic', 'not', 'exist', 'anymor'], ['spent', 'allow', 'cybernet', 'expo', 'sf', 'send', 'dm', 'rate', 'though', 'mayb', 'cash', 'flo', 'bttr'], ['michael', 'bay', 'sigh', 'sorri', 'love', 'not', 'know', 'felt', 'way', 'xd'], ['hurt', 'done', 'tri'], ['yucki', 'burn'], ['took', 'yearbook', 'photo', 'earlier', 'school', 'not', 'think', 'turn', 'great'], ['sudden', 'crave', 'broccoli', 'chees', 'soup', 'realli', 'bad', 'mouth', 'water', 'envis', 'bread', 'bowl', 'head'], ['today', 'weigh', 'lost', 'pound', 'week', 'depress'], ['explos', 'late', 'eighti', 'odd', 'weather', 'instead', 'migrat', 'wind', 'blew', 'back'], ['keep', 'get', 'delay', 'respons', 'internet', 'mess'], ['aww', 'heard', 'miss', 'two', 'amp'], ['write', 'report', 'card', 'soo', 'tire', 'amaz', 'day', 'check', 'fb', 'soon'], ['yes', 'watch', 'season', 'even', 'wish', 'could', 'get'], ['damn', 'got', 'chili', 'bean', 'shirt', 'hate', 'messi', 'eater', 'ladi'], ['start', 'diet', 'today', 'think', 'face', 'never', 'get', 'back', 'unless', 'cut', 'leg'], ['ferber', 'happen', 'everi', 'day', 'rohan', 'woke', 'unhappi', 'midnight', 'news', 'still', 'awak', 'due', 'afternoon', 'nap'], ['lorrain', 'kelli', 'sexi', 'mama'], ['uggh', 'not', 'know', 'want', 'stop', 'get', 'text', 'twitterr'], ['lol', 'cnt', 'slow'], ['sad', 'belov', 'boy', 'not', 'onlin', 'wait', 'everyday'], ['hard', 'furnitur', 'ship', 'know', 'backord', 'may', 'cancel', 'shop', 'local'], ['huh', 'alreadi', 'shuck'], ['aiaahh', 'poor', 'tell', 'mom', 'alreadi'], ['cold'], ['realli', 'wish', 'could'], ['laugh', 'much', 'today', 'pictur', 'lauren', 'chest', 'hurt'], ['sad', 'sad', 'sad', 'thought', 'aunti', 'stina', 'come', 'look', 'forward', 'miss', 'dat', 'alon', 'maui'], ['miss', 'soulja', 'boy', 'danc'], ['want', 'buy', 'million', 'copi', 'not', 'rich', 'buy', 'copi', 'urself', 'hahah'], ['still', 'not', 'asleep', 'ahh', 'wtf'], ['get', 'back', 'tokyo', 'miss'], ['two', 'page', 'assign', 'weekend', 'goe', 'chanc', 'relax'], ['omge', 'hurt', 'like', 'hell', 'final', 'got', 'back', 'not', 'close', 'put', 'ball', 'back'], ['feel', 'sick', 'day', 'today', 'arrgh'], ['least', 'get', 'broke'], ['not', 'right', 'need', 'make', 'sorri'], ['great', 'later', 'wish', 'book'], ['hear', 'full', 'album', 'preview', 'today', 'webcast', 'jonasnewsong', 'wayi', 'could', 'not'], ['jeff', 'not', 'forcast', 'tonight', 'say', 'saturday', 'good', 'time', 'not', 'life', 'saturday'], ['take', 'life', 'guard', 'class', 'fri', 'sat', 'sun', 'mon', 'live', 'eat', 'breath', 'life', 'guard', 'stuff', 'yay'], ['miss', 'westcott', 'micro', 'apollo'], ['thumb', 'hurt', 'break', 'nail'], ['dad', 'quot', 'trip', 'lahor', 'quot', 'quot', 'live', 'dc', 'amp', 'nyc', 'also', 'big', 'quot', 'bummer', 'pizza', 'hut', 'chicken', 'tikka', 'pizza'], ['seem', 'cruel', 'condit'], ['last', 'night', 'bottl', 'wine', 'hous', 'cocktail', 'came', 'home', 'sober', 'still', 'go', 'sick'], ['cupcak', 'gave', 'heartburn'], ['stayin', 'dustin', 'tonight', 'car', 'hate'], ['final', 'reunit', 'hunni', 'bunni', 'day', 'leav', 'anoth', 'week', 'away', 'work', 'night'], ['horribl', 'toothach', 'wink', 'sleep', 'xx'], ['woken', 'screamin', 'lil', 'nefuew'], ['movi', 'today', 'not', 'go', 'see'], ['not', 'think', 'sad', 'alot', 'pain', 'amp', 'bad', 'go', 'anotha', 'week', 'soon', 'xx'], ['sick', 'n', 'tire', 'peopl', 'steal', 'peopl', 'work'], ['much', 'bro'], ['back', 'work', 'warm', 'today'], ['miss', 'terribl'], ['burnt', 'finger', 'tri', 'keep', 'hand', 'warm', 'rice', 'cooker'], ['sunni', 'work'], ['chang', 'way', 'golden', 'gaytim', 'made', 'use', 'awesom'], ['us', 'go', 'stuck', 'offic', 'without', 'window'], ['wonder', 'come', 'not', 'twitter', 'week', 'yeah', 'adam', 'withdraw', 'syndrom', 'nice'], ['haha', 'balconi', 'seat', 'not', 'great', 'giant', 'dragon', 'thing', 'glow', 'red', 'eye', 'move', 'wing'], ['go', 'see', 'ill', 'uncl', 'saturday', 'night', 'hous', 'even', 'bad', 'news', 'come'], ['oh', 'dear', 'follow', 'someon', 'claim', 'help', 'stay', 'young', 'end', 'nigh'], ['pretti', 'lame', 'babe'], ['stun', 'busi', 'card', 'asham', 'mine'], ['aww', 'suck', 'also', 'finish', 'uni', 'total', 'mini', 'housewarm', 'yes', 'work', 'around', 'schedul', 'lol'], ['miss', 'daddi'], ['gawd', 'rain', 'strong'], ['not', 'best', 'financi', 'situat', 'moment', 'beyond', 'broke', 'money', 'spend', 'soon', 'earn', 'atm'], ['choos', 'sunday', 'win', 'shatter', 'not', 'healthi', 'enough', 'go'], ['go', 'see', 'ill', 'uncl', 'saturday', 'spend', 'night', 'hous', 'even', 'bad', 'news', 'come'], ['oww', 'think', 'tore', 'someth', 'leg'], ['morn', 'still', 'tri', 'find', 'babysitt', 'crech', 'gym', 'might', 'leav', 'know', 'not', 'happi'], ['must', 'scare', 'troll', 'guy', 'sad', 'tcot', 'right'], ['not', 'want', 'work', 'tomorrow', 'not', 'feel', 'good', 'not', 'felt', 'good', 'day', 'bodi', 'need', 'rest', 'mind', 'not', 'slow'], ['oh', 'ffs', 'not', 'get', 'paid', 'till', 'monday', 'sorri', 'william', 'go', 'wait', 'till', 'next', 'weekend', 'till', 'give'], ['alreadi', 'offic', 'peopl', 'melt', 'fight', 'air', 'con', 'fan', 'not', 'help', 'not', 'find', 'budget'], ['set', 'get', 'room', 'last', 'saturday', 'not', 'apologis', 'enough', 'miss', 'decci'], ['today', 'miss', 'coffeeclub', 'day'], ['not', 'think', 'sale', 'ciroc', 'luck'], ['back', 'track', 'transcript', 'process', 'still', 'not', 'stop', 'lappi', 'overh', 'though'], ['feel', 'rough'], ['defeat', 'polo'], ['fine', 'give', 'doc', 'today', 'not', 'abl', 'breath', 'morn', 'made', 'think', 'hate', 'doc'], ['friend', 'massiv', 'beatl', 'fan', 'not', 'impress'], ['nevermind', 'beyonc', 'not', 'twitter', 'haha'], ['know', 'heap', 'awesom', 'not', 'work', 'weekend'], ['predict', 'feel', 'lyk', 'shit', 'gahh', 'hate', 'bein', 'ill', 'wrk', 'tweet', 'lata', 'xx'], ['waay', 'tht', 'bitchi', 'ninth', 'grade', 'bullshit', 'half', 'year', 'exam', 'amp', 'sickk'], ['plan', 'might', 'gone', 'window', 'bit', 'gut'], ['follow', 'not', 'know', 'one', 'send', 'ps', 'not', 'get', 'hope', 'may', 'not', 'sen'], ['hot', 'sat', 'offic', 'want', 'sun', 'shine'], ['miss', 'crab', 'leg', 'attend', 'go', 'away', 'instead'], ['mayb', 'lack', 'friday', 'feel', 'cos', 'trouser', 'not', 'go', 'thunder', 'thigh'], ['broken', 'wrist'], ['sorri', 'love', 'left', 'over', 'come', 'sat', 'mi', 'casa', 'ton', 'birthday', 'ton', 'food'], ['awak', 'not', 'sleep', 'feel', 'sick', 'yuck'], ['allerg', 'cat', 'tonsil', 'get', 'swollen', 'hurt', 'doo'], ['wat', 'doin', 'bad', 'mixin', 'song'], ['fall', 'asleep', 'not', 'get', 'see', 'jona', 'brother', 'web', 'cast', 'still', 'tierd'], ['bought', 'new', 'racquet', 'wish', 'racquet', 'half', 'god', 'rest', 'despit', 'recess', 'thing', 'fkin', 'cost'], ['know', 'yes', 'not', 'remind', 'effin', 'jealous', 'fuck', 'aust', 'time'], ['cri', 'omg', 'fed', 'pain'], ['awhil', 'ago', 'freak', 'hot', 'wet', 'turn'], ['ruler', 'call', 'see', 'get', 'love'], ['realli', 'tire', 'not', 'much', 'time', 'sleep'], ['go', 'miss', 'khyy', 'much'], ['go', 'record', 'needl', 'sting', 'heart', 'youtub', 'someth', 'miss', 'stream'], ['not', 'best', 'way', 'start', 'day'], ['alon', 'old', 'hous', 'thank', 'net', 'keep', 'aliv', 'kick', 'whoever', 'invent', 'net', 'want', 'kiss', 'hair'], ['exact', 'problem', 'pure', 'classic', 'music', 'not', 'njoy'], ['go', 'get', 'full', 'night', 'sleep', 'tonight', 'arm', 'get', 'better', 'fun', 'forc', 'use', 'left', 'hand'], ['shut', 'face', 'mean', 'pedro', 'suppos', 'mean', 'one'], ['ffa', 'evil', 'grin', 'busi', 'work', 'today', 'get', 'anyth', 'done'], ['alway', 'tire', 'alway', 'cold', 'alway', 'headach', 'not', 'wait', 'frickin', 'want', 'onscreen', 'keyboard', 'dammit'], ['omg', 'go', 'see', 'anoth', 'reason', 'not', 'live', 'devon', 'none', 'f', 'cinema', 'film', 'annoy'], ['aa', 'hate', 'fuck', 'winshit'], ['think', 'may', 'time', 'lemsip', 'soon', 'cold', 'realli', 'suck'], ['fell', 'stair', 'danc', 'sword', 'fell', 'bum', 'hurt'], ['not', 'proud', 'os', 'x', 'excel', 'edit', 'pc', 'lag', 'much', 'behind'], ['emili', 'tonight', 'xd', 'work', 'experi', 'jen', 'go', 'miss', 'see', 'like', 'everyday'], ['girl', 'still', 'tire'], ['internet', 'get', 'damn', 'slow', 'today'], ['feel', 'like', 'age', 'away', 'month'], ['took', 'polish', 'nail', 'finger', 'door', 'handl', 'murder', 'earlier', 'well', 'not', 'pretti'], ['darlin', 'miss'], ['bastard', 'want', 'beach', 'sun'], ['get', 'size', 'jean', 'could', 'not', 'get', 'hip'], ['not', 'believ', 'stay', 'work'], ['miss', 'match', 'game', 'tonight', 'hope', 'make', 'tomorrow', 'night'], ['not', 'realli', 'fair', 'mean', 'leav', 'like', 'not', 'even', 'give', 'us', 'parti', 'come', 'back'], ['bruis', 'toe', 'wors', 'finger', 'fuckin', 'hurt', 'right', 'even', 'ice'], ['thank', 'scare', 'dentist', 'look', 'like', 'go', 'get', 'go'], ['forgot', 'peopl'], ['sleep', 'would', 'home', 'sooner', 'accident', 'kill', 'bambi', 'way', 'home'], ['woke', 'tummi', 'hurt', 'alway', 'someth', 'wrong'], ['hi', 'sharon', 'miss', 'x', 'factor', 'last', 'year', 'come', 'back', 'x'], ['hour', 'sleep', 'last', 'night', 'bare', 'function'], ['call', 'cheeseburglar', 'made', 'sad'], ['not', 'happi', 'got', 'big', 'choic', 'make'], ['get', 'bore', 'sit', 'hotel', 'room', 'entir', 'day'], ['bump', 'air', 'suppli', 'greastest', 'hit'], ['forward', 'email', 'cool', 'scienc', 'event', 'canberra', 'friend', 'thought', 'sydney', 'trekk', 'wrong', 'place'], ['keep', 'get', 'pet', 'day', 'heard', 'weekend', 'fab', 'wed', 'soon'], ['better', 'hurri', 'would', 'not', 'label', 'copycat'], ['fli', 'ontario', 'hour', 'probabl', 'stay', 'first', 'time', 'yay', 'sleepi'], ['gut', 'work', 'soo', 'nice', 'outsid'], ['geographi', 'paper', 'bore', 'hate', 'revis'], ['bah', 'bk', 'recept', 'comp', 'not', 'sun', 'got', 'hat', 'x'], ['bbc', 'malaria', 'parasit', 'becom', 'resist', 'drug', 'realli', 'not', 'good', 'malaria', 'affect', 'mani', 'peopl'], ['morn', 'appear', 'bit', 'sore', 'head', 'perhap', 'bag', 'pork', 'scratch', 'dinner', 'not', 'good', 'idea'], ['book', 'appoint', 'give', 'blood', 'june', 'scare'], ['awak', 'not', 'sleep'], ['attempt', 'write', 'tonight', 'seem', 'fail'], ['flypsid', 'must', 'creat', 'present', 'english', 'guy'], ['juz', 'regist', 'cp', 'twitter', 'tweet', 'not', 'go', 'thru', 'want', 'follow', 'idol', 'lyk', 'away', 'pc'], ['ugh', 'total', 'not', 'sleep'], ['wors', 'fever', 'sore', 'throat', 'cancel', 'trip', 'see', 'littl', 'bro', 'fever', 'sore', 'throat'], ['cucumb', 'gone', 'limp'], ['miss', 'bb', 'cereal', 'nut', 'think', 'like', 'everi', 'kind', 'avail'], ['unfortun', 'choos', 'sleep', 'gym', 'almost', 'everyday', 'tri', 'get'], ['reach', 'plate', 'get', 'anoth', 'bit', 'toast', 'realis', 'id', 'eaten', 'not', 'nice', 'feel'], ['oh', 'fml', 'prob', 'gunna', 'shepard', 'bush', 'hate'], ['wow', 'one', 'deep', 'sleep', 'wish', 'could', 'sleep', 'like', 'littl', 'nois', 'awak'], ['mess', 'hurt', 'bad'], ['wonder', 'end', 'hay'], ['internet', 'crash', 'ttytomorrow'], ['anyon', 'got', 'remedi', 'neck', 'pain', 'not', 'abl', 'turn', 'head', 'proper', 'without', 'bad', 'twing', 'day'], ['crazi', 'night', 'lost', 'key', 'walk', 'home', 'miss', 'papi', 'call', 'swizzi', 'sad'], ['serious', 'bloow'], ['moorn', 'friday', 'terrif', 'smile'], ['record', 'player', 'decid', 'die', 'friday', 'night', 'sad', 'e'], ['want', 'get', 'done', 'miss', 'work'], ['miss', 'peanut', 'galleri'], ['aww', 'kind', 'hi', 'sweeti', 'guy', 'parti', 'without', 'person', 'came', 'work', 'lol'], ['yes', 'problem', 'prism', 'fail'], ['not', 'sleep', 'ugh', 'shit', 'damn', 'day', 'tomorrow', 'want', 'take', 'sleep', 'pill', 'know', 'ill', 'get', 'late'], ['thank', 'follow', 'isafailur', 'suppos', 'b', 'team', 'thing', 'friend', 'not', 'email', 'communic', 'n'], ['hindi', 'flick', 'came', 'coupl', 'week', 'ago', 'never', 'made', 'uk'], ['liesboystel', 'one', 'love', 'realli', 'sever', 'women'], ['bf', 'gig', 'portland', 'not', 'drive', 'distanc', 'come', 'save', 'burbank', 'stuck', 'atm', 'work', 'plan', 'b'], ['aww', 'watch', 'britney', 'snl', 'young', 'cute', 'realli', 'funni', 'miss', 'britney'], ['not', 'good', 'sorri', 'hear', 'park'], ['hous', 'bound', 'acut', 'mump', 'bad', 'time', 'whole', 'day', 'ov', 'supernatur', 'think', 'x'], ['sad', 'awak', 'wonder', 'contact', 'info', 'fun', 'folk', 'hung', 'shop', 'yay', 'miss', 'guy'], ['back', 'sunday', 'play', 'hors', 'last', 'night', 'mex', 'not', 'miss'], ['fuck', 'elora', 'danan', 'break', 'miss', 'last', 'nsw', 'show', 'def', 'need', 'hit', 'melb', 'someon', 'come'], ['guess', 'bedtim', 'goodnight', 'twitter', 'bed', 'big', 'empti', 'without'], ['darn', 'realis', 'quot', 'pull', 'one', 'quot', 'would', 'far', 'better', 'respons', 'name', 'suggest'], ['life', 'come', 'noth', 'make', 'choic', 'ill', 'regret', 'later'], ['ok', 'crowdsourc', 'fail'], ['still', 'not', 'believ', 'gig', 'poster', 'littl', 'civic', 'taken'], ['mother', 'hog', 'tv'], ['not', 'sleep', 'ughh', 'n', 'registr', 'tomorrow', 'sux', 'shoot', 'star'], ['could', 'anoth', 'one', 'back', 'work', 'monday', 'week', 'not', 'good'], ['car', 'broke', 'time', 'start', 'look', 'get', 'anoth', 'not', 'one', 'thing', 'anoth'], ['oh', 'want', 'go', 'sea', 'today', 'sun', 'not', 'sigh'], ['hi', 'man', 'yeah', 'want', 'go', 'maui', 'liloven'], ['instal', 'offic', 'mac', 'amp', 'mess', 'font', 'safari', 'crap', 'stick', 'help', 'not', 'even', 'read', 'solut', 'onlin', 'badmicrosoft'], ['thirsti', 'middl', 'night', 'get', 'fridg', 'find', 'brand', 'new', 'bottl', 'juic', 'gone', 'fml', 'moment'], ['interview', 'leav', 'alon'], ['got', 'bruis', 'foot', 'nowher', 'hurt'], ['final', 'graduat', 'school', 'sick', 'today'], ['assist', 'watch', 'notebook', 'miss', 'deborah'], ['nice', 'action', 'shot', 'miss', 'work', 'pole', 'not', 'see', 'client', 'everyday', 'lol'], ['thought', 'one', 'best', 'hero', 'pitti', 'kill', 'good', 'charact', 'use', 'thing', 'lol'], ['sorri', 'not', 'go', 'jesus', 'not', 'feel', 'know', 'not', 'see', 'best', 'bud', 'well', 'movi', 'anyway'], ['wow', 'serious', 'hard', 'time', 'sleep', 'decongest', 'keep', 'wide', 'awak', 'want', 'sleep'], ['bug', 'damn', 'system', 'link', 'map', 'pack', 'not', 'work'], ['fuck', 'not', 'sleep', 'feen', 'cig', 'horribl', 'x'], ['good', 'morn', 'gorgeous', 'n', 'stuck', 'work', 'wish', 'home', 'chillin', 'hope', 'tha', 'day', 'goe', 'quick', 'doh'], ['drain', 'energi'], ['hate', 'headach', 'mayb', 'not', 'readi', 'rock'], ['time', 'month', 'spend', 'time', 'broken', 'airco', 'time', 'sigh', 'great', 'weekend', 'weather'], ['britain', 'shit'], ['test', 'today', 'killer', 'not', 'even', 'manag', 'finish', 'time'], ['watch', 'bone', 'final', 'last', 'night', 'uk', 'amp', 'rock', 'oh', 'much', 'miss', 'zack', 'freakin', 'awesom', 'lt'], ['yeah', 'right', 'accept', 'grant', 'cover', 'least', 'school', 'fee', 'tritonlink', 'not', 'verifi'], ['english', 'screw', 'overal', 'percentag', 'x', 'xii', 'probabl', 'adm', 'test', 'shit', 'happen'], ['hi', 'isla', 'hope'], ['lol', 'not', 'watch', 'yet', 'congrat'], ['boo', 'must', 'delet', 'phone', 'not', 'find', 'email', 'either'], ['slowli', 'realliz', 'burn', 'got', 'work', 'hour', 'ago', 'realli', 'suck'], ['hour', 'teleconfer', 'not', 'go', 'back', 'sleep', 'got', 'work', 'sigh', 'sigh'], ['yer', 'must', 'sure', 'brother', 'got', 'wors'], ['imac', 'die', 'keep', 'cut', 'reason', 'anyon', 'recommend', 'good', 'mac', 'place', 'servic', 'part', 'think', 'need', 'new', 'power', 'suppli'], ['later', 'normal', 'morn', 'got', 'attack', 'swarm', 'mini', 'fli', 'open', 'veranda', 'last', 'night', 'took', 'hour', 'get', 'rid'], ['app', 'chang', 'wallpap', 'one', 'sever', 'hundr', 'random', 'interv', 'hard', 'find', 'good', 'wallpap'], ['lame', 'sorri'], ['neck', 'hurt', 'lot'], ['wish', 'get', 'pancak', 'boo'], ['yep', 'freez', 'hate', 'winter', 'liter', 'wear', 'blacket'], ['room', 'hot', 'sleep'], ['shit', 'wide', 'awak'], ['mei', 'miss', 'dad', 'year'], ['funni', 'want', 'someth', 'even', 'someon', 'els', 'not', 'anymor', 'hahaha', 'next'], ['definit', 'feel', 'sorri', 'jami', 'stewart', 'amsterdam', 'audienc', 'realli', 'suck', 'read', 'post', 'may'], ['look', 'like', 'beauti', 'work', 'til', 'sunday', 'yay', 'bbq', 'yet', 'though', 'go', 'postpon', 'invit'], ['thank', 'bro', 'awak', 'alreadi'], ['horribl', 'apprais', 'peer', 'work', 'american', 'think', 'compos', 'poem', 'mayb', 'one', 'problem'], ['agh', 'freak', 'go', 'wale', 'alreadi', 'gt', 'lt', 'not', 'pack'], ['poor', 'thing', 'hang', 'luf', 'joe'], ['overslept', 'headach'], ['also', 'use', 'close', 'adiel', 'sabbi', 'chang', 'alot', 'like', 'sec'], ['watch', 'hella', 'home', 'movi', 'aunt', 'uncl', 'miss', 'day', 'whole', 'famili', 'got', 'along'], ['wonder', 'hate', 'drive', 'countri', 'road', 'stuff'], ['ack', 'see', 'either', 'weird', 'tweet', 'mention', 'not', 'timelin', 'oh', 'wait', 'new', 'twitter'], ['minut', 'left', 'flannel', 'hobbit', 'shoe', 'get', 'wet', 'rain', 'pls', 'go', 'away'], ['littelist', 'fish', 'udon', 'dear', 'depart'], ['never', 'knew', 'dentent', 'hard', 'get'], ['feel', 'bad', 'especi', 'na', 'ngayon', 'pa', 'siya', 'nagrerehab', 'siya', 'wrong', 'time', 'still', 'mayb', 'come'], ['quot', 'saaid', 'quot', 'haha', 'kind', 'make', 'sad', 'though'], ['knee', 'hurt'], ['bore'], ['freeagentapp', 'free', 'trial', 'ran', 'today', 'not', 'subscrib', 'abbi', 'accident', 'cancel', 'card', 'still', 'wait', 'new', 'one'], ['need', 'would', 'made', 'pictur', 'much', 'cooler', 'mine', 'bottl', 'green'], ['archi', 'propos', 'veronica', 'latest', 'archi', 'comic', 'longest', 'known', 'love', 'triangl', 'come', 'end', 'poor', 'betti'], ['dizzi', 'alreadi', 'third', 'page', 'chapter', 'plop', 'head'], ['miss', 'phone'], ['tire', 'not', 'right', 'get', 'earli'], ['headach'], ['oh', 'joy', 'elmo', 'potti', 'video'], ['forget', 'someth', 'morn', 'near', 'ran', 'bottom', 'hill', 'warm', 'shop', 'x'], ['good', 'size', 'famili', 'room', 'not', 'cramp', 'watch', 'match', 'room', 'watch', 'tv', 'iplay', 'kid', 'asleep'], ['quiet', 'tidi', 'dinner', 'parti', 'whilst', 'close', 'tupprwr', 'lid', 'centr', 'island', 'kitchen', 'collaps', 'wake', 'babi', 'mayhem', 'ensu'], ['figur', 'quot', 'wild', 'optimist', 'stuff', 'scienc', 'fiction', 'bit', 'disapoint', 'ciber', 'sabip'], ['play', 'game', 'yeahh', 'lost', 'inlov', 'fool'], ['boss', 'bulli'], ['case', 'go', 'exam', 'show', 'thing', 'two', 'much', 'hope', 'novemb', 'though'], ['better', 'back', 'soon', 'dude', 'typic', 'bedtim', 'look', 'talk', 'late'], ['minut', 'board', 'hour', 'home', 'window', 'seat'], ['file', 'got', 'delet'], ['sad', 'new', 'cd', 'got', 'nick'], ['love', 'wish', 'half', 'could', 'even', 'name', 'web', 'design', 'ladi'], ['layin', 'bed', 'awak', 'txtin', 'girl', 'vega', 'wishin', 'not', 'work', 'w'], ['damn', 'hungri', 'not', 'even', 'funni'], ['bigfanfriday', 'amp', 'go', 'amp', 'friggin', 'loos', 'life', 'suck'], ['miss', 'one'], ['mobil', 'stop', 'reciev', 'text', 'messag', 'stoopid', 'thing'], ['sowwi', 'suck', 'know', 'yay', 'half', 'day', 'though'], ['chillin', 'loonngg', 'day', 'basketbal', 'hella', 'tire', 'sleepi', 'time', 'zz'], ['woe', 'definit', 'fun', 'travel', 'first', 'class', 'bike', 'fight', 'way', 'coach', 'reach', 'seat'], ['tri', 'dming', 'tri', 'download', 'strang', 'file', 'stop', 'come', 'gmail', 'maccym', 'miss', 'sad'], ['epic', 'write', 'fail', 'ew', 'go', 'tri', 'sleep'], ['love', 'stuff', 'sell', 'help', 'guy', 'logo', 'shop', 'kind', 'wordart'], ['think', 'fair', 'k', 'den', 'guess', 'wrng', 'still', 'feel', 'not', 'fair'], ['endless', 'fascin', 'dual', 'engin', 'monitor', 'cab', 'remind', 'sustain', 'fail', 'sorri', 'next', 'gen'], ['gorgeous', 'day', 'go', 'stuck', 'lab', 'next', 'hour'], ['wrong', 'liesboystel', 'one', 'love', 'realli', 'sever', 'women'], ['glorious', 'went', 'outsid', 'gone', 'cold', 'cloudi'], ['felt', 'like', 'crap', 'behav', 'like', 'son', 'ate', 'compens', 'pig', 'sugar', 'almond', 'pain', 'tum', 'threw', 'still', 'feel', 'sick'], ['right', 'richard', 'marx', 'right', 'wait', 'realli', 'make', 'feel', 'nauseat', 'sad'], ['ugh', 'neck', 'realli', 'hurt', 'aquatard', 'xox'], ['week', 'drag', 'bit', 'essay', 'write', 'seasid', 'see', 'eddi', 'izzard', 'tonight', 'x'], ['miss', 'captain'], ['den', 'fell', 'asleep'], ['school', 'bore'], ['hope', 'feel', 'better', 'alon', 'talk', 'readi', 'go', 'alon'], ['fuck', 'not', 'left'], ['hey', 'fuse', 'game', 'fusedgam', 'forum', 'delay', 'et', 'tonight', 'sorri', 'live', 'gt'], ['workin', 'feelin', 'aw'], ['thing', 'not', 'easi', 'simpl', 'seem'], ['sad', 'roommat', 'fri', 'chicken', 'everi', 'night', 'finish', 'tonight', 'batch'], ['good', 'morn', 'gym', 'go'], ['bottom', 'thing', 'not', 'move', 'feel', 'bad', 'man'], ['think', 'love', 'part', 'say', 'cynic', 'word', 'even', 'though', 'smile', 'say', 'think', 'bad'], ['make', 'see', 'peopl', 'repli', 'peopl', 'follow', 'would', 'never', 'repli', 'back'], ['pretti', 'sure', 'bum', 'shape', 'still', 'imprint'], ['total', 'mia', 'know', 'bad'], ['oh', 'bird', 'back'], ['wisdom', 'teeth', 'hurt', 'much'], ['not', 'look', 'forward', 'go', 'back', 'work', 'day', 'not', 'long', 'enough'], ['miss'], ['not', 'want', 'come', 'not', 'come', 'jeez'], ['omg', 'cat', 'hairbal', 'awak'], ['way', 'work', 'runnin', 'late', 'soo', 'tire'], ['ooh', 'work', 'afarid', 'look', 'forward', 'sunni', 'weekeknd', 'though'], ['sometim', 'plug', 'fix', 'problem'], ['omigood', 'feel', 'like', 'popsicl'], ['sick', 'wake', 'feel', 'exhaust'], ['paradis', 'fli', 'catcher', 'abandon', 'nest', 'start', 'go', 'b', 'tough'], ['need', 'tickett', 'gah', 'ya', 'got', 'not', 'listen', 'dear', 'elliott'], ['say', 'headach'], ['hate', 'fuck', 'cold', 'not', 'stop', 'sneez', 'claratyn', 'work', 'hr'], ['seen', 'fat', 'singl', 'mum', 'road', 'quot', 'seduct', 'quot', 'sprawl', 'across', 'poor', 'bloke', 'bonnet', 'probabl', 'need', 'new', 'shocker'], ['not', 'go', 'not', 'refus', 'feel', 'pain'], ['poor', 'andrew', 'wisdom', 'teeth', 'remov', 'wish', 'get', 'better', 'fast'], ['not', 'take'], ['beauti', 'day', 'work', 'leav', 'get', 'sun', 'though'], ['lol', 'wos', 'gona', 'send', 'mine', 'bt', 'late', 'xx'], ['went', 'bed', 'last', 'night', 'feel', 'migrain', 'come', 'woke', 'feel', 'wors'], ['omfg', 'whyy', 'not', 'suck', 'wtf', 'getcho', 'ass'], ['tri', 'fail'], ['elena', 'left', 'morn', 'nine', 'month', 'spent', 'live', 'probabl', 'year', 'till', 'see', 'hmph'], ['idiot', 'ok', 'most', 'skint', 'hell', 'could', 'done', 'someth'], ['found', 'kitti', 'not', 'pregnant', 'good', 'thing', 'though', 'go', 'adopt', 'one', 'instead'], ['forc', 'bed', 'morn', 'fail', 'cycl', 'damn'], ['sleep', 'soo', 'good', 'woke', 'like', 'min', 'ago', 'n', 'got', 'sick', 'not', 'feel', 'great', 'want', 'go', 'back', 'sleep', 'wide', 'awak'], ['wish', 'go', 'two', 'differ', 'school', 'time'], ['jerk', 'josh', 'not', 'even', 'come', 'meet', 'think', 'number', 'guess'], ['not', 'happi'], ['regret', 'alcohol', 'consum', 'last', 'night', 'head'], ['bloodi', 'server', 'work', 'least', 'hour', 'want', 'go', 'home'], ['badbook', 'not', 'know', 'bother'], ['hug', 'yep', 'hate', 'meself'], ['yeah', 'ford', 'focus', 'titanium', 'get', 'helicopt', 'add', 'luxuri', 'model', 'unfortun'], ['hungri', 'noth', 'eat'], ['take', 'not', 'fan'], ['not', 'go', 'oxford', 'internet', 'institut', 'sunner', 'doctor', 'programm', 'brisban', 'lack', 'fund'], ['not', 'good', 'think', 'fault', 'though', 'not', 'use', 'buttermilk', 'recip', 'back', 'flour'], ['head', 'hospit', 'not', 'take', 'pain', 'anymor'], ['not', 'big', 'fan', 'costa', 'end', 'go', 'eat', 'one', 'outsid', 'offic'], ['absolut', 'boil', 'got', 'factor', 'must', 'not', 'turn', 'orang', 'must', 'not', 'look', 'like', 'oompa', 'lumpa', 'left', 'shoulder', 'burnt', 'yesterday'], ['oh', 'not', 'nice'], ['got', 'excit', 'thought', 'exhibit', 'sydney', 'not'], ['across', 'water', 'damn', 'expens'], ['whole', 'whole', 'addict', 'talk', 'brother', 'broke', 'could', 'not', 'help', 'cri'], ['got', 'bulli', 'dillah', 'help'], ['not', 'studyy', 'exam', 'tom'], ['damjust', 'finish', 'watch', 'prison', 'break', 'final', 'not', 'think', 'cri', 'hard', 'understand', 'final'], ['dam', 'finish', 'watch', 'prison', 'break', 'final', 'not', 'think', 'cri', 'hard', 'understand', 'final'], ['not', 'go', 'oxford', 'internet', 'institut', 'summer', 'doctor', 'programm', 'brisban', 'lack', 'fund'], ['still', 'wait'], ['someon', 'told', 'thing', 'would', 'get', 'would', 'never', 'done'], ['want', 'see', 'friend', 'mindless', 'fun', 'work', 'play', 'drunk', 'walwal', 'mean', 'sleep', 'one', 'bed'], ['fail', 'math', 'exam', 'today', 'fxxmylif'], ['afaik', 'littl', 'sad', 'crocco', 'longer', 'avail', 'salsa', 'wed', 'night', 'bummer', 'ienjoy', 'go', 'wed', 'night'], ['know', 'wrong', 'mayb', 'not', 'fuckin', 'thing', 'like'], ['cross', 'countri', 'feet', 'hurt'], ['bacon', 'fail', 'end', 'commiser', 'muffin'], ['hard', 'copi', 'doc', 'review', 'write', 'comment', 'realiz', 'forgotten', 'write', 'paper', 'hard', 'recogn', 'read', 'back'], ['quot', 'sometim', 'around', 'midnight', 'quot', 'airborn', 'toxic', 'event', 'liter', 'not', 'escap', 'fml'], ['strand', 'delhi', 'airport', 'flight', 'delay'], ['sink', 'feel', 'go', 'ts', 'comedown'], ['goin', 'eat', 'smack', 'breakfast', 'get', 'start', 'catch', 'ya', 'realli', 'wish', 'cud', 'go', 'bahrain'], ['sick', 'sick', 'sick', 'suck', 'not', 'even', 'breath', 'proper'], ['aa', 'need', 'work', 'today', 'not', 'ever', 'get', 'weekend', 'make', 'want', 'cri'], ['thank', 'need', 'pass', 'test', 'first'], ['horribl', 'purpos', 'write', 'bunni', 'mean', 'amp', 'cruel', 'not', 'mention', 'plain', 'tacki'], ['sorri', 'bout', 'bloodi', 'typic', 'goin', 'laydown', 'feel', 'sick', 'oo', 'not', 'nice', 'x'], ['get', 'readi', 'skill', 'not', 'wait', 'fail', 'bio', 'final', 'yay', 'ugh', 'honor', 'class', 'suckk'], ['oh', 'woke', 'accident', 'get', 'fall', 'asleep', 'scare', 'stori', 'jk'], ['thank', 'tri', 'done', 'good', 'not', 'fathom', 'take', 'appl', 'store', 'sigh'], ['sick', 'sad', 'cold'], ['finish', 'work', 'nd', 'wait', 'freez', 'cold', 'drink', 'mango', 'magic', 'haha', 'fail', 'mama', 'where', 'yu', 'cold'], ['sick', 'constant', 'bad', 'dream', 'grr'], ['count', 'lucki', 'go', 'say', 'word', 'not', 'come'], ['feel', 'like', 'bad', 'flu', 'yes', 'bad', 'flu'], ['ohh', 'bit', 'time', 'left', 'account', 'forum', 'hope', 'get', 'leader', 'day'], ['wish', 'could', 'commenc', 'yr', 'wonder', 'realli', 'go', 'protest'], ['would', 'join', 'shop', 'work', 'weekend', 'six', 'degre', 'seper', 'confsu'], ['limit', 'abl', 'sync', 'ms', 'exchang', 'account', 'iphon', 'goe', 'outlook', 'not', 'lame'], ['probabl', 'not', 'think', 'anyth', 'els', 'unfortun', 'not', 'singtel', 'custom'], ['tire', 'hear', 'stori', 'everybodi', 'go', 'ibiza'], ['love', 'life', 'guess', 'defin', 'shoot', 'good'], ['aagh', 'aircon', 'not', 'work', 'offic'], ['mac', 'hard', 'drive', 'crash', 'brought', 'powermac', 'could', 'not', 'recov', 'file', 'back'], ['alway', 'one', 'time', 'alway', 'late', 'want', 'sleep', 'miss', 'mere'], ['wide', 'awak', 'grouchi', 'fuck'], ['miss', 'justin', 'timberlak', 'voic', 'want', 'make', 'new', 'album'], ['realli', 'wish', 'could', 'see', 'dave', 'miss', 'alreadi'], ['hot'], ['sorri', 'not', 'get', 'chanc', 'chat', 'caught', 'glimps', 'across', 'room', 'drag', 'home', 'prematur'], ['shut', 'comput', 'get', 'readi', 'go', 'home', 'bummer'], ['get', 'stress', 'sorti', 'tomorrow', 'like', 'realli', 'realli', 'stress'], ['agre', 'not', 'worth', 'block', 'amp', 'let', 'twitter', 'polic', 'know', 'harrass'], ['sad', 'brother', 'told', 'skatepark', 'live', 'bummer'], ['miss', 'show'], ['home', 'alon', 'one', 'left', 'gummi', 'bear'], ['feel', 'guiliti', 'sorri'], ['well', 'us', 'brit', 'wait', 'day', 'thought', 'go', 'realiz', 'guess', 'worth', 'wait'], ['tomorrow', 'last', 'day', 'work', 'sad', 'bye', 'ang'], ['uhh', 'wish', 'someon', 'would', 'includ', 'follow', 'friday', 'would', 'great', 'get', 'follow'], ['sympathis'], ['wish', 'not', 'spend', 'money', 'last', 'night'], ['miss', 'home', 'away', 'noo'], ['babi', 'alex', 'miss', 'ili', 'lt', 'good', 'night', 'lt'], ['miss', 'jay', 'leno'], ['not', 'sleep'], ['not', 'understand', 'whole', 'follow', 'friday', 'thing'], ['not', 'twitt', 'yesterday', 'busi', 'day', 'back', 'tomorrow', 'way', 'not', 'sleep', 'like', 'zombi', 'mode'], ['think', 'studi', 'realli', 'start', 'take', 'toll'], ['oh', 'say', 'not'], ['work', 'got', 'till', 'enna', 'kodumai', 'sir', 'idhu'], ['earli'], ['uk', 'phone', 'servic', 'oh', 'yea', 'still', 'sick', 'cough', 'sniff'], ['awh', 'not', 'good', 'get', 'better', 'soon'], ['nope', 'not', 'realli', 'sweatshirt', 'oh', 'realli', 'realli', 'awesom', 'doughnut', 'haha'], ['sigh'], ['got', 'tsk', 'tsk', 'tsk', 'shame', 'haha', 'feel', 'better', 'bro'], ['live', 'ignor'], ['put', 'makeup', 'flouresc', 'oh', 'must', 'look', 'hideous', 'also', 'lipstick'], ['get', 'realli', 'guilti'], ['dammit', 'one', 'tweet', 'septemb', 'noodl', 'also', 'taken'], ['not', 'made', 'work', 'could', 'not', 'get', 'feelin', 'blurgh'], ['start', 'love', 'morn', 'look', 'like', 'go', 'chuck'], ['exam', 'worst', 'mahn', 'go'], ['tri', 'draw', 'new', 'websit', 'bad', 'idea'], ['friend', 'roman', 'countri', 'men', 'lol', 'peopl', 'need', 'help', 'say', 'twitter', 'not', 'friend', 'loner', 'loner', 'la', 'da', 'da'], ['biggest', 'headach'], ['ok', 'cristal', 'go', 'tweet', 'talk', 'not', 'follow', 'ya'], ['want', 'feel', 'better'], ['not', 'got', 'poke', 'much'], ['yup', 'lol', 'sweet', 'year', 'haha'], ['haha', 'mayb', 'tri', 'insomnia', 'kickin', 'butt'], ['awe', 'got', 'go', 'mom', 'command', 'sleep', 'alreadi'], ['hulu', 'desktop', 'look', 'nice', 'not', 'region'], ['got', 'refus', 'bottl', 'morgan', 'tesco', 'despit', 'say', 'helen', 'could', 'verifi', 'age', 'shock', 'left', 'shop', 'x'], ['depress', 'day', 'today', 'pack', 'leav', 'ridicul', 'earli', 'tomoro'], ['home', 'not', 'well', 'hate', 'not', 'workin'], ['good', 'morn', 'tweep', 'busi', 'not', 'work', 'way'], ['aww', 'lost', 'follow', 'follow'], ['bore', 'account', 'stuff'], ['appar', 'even', 'novel', 'moonlight', 'not', 'work', 'jaunti'], ['sms', 'manag', 'crash', 'phone'], ['yup', 'work', 'could', 'not', 'recov', 'anyth', 'though'], ['well', 'us', 'brit', 'wait', 'day', 'thought', 'go', 'releas', 'guess', 'worth', 'wait'], ['roommat', 'ssnore', 'throat', 'dri'], ['not', 'want', 'go'], ['zombi', 'wrangler', 'sound', 'like', 'fun', 'not', 'halo', 'war'], ['ahh', 'confus', 'not', 'want', 'run', 'away', 'realli', 'handl', 'real', 'relationship', 'love', 'anyway', 'fals', 'hope'], ['never', 'sleep', 'last', 'night', 'feel', 'horribl', 'today', 'time', 'call', 'work', 'think'], ['awh', 'forgot', 'pox', 'hope', 'get', 'better', 'soon'], ['ugh', 'warm', 'outsid', 'unfair', 'want', 'go', 'read', 'pack'], ['still', 'gut', 'man', 'utd', 'lost'], ['bad', 'day'], ['feel', 'stress', 'strung', 'awak', 'mind', 'buzz', 'mrs', 'not', 'talk'], ['consol', 'abandon', 'back', 'garden', 'thank', 'laptop', 'screen'], ['omg', 'want', 'everybodi', 'steam', 'friend', 'list', 'play'], ['feel', 'pain', 'hayfev', 'forgot', 'take', 'mine', 'yesterday'], ['whole', 'time', 'ton', 'thing', 'would', 'believ', 'would', 'not', 'listen', 'let', 'prove', 'blve'], ['wish', 'could', 'still', 'drink', 'two', 'bad', 'night', 'white', 'wine', 'london', 'sick', 'almost', 'week'], ['stupid', 'accident', 'gave', 'honey', 'atom', 'flavor', 'buffalo', 'wing', 'stomach', 'feel', 'aw', 'sorri', 'babi'], ['job', 'interview', 'today', 'realli', 'go', 'mess', 'uup'], ['heaven', 'not', 'good', 'empathis', 'finger', 'cross', 'not', 'come', 'anyth', 'sleep', 'easi', 'wish', 'best'], ['need', 'peopl', 'talk', 'pleas', 'bore', 'x', 'follow'], ['still', 'soo', 'readi', 'get'], ['time', 'like', 'miss', 'manila', 'not', 'feel', 'late'], ['ac', 'fan', 'not', 'swing', 'way', 'sweat', 'hot', 'humid', 'day'], ['someth', 'wrong', 'internet', 'chelmsford', 'tv', 'demad', 'not', 'work', 'right', 'internet', 'super', 'slow'], ['anyon', 'awak', 'oh', 'god', 'die', 'want', 'go', 'sleep'], ['home', 'sweet', 'home', 'think', 'huaa'], ['pretti', 'sure', 'laptop', 'die', 'hp', 'wireless', 'problem', 'constant', 'ton', 'heat', 'not', 'start', 'fri', 'circuit'], ['oh', 'man', 'sick', 'night', 'feel', 'aw'], ['total', 'knacker', 'back', 'meet'], ['sorri', 'bit', 'negat'], ['not', 'view', 'anyth', 'gerald', 'not', 'ban', 'not', 'even', 'read', 'damn', 'place'], ['not', 'mood', 'long', 'car', 'drive'], ['wish', 'wembley'], ['feel', 'sound', 'like', 'kiya', 'last', 'night', 'say', 'get', 'comfi', 'couch', 'enjoy', 'cuddl'], ['head', 'spin', 'math', 'start', 'dream', 'formula', 'not', 'good'], ['get', 'cat', 'killin', 'rabbit', 'anoth', 'headless', 'babi', 'rabbit', 'n', 'garden', 'dis', 'morn', 'live', 'close', 'wher', 'lot', 'rabbit', 'live'], ['hungri', 'alreadi', 'not', 'impress', 'everybodi', 'gone', 'rubi'], ['duh', 'typo', 'error', 'part', 'social', 'network', 'not', 'even', 'room', 'peopl'], ['final', 'delet', 'number', 'phone', 'contact', 'heartbreak'], ['tweet', 'good', 'morn', 'twitterland', 'go', 'work', 'need', 'keep', 'pack', 'clean', 'flat', 'move', 'minus', 'one', 'day'], ['upset', 'mom', 'hospit'], ['stuck', 'stupid', 'jeuno', 'flag', 'wish', 'windi', 'fish'], ['mortifi', 'could', 'lose', 'job'], ['ohh', 'upset', 'sorri', 'wast', 'time', 'xx'], ['afraid', 'bit', 'fail', 'last', 'two', 'recommend', 'not', 'avail', 'uk'], ['omg', 'beckki', 'love', 'rootin', 'thing', 'go'], ['someon', 'pleas', 'tighten', 'bolt', 'brain', 'mani', 'part', 'loos', 'might', 'even', 'miss'], ['ahh', 'yes', 'oblig', 'vampir', 'kept', 'away', 'back', 'amp', 'tri', 'updat', 'much', 'lost', 'donor'], ['bahh', 'cold', 'weather', 'make', 'teeth', 'hurt'], ['ooh', 'headach', 'got', 'go', 'work'], ['total', 'confus', 'bore', 'life', 'must', 'chang'], ['bore', 'rc', 'goin', 'mainten'], ['morn', 'forgot', 'daili', 'booth', 'yesterday', 'shock', 'want', 'sit', 'garden', 'today', 'read', 'huge', 'bee', 'nest'], ['ugh', 'say', 'friend', 'might', 'swine', 'flu', 'omg'], ['home', 'not', 'think', 'wake', 'set', 'alarm', 'kid', 'room', 'amp', 'forgot', 'turn', 'feel', 'bad'], ['wish', 'could', 'sleep', 'past', 'four', 'night', 'good', 'morn'], ['yay', 'cheerlead', 'sick', 'go', 'fun', 'night', 'peopl'], ['get', 'frustrat', 'peopl', 'not', 'know', 'want', 'not', 'wait', 'go', 'home', 'tonight'], ['hair', 'cut', 'look', 'like', 'shit'], ['ben', 'dream', 'make', 'sadd', 'want', 'togetherr', 'swear', 'shit', 'get', 'bawlingg', 'help'], ['know', 'exact', 'mean', 'lost', 'mani', 'friend', 'feel'], ['lindo', 'absolut', 'rule', 'post', 'pictur', 'somewher', 'time', 'back', 'work', 'today'], ['realli', 'wish', 'could', 'gone', 'weekend'], ['gosh', 'hate', 'school', 'start', 'monday', 'class', 'start', 'end', 'never', 'chanc'], ['terribl', 'troubl', 'word', 'child', 'would', 'drop', 'pider', 'pade', 'etc', 'need', 'lesson', 'bad', 'memori'], ['yay', 'dad', 'agre', 'pay', 'tuition', 'equip', 'yipe', 'not', 'till', 'nxt', 'jan', 'though'], ['wish', 'home', 'time', 'jonaswebcast', 'today'], ['got', 'back', 'embassi', 'miss', 'one', 'paper', 'go', 'monday', 'good', 'luck'], ['cut', 'hair', 'day', 'wish', 'outsid'], ['sorri', 'lack', 'tweet', 'buzi', 'new', 'vid', 'saturday'], ['good', 'person', 'idol', 'soo', 'good', 'peopl', 'deserv', 'sum', 'good', 'weather', 'ova', 'der', 'london', 'cold'], ['not', 'like', 'funer'], ['endur', 'get', 'prize', 'lucki', 'winner'], ['arg', 'eirtaku', 'got', 'hit', 'stupid', 'bot', 'much', 'porn', 'kid', 'friend', 'site'], ['miss', 'wacom', 'especi', 'mous', 'laptop', 'touch', 'pad', 'horribl'], ['yeah', 'much', 'prefer', 'tweetdeck', 'must', 'multipl', 'account'], ['final', 'go', 'tri', 'fall', 'asleep', 'goodnight', 'like', 'morn', 'sleep'], ['twitter', 'second', 'day', 'run', 'studi', 'leav', 'car', 'one', 'piec'], ['not', 'help', 'feel', 'today', 'massiv', 'michael', 'jackson', 'rumour', 'day', 'cue', 'mj', 'hater'], ['day', 'goe', 'think', 'go', 'write', 'song', 'still', 'think', 'imposs', 'get', 'true', 'friend'], ['noo', 'not', 'know', 'click', 'not', 'run', 'sad'], ['miss', 'much', 'wish', 'enough', 'money'], ['fyi', 'conni', 'carla', 'not', 'total', 'awesom', 'preview', 'make', 'seem', 'sorri', 'one'], ['evil', 'mean', 'peopl', 'hurt', 'terribl', 'phobia', 'dentist', 'toothach', 'hell', 'week'], ['unfortun', 'not', 'yet', 'still', 'without', 'licenc'], ['horribl', 'dream'], ['busi', 'wowsa', 'okay', 'pizza', 'go', 'sorri'], ['food', 'sinc', 'woke'], ['bed', 'sick', 'sick', 'sinc', 'yesterday', 'hru', 'hun'], ['suspect', 'fault'], ['read', 'messag', 'stephani', 'miss', 'home'], ['mozzer', 'cancel', 'tonight', 'look'], ['asleep', 'brother', 'woke', 'ask', 'ate', 'rest', 'frost', 'mini', 'wheat', 'not', 'go', 'back', 'sleep'], ['school', 'wish', 'would', 'end', 'alreadi'], ['month', 'bad', 'month', 'tri', 'get', 'advert', 'togeth', 'kobold', 'quarter'], ['dad', 'not', 'feel', 'well', 'want', 'make', 'soup', 'suggest', 'guy', 'get', 'well', 'soon', 'ayah'], ['tonight', 'bad', 'night'], ['much', 'homework', 'today'], ['email', 'get', 'peopl', 'want', 'not', 'site', 'shame', 'trouser'], ['alright', 'joke', 'said', 'wine', 'fool', 'mayb', 'like', 'drink'], ['ugh', 'rude'], ['woke', 'teeth', 'realli', 'hurt', 'rubber', 'band'], ['burnt', 'fuck', 'hand', 'today'], ['blog', 'yet', 'miss', 'write'], ['salari', 'actual', 'spend', 'money', 'hooray', 'time', 'go', 'shop', 'dinner', 'ahora', 'say', 'goodby'], ['dangit', 'got', 'kiss', 'album', 'wrong', 'color'], ['lose', 'makeup', 'bag', 'keep', 'differ', 'place', 'got', 'replac', 'bare', 'escentu', 'tearr'], ['would', 'easi', 'user', 'manual', 'not', 'enough', 'claim', 'bike'], ['rip', 'robin', 'washington', 'park', 'librari'], ['guess', 'not', 'interest'], ['kno', 'guilti', 'pleasur', 'like', 'shop'], ['woke', 'aspir', 'stomach', 'acid', 'pray', 'not', 'acid', 'reflux', 'one', 'time', 'thing'], ['school', 'go', 'absolut', 'horribl', 'today', 'peac'], ['baah', 'mega', 'cockroach', 'kitchen', 'one', 'kill', 'heelp', 'haha', 'retard', 'cat', 'help'], ['careless'], ['ack', 'read', 'show', 'horribl', 'account', 'tast'], ['work', 'today', 'went', 'shop', 'relax', 'amp', 'learn', 'toefl'], ['puppi', 'sick', 'one', 'put', 'hand', 'momma', 'gt'], ['not', 'feel', 'weekend', 'fever', 'anymor', 'everyday', 'day'], ['puppi', 'kill', 'cat', 'lastnight', 'thought', 'stuf', 'anim', 'rip', 'meani'], ['bodi', 'decid', 'good', 'time', 'wake', 'everi', 'morn', 'mayb', 'dean', 'wait', 'dream'], ['jus', 'listen', 'okay', 'nice', 'lik', 'thinkin', 'thoma', 'throughout', 'e', 'whole', 'song', 'love', 'ya'], ['still', 'fight', 'cold', 'ugh'], ['mad', 'tire', 'hol', 'miss', 'chomp', 'chomp', 'terribl'], ['today', 'go', 'ah', 'give', 'notic', 'boss', 'today', 'go', 'upset', 'total', 'stress'], ['tummi'], ['weird', 'sudden', 'blogtalkradio', 'give', 'domain', 'not', 'found', 'error', 'minut', 'ago'], ['long', 'list', 'littl', 'desir'], ['heater', 'blew'], ['sorri', 'let'], ['sever', 'hour', 'final', 'site', 'back', 'onlin', 'silli', 'dns', 'set', 'mistak'], ['today', 'not', 'start', 'well'], ['work', 'still', 'sick'], ['forget', 'much', 'miss', 'tribe', 'til', 'limit', 'access', 'talk', 'spotti', 'internet', 'countri', 'not', 'long'], ['serious', 'screw', 'not', 'studi'], ['not', 'buy', 'nokia', 'amazon', 'say', 'quot', 'not', 'ship', 'quot'], ['oh', 'shit', 'forgot', 'eat', 'grumbl', 'grumbl'], ['tri', 'wake', 'find', 'hard'], ['poor', 'get', 'outsid', 'sleep', 'garden', 'sun', 'good', 'not', 'forget', 'suncream'], ['not', 'hulu', 'germani', 'suck'], ['not', 'think', 'way', 'express', 'char', 'disspoint', 'advertis', 'lifehack', 'not', 'buy', 'mac', 'articl'], ['sold', 'hit', 'cash', 'took', 'tax', 'tip', 'drawer', 'end', 'dollar', 'short', 'not', 'know'], ['environment', 'studi', 'drive', 'mental'], ['hahaha', 'thank', 'clear'], ['good', 'morn', 'sunshin', 'sleepytown', 'sleepi'], ['also', 'ride', 'giant', 'knew', 'ama', 'hafta', 'go', 'tri', 'get', 'later', 'love', 'xx'], ['found', 'not', 'know', 'uni', 'result', 'year', 'juli', 'earliest', 'hate', 'wait'], ['oh', 'good', 'want', 'watch', 'movi', 'noobodi', 'would', 'watch'], ['wish', 'go', 'pxi', 'summer', 'jam', 'never', 'seem', 'win'], ['aww', 'sad', 'not', 'get', 'go', 'go', 'away', 'parti', 'stupid', 'work'], ['miss', 'guy', 'morn', 'tacoma', 'kgw', 'start', 'day'], ['not', 'hit', 'right', 'button', 'wrote', 'sheat', 'though', 'thought', 'cafe', 'currenc', 'button', 'sorri'], ['aah', 'stop', 'get', 'updat', 'home', 'page', 'guna', 'work', 'tswift'], ['starv', 'amp', 'chem', 'quiz', 'due', 'noon'], ['happi', 'happi', 'rain'], ['swear', 'took', 'hour', 'get', 'bel', 'air', 'alabang', 'yes', 'love', 'reminisc', 'hk', 'trip', 'amp'], ['go', 'last', 'theater', 'lunch', 'go', 'cri'], ['told', 'coupl', 'week', 'ago', 'not', 'find', 'guy', 'hot', 'apart', 'one'], ['friday', 'sun', 'shine', 'quit', 'warm', 'alreadi', 'walk', 'dog', 'freaki', 'hyper'], ['comput', 'pleas', 'stop', 'loud', 'work'], ['last', 'night', 'paper', 'write', 'not', 'done', 'need', 'priorit', 'better'], ['need', 'mug', 'chines', 'not', 'feel', 'like'], ['think', 'much', 'miss'], ['sad', 'actual', 'googl', 'term', 'suck', 'though'], ['soo', 'wish', 'could', 'school', 'myspac', 'complet', 'block'], ['fail', 'fanci', 'pit', 'stop', 'cuppa', 'know', 'lol'], ['sick', 'life', 'never', 'go', 'good', 'want', 'need', 'xoxoxo', 'lt'], ['start', 'long', 'friday'], ['goodmor', 'not', 'want', 'yat', 'happi', 'birthday'], ['wow', 'tomorrow', 'never', 'see', 'peopl', 'kind', 'sad'], ['hes', 'back', 'oh', 'noe', 'miss', 'work', 'insan', 'band', 'realli', 'taken', 'not', 'moment'], ['tv', 'bust', 'screen', 'turn', 'white', 'nanosecond', 'made', 'quick', 'quot', 'pop', 'quot', 'sound'], ['fat', 'sad', 'puffyn'], ['enjoy', 'explor', 'phone', 'grr', 'awesom', 'want', 'samsung', 'omnia'], ['lone', 'gosforth', 'galleri', 'excit', 'meal', 'six', 'follow', 'antoni', 'johnson', 'tonight', 'woohoo'], ['sore', 'throat', 'not', 'good', 'four', 'perform', 'weekend'], ['sorri', 'sad'], ['oh', 'hell', 'forgot', 'cider', 'monday', 'dinner', 'mpp', 'teetotal', 'must', 'drive', 'waupoo', 'case', 'wine', 'car'], ['sad', 'sit', 'insid', 'mobil', 'signal', 'not', 'work', 'garden', 'open', 'wine', 'bang', 'though'], ['suffer', 'benadryl', 'hangov', 'morn', 'killer', 'headach', 'ugh'], ['garden', 'go', 'well', 'almost', 'corn', 'pea', 'onion', 'beet', 'yet', 'though'], ['good', 'morn', 'twitt', 'anoth', 'gloomi', 'day', 'nyc'], ['aww', 'go', 'class', 'day', 'go', 'weird', 'half', 'day', 'thing', 'want', 'see'], ['aww', 'hate', 'one'], ['hahahahhahaha', 'true', 'could', 'realli', 'stretch', 'stuff', 'shame', 'rem', 'dog', 'got', 'mad', 'tri', 'put', 'avi', 'face'], ['not', 'help'], ['slowest', 'websit'], ['live', 'philippin', 'gt', 'lt', 'honest', 'want', 'live', 'somewher', 'snow'], ['headach', 'alreadi', 'boo'], ['wonder', 'rake', 'client', 'made', 'clear', 'not', 'forc', 'dev', 'learn', 'new', 'lang', 'agil', 'ccnet'], ['sorri', 'paul', 'scheur', 'prison', 'break', 'seri', 'final', 'suck', 'mani', 'level'], ['bore'], ['shame'], ['oop', 'spent', 'much', 'alreadi', 'lol', 'quid', 'gone'], ['sick', 'past', 'day', 'thus', 'hair', 'look', 'wierd', 'not', 'hat', 'would', 'look'], ['recess', 'hit', 'veroniqu', 'branquinho', 'quit', 'compani', 'shame'], ['sad', 'emma', 'sad', 'leav', 'show', 'xx'], ['ugh', 'damn', 'usual', 'babysitt', 'graduat', 'wednesday', 'got', 'meet', 'request', 'boss', 'graduat'], ['forgot', 'set', 'alarm', 'ride', 'hope', 'get', 'easi', 'mile', 'work', 'tomorrow', 'racin', 'gap'], ['real', 'boy', 'goddamit', 'guh', 'apostro', 'feel', 'sad', 'librari', 'ladi', 'think', 'stupid', 'stupid', 'j'], ['think', 'final', 'thought', 'kind', 'cheap', 'way'], ['know', 'joke', 'good', 'fun', 'peopl', 'get', 'humor', 'amp', 'not'], ['poss', 'miss'], ['saddest', 'right', 'lost', 'mobil', 'phone', 'earphon', 'waz', 'feel', 'littl', 'incomplet', 'feel'], ['let', 'us', 'know', 'happen', 'poor', 'littl', 'guy'], ['not', 'workin', 'hour', 'id', 'gettin', 'ratars', 'point', 'could', 'not', 'even', 'see', 'let', 'alon', 'stand', 'shit', 'feel'], ['soo', 'jealous', 'right'], ['well', 'not', 'normal', 'not', 'drive', 'mexico', 'dairi', 'queen'], ['feel', 'today', 'way', 'stress'], ['sore', 'throat', 'suck'], ['school', 'pointless', 'serious', 'though', 'day', 'school', 'left', 'watch', 'movi', 'make', 'powerpoint', 'let', 'leave'], ['quot', 'give', 'not', 'care', 'mess', 'life', 'quot'], ['physic', 'bore', 'class', 'ever'], ['reli', 'mobil', 'lack', 'recept', 'tri', 'help', 'look', 'silli'], ['not', 'get', 'along'], ['suck', 'man'], ['grew', 'fat', 'today', 'gss', 'hxc', 'saw', 'full', 'hous', 'chanel', 'jc', 'pedder', 'red', 'ferragamo', 'great', 'econom', 'downturn'], ['hunk', 'ah', 'hunk', 'burn', 'love', 'believ', 'camera', 'phone', 'stuf', 'stupid', 'blurry'], ['not', 'go', 'sorri', 'disappoint'], ['oh', 'sweeti', 'sorri', 'last', 'thing', 'need', 'right', 'hug'], ['bf', 'move', 'citi', 'tomorrow', 'current', 'live', 'sad', 'far', 'away', 'not', 'far', 'not', 'street'], ['got', 'go', 'go', 'circus', 'real', 'circus', 'not', 'britney', 'tour', 'sad'], ['kev', 'fuck', 'stuck', 'westgat', 'work'], ['cut', 'thumb', 'broken', 'coffe', 'pot'], ['ac', 'tix', 'actual', 'show', 'sold', 'would', 'get', 'tix', 'stubhub', 'pay'], ['oh', 'ew', 'bad', 'not', 'use', 'certain', 'lip', 'gloss', 'long', 'time', 'tri', 'wear', 'liter', 'make', 'lip', 'burn'], ['generat', 'fuck', 'apathet', 'parti', 'desert', 'know', 'fun', 'age', 'group', 'generat', 'myspac'], ['not', 'want', 'go', 'work', 'tonight'], ['ahh', 'woke', 'forgot', 'reset', 'alarm', 'clock'], ['yeha', 'broke', 'page', 'damit', 'tri', 'fix', 'hope', 'not', 'bank', 'communityfirstandtrust'], ['thought', 'thing', 'could', 'not', 'get', 'wors', 'get', 'even', 'wors', 'tonight', 'bet', 'life', 'miseri'], ['good', 'laptop', 'use', 'extern', 'internet', 'plug', 'need', 'send', 'away', 'fix'], ['home', 'marco', 'island', 'miss', 'girl', 'work'], ['got', 'back', 'home', 'disappoint', 'report', 'card'], ['fight', 'nagio', 'configur', 'great', 'tool', 'config', 'bit', 'labour'], ['sigh', 'well', 'accident', 'click', 'back', 'space', 'mous'], ['kitten', 'cute', 'grow', 'n', 'becom', 'cat'], ['told', 'verizon', 'not', 'send', 'anyon', 'show', 'got', 'deal', 'bullshit', 'not', 'know', 'long', 'offlin'], ['foot', 'hurt', 'minut', 'took', 'though'], ['oh', 'adult', 'school'], ['sorri', 'hear', 'flight', 'got', 'cancel', 'blow'], ['heyi', 'tweet', 'go', 'shout', 'list', 'alway', 'amaz'], ['tri', 'regist', 'websit', 'go', 'get', 'error', 'browser', 'firefox', 'chrome', 'ie', 'safari'], ['saw', 'link', 'get', 'error', 'cnn', 'site', 'open', 'page', 'not', 'read', 'articl'], ['guess', 'freaki', 'follow'], ['nah', 'not', 'finish', 'til', 'next', 'yearr', 'stayin', 'bad', 'news', 'graduat'], ['parent', 'decid', 'drop', 'whole', 'famili', 'hous', 'work'], ['go', 'work', 'could', 'use', 'happi', 'pill'], ['sad', 'not', 'bit', 'disappoint', 'tri', 'later', 'see', 'chang', 'mind'], ['ya', 'prob', 'not', 'want'], ['chem', 'final', 'right', 'awwh', 'oli', 'go', 'miss'], ['anotha', 'day', 'work', 'not', 'lookin', 'forward', 'hate', 'closin', 'fri'], ['omega', 'tomorrow', 'not', 'realli', 'plan', 'anyth', 'make', 'sure', 'come', 'awesom', 'june'], ['hate', 'pack'], ['readi', 'busi', 'fun', 'day', 'tomorrow', 'got', 'keep', 'busi', 'lover', 'gone'], ['would', 'give', 'anyth', 'bad', 'tennesse'], ['serious', 'need', 'studi'], ['hot', 'day', 'make', 'tire'], ['seem', 'like', 'everyon', 'know', 'ask', 'comput', 'help', 'kill'], ['funer', 'today', 'go', 'bad'], ['tikcet', 'want', 'go'], ['go', 'chiro', 'see', 'wrong', 'bum', 'ankl'], ['r', 'damn', 'exam', 'ever', 'gone', 'b', 'done', 'want', 'b', 'sun'], ['rude'], ['still', 'jealous'], ['stomach', 'hurt', 'bad'], ['stop', 'babe', 'makin', 'feel', 'bad'], ['way', 'school', 'last', 'friday', 'high', 'school', 'ever', 'not', 'even', 'get', 'see', 'holli', 'gabbi', 'hannah'], ['tough', 'thick', 'chik'], ['suppos', 'best', 'get', 'readi', 'work', 'grr'], ['sick', 'kid', 'trump', 'advanc', 'plan', 'bummer'], ['disappoint', 'talent', 'lineup', 'quot', 'super', 'estrella', 'quot', 'feel', 'not', 'get', 'tix', 'time', 'around'], ['hella', 'itchi'], ['weekend', 'along', 'summer', 'feel', 'sad'], ['ef', 'tire'], ['sad', 'rat', 'becom', 'aggress', 'guinea', 'pig', 'seper'], ['hulu', 'desktop', 'window', 'media', 'center', 'not', 'extend', 'unfortun'], ['miss', 'one', 'crazi', 'parti', 'last', 'night'], ['knee', 'fuck', 'hurt', 'man', 'hayle', 'not', 'even', 'care', 'get'], ['make', 'sad', 'like', 'canada', 'never', 'watch', 'thing', 'move', 'know', 'anyon', 'need', 'roommat'], ['got', 'exam', 'percentag', 'not', 'look', 'good'], ['get', 'gd', 'news', 'god', 'sake'], ['geographi', 'revis', 'earthquak', 'bore'], ['still', 'unbeliev', 'shock', 'fire', 'best', 'radio', 'person', 'martin', 'streek'], ['burden', 'abit', 'fail', 'lunch', 'dan'], ['work', 'not', 'like', 'today', 'nasti', 'outsid', 'not', 'wait', 'get', 'home', 'today', 'clean', 'hous'], ['blog', 'not', 'let', 'post', 'comment'], ['shit', 'got', 'shit', 'hw'], ['right', 'fuck', 'whole', 'twitter', 'silenc', 'experi', 'last', 'four', 'day', 'murder', 'inabl', 'mouth'], ['arriv', 'itexa', 'lot', 'mail', 'read', 'work', 'thank', 'god', 'weekend'], ['bad', 'start', 'day'], ['would', 'look', 'forward', 'see', 'tonight', 'go'], ['sad'], ['excus', 'jkid', 'long', 'yr', 'fun', 'night', 'start', 'lol'], ['miss', 'boy'], ['depress', 'want', 'know', 'kiss'], ['think', 'go', 'fail', 'aswel'], ['watch', 'today', 'show', 'not', 'see', 'though'], ['shuut', 'stupid'], ['think', 'broke'], ['headach', 'nobodi', 'keep', 'compani', 'lt'], ['think', 'may', 'cri', 'sold', 'civic', 'longer', 'mine'], ['hate', 'not', 'sleep'], ['sad', 'not', 'colleagu', 'work', 'parti'], ['miss', 'water', 'cuz', 'well', 'went', 'dri'], ['start', 'feel', 'depress', 'hurrican', 'talk', 'front', 'line'], ['walk', 'school', 'two', 'welt', 'thigh'], ['wish', 'could', 'go', 'bea', 'weekend'], ['head', 'pound', 'well', 'not', 'realli', 'pound', 'like', 'tap', 'suppos', 'homework', 'time'], ['beauti', 'outsid', 'sun', 'shine', 'bird', 'sing', 'studi', 'wish', 'alreadi', 'vacat'], ['wish', 'move', 'san', 'diego', 'wa', 'depress', 'miss', 'sunni', 'san', 'diegoo'], ['dang', 'realiz', 'bad', 'eye', 'gotten'], ['becom', 'tough', 'race', 'linda', 'inde', 'talent', 'someon', 'go', 'everi', 'week', 'cut', 'two', 'week'], ['keep', 'tri', 'invit', 'think', 'afraid'], ['not', 'devo', 'hope', 'day', 'not', 'suck'], ['havnt', 'gotten', 'month', 'ex', 'seem', 'date', 'not', 'spark', 'anymor', 'still', 'love', 'loser', 'left'], ['back', 'home', 'great', 'time'], ['sun', 'shine', 'lt', 'sky', 'fack', 'blue', 'lt', 'teletubbi', 'fuck', 'work'], ['not', 'got', 'cupcak', 'yet', 'hope', 'said', 'enough', 'would', 'appear'], ['havin', 'much', 'better', 'day', 'today', 'finish', 'last', 'twilight', 'book', 'yesterday', 'class', 'start', 'next', 'week', 'get'], ['get', 'swing', 'thing', 'miss', 'someon'], ['yeah', 'plus', 'alway', 'total', 'overspend'], ['contempl', 'borrow', 'one', 'mom', 'dog', 'want', 'take', 'care', 'someon'], ['way', 'work', 'wish', 'day'], ['think', 'friend', 'life', 'go', 'around', 'boyfriend', 'not', 'time', 'us', 'girl'], ['sigh', 'miss', 'day'], ['new', 'issu', 'want', 'flick', 'much', 'wait'], ['strike', 'one', 'three'], ['actual', 'wish', 'back', 'taho', 'miss'], ['not', 'work', 'alreadi'], ['ryanseacrest', 'hi', 'might', 'problem', 'say', 'stream', 'onlin', 'wat', 'not', 'right'], ['thinkin', 'twitter', 'realli', 'quit', 'borin'], ['miss'], ['upset', 'left', 'phone', 'home'], ['thought', 'someth', 'loll'], ['otu', 'boot', 'camp', 'late', 'oh', 'well', 'may', 'la', 'day', 'anyway'], ['piss', 'fell', 'asleep', 'push', 'miss'], ['northern', 'clemenc', 'not', 'recommend', 'much', 'descript', 'not', 'enough', 'action', 'slow'], ['quot', 'offens', 'hair', 'bad', 'quot', 'life', 'not', 'worth', 'live', 'anymor', 'noth', 'hurt', 'quit', 'like', 'hair', 'insult', 'cri', 'pillow'], ['not', 'anyon', 'give', 'poor', 'erni', 'rey', 'jr', 'break'], ['well', 'disappoint', 'hear'], ['check', 'cieg', 'cagalawan', 'collect', 'regret', 'not', 'see', 'collect', 'tonight', 'got', 'invit'], ['sure', 'peopl', 'came', 'seen', 'dentist'], ['second'], ['celebr', 'sight', 'spongebob', 'lol', 'even', 'distraught', 'miss'], ['wonder', 'actual', 'week', 'fuk', 'bar', 'pack', 'peep', 'r', 'leavin'], ['definit', 'grass', 'cut', 'cole', 'commit', 'stack', 'wood', 'neighbor', 'well', 'past', 'day', 'set', 'back', 'far'], ['not', 'good', 'would', 'not', 'like', 'girl', 'flirt', 'colleagu', 'would'], ['upset', 'left', 'phone', 'home'], ['bore', 'home'], ['ask', 'mark', 'still', 'old', 'blink', 'sens', 'humor', 'miss'], ['pirat', 'voic', 'aarrgghh', 'damn', 'wallet', 'work', 'shermk', 'dammit', 'close', 'yet', 'far', 'starv'], ['go', 'thursday', 'terribl', 'idea', 'knew', 'reason', 'not', 'done', 'quarter', 'pop', 'advil'], ['hope', 'mom', 'okay'], ['think', 'may', 'look', 'littl', 'silli', 'also', 'camera', 'broken', 'photo'], ['like', 'old', 'rubi', 'best'], ['unfortun', 'usual', 'goe', 'answer', 'okay', 'thing', 'may', 'look', 'miss', 'talk'], ['could', 'not', 'get', 'money', 'mikey', 'time', 'trust', 'make', 'sad'], ['realli', 'not', 'bother', 'go', 'work', 'tonigh', 'nice', 'stuck', 'insid'], ['sweat', 'not', 'cute', 'unfortun', 'not', 'figur', 'work', 'without', 'sweat', 'boo'], ['start', 'rethink', 'quot', 'not', 'stand', 'cold', 'place', 'quot', 'heat', 'humid', 'unbear', 'amp', 'not', 'stand', 'ac', 'meltingaway'], ['not', 'want', 'though', 'wish', 'slept', 'heather', 'woke', 'got', 'work', 'later', 'first', 'read', 'twilight'], ['someth', 'total', 'eat', 'broc', 'cab', 'bean', 'insecticid', 'soap', 'not', 'get', 'rid', 'pest', 'not', 'want', 'chemic'], ['stuck', 'offic', 'red', 'hot'], ['field', 'day', 'sad', 'ribbon'], ['hope', 'not', 'get', 'let'], ['found', 'go', 'us', 'august', 'get', 'tire', 'transatlant', 'flight', 'not', 'good', 'carbon', 'footprint', 'either'], ['knoww', 'not', 'deal', 'life', 'not'], ['depress'], ['tres', 'depress'], ['amp', 'malwar', 'work', 'pc', 'miss', 'dept'], ['not', 'find', 'hope', 'not', 'get', 'eaten', 'anyth', 'last', 'jump', 'deck', 'not', 'stay', 'safe', 'sigh'], ['work', 'miser', 'day'], ['yay', 'giant', 'headach', 'stupid', 'glass'], ['wake', 'lazi', 'worri'], ['mass', 'exodus', 'work', 'half', 'three', 'make', 'sad'], ['oh', 'sorri', 'not', 'get', 'repli', 'noth', 'yes', 'know', 'nirvana'], ['sleep', 'still', 'mourn', 'adobo', 'cook'], ['realli', 'degre', 'high', 'way', 'work', 'hagg', 'lake', 'tomorrow', 'go', 'especi', 'bomb', 'sauc'], ['street', 'fighter', 'iv', 'skill', 'lack', 'not', 'beat', 'seth', 'easi'], ['home', 'pukey', 'boy', 'poor', 'littl', 'babi'], ['poor', 'pooch'], ['poor', 'ds', 'bed', 'fever', 'not', 'abl', 'walk', 'relay', 'life', 'tonight', 'feel', 'bad', 'sad'], ['get', 'bit', 'tick', 'time', 'eat', 'ton', 'garlic', 'summer', 'keep', 'mosquito', 'away', 'boo', 'gt'], ['burnt', 'collerbon', 'arm', 'face', 'aww'], ['still', 'sad', 'samantha'], ['bird', 'flew', 'window', 'parent', 'hous', 'snap', 'poor', 'neck', 'got', 'buri'], ['today', 'busi', 'day', 'exhaust'], ['gut', 'handbag', 'want', 'sold'], ['need', 'remodel', 'hous', 'thought', 'make', 'kind', 'ill', 'one', 'way', 'anouth', 'want', 'move'], ['woman', 'not', 'know', 'came', 'home', 'suck', 'go', 'back'], ['wat', 'wrong', 'boo'], ['suck'], ['well', 'even', 'wors', 'cuz', 'get', 'hurt', 'everyon', 'pain', 'poor', 'stephen', 'smush', 'twitter'], ['ugh', 'go', 'town', 'never', 'rest', 'want', 'go', 'tyler', 'know', 'get', 'back', 'exaust'], ['puppi', 'shall', 'loos', 'um', 'man', 'part', 'today', 'poor', 'guy'], ['steal', 'stuff', 'buri', 'fenc', 'embarass', 'man', 'return', 'not', 'much', 'frog'], ['greeat', 'summer', 'four', 'know', 'know'], ['today', 'friday', 'realli', 'hope', 'read', 'messag', 'repli', 'soon', 'could', 'not', 'reach', 'phone', 'go', 'work'], ['class', 'fuckin', 'school', 'time', 'work', 'wed', 'jade', 'come', 'get', 'antioch', 'amtrak'], ['fml', 'not', 'loos', 'anoth', 'friend'], ['sri', 'day', 'tweet', 'mia', 'twitter', 'network', 'glitch', 'stori', 'funer', 'wrong', 'remain', 'deliv', 'ea'], ['rubbish'], ['defin', 'hard', 'time', 'cuz', 'young', 'amp', 'never', 'saw', 'wrkd', 'hard', 'make', 'car', 'amp', 'disabl'], ['think', 'someth', 'wrong', 'video', 'load', 'first', 'second'], ['hill', 'gunna', 'differ', 'gl', 'design', 'etc'], ['tri', 'take', 'jail', 'sissi', 'appar', 'warrant', 'agg', 'town', 'yeah', 'shock', 'hell', 'outta', 'lmao', 'yeah', 'right'], ['happi', 'friday', 'realiz', 'left', 'cell', 'phone', 'home', 'today', 'though'], ['realli', 'fanci', 'bake', 'egg', 'spinach'], ['hahaha', 'well', 'would', 'smack', 'hahaha', 'big', 'bangg'], ['none', 'peopl', 'talk', 'class', 'go', 'bore', 'period'], ['total', 'unsurpris', 'dave', 'not', 'come', 'back', 'annalisa', 'wrong', 'opposit', 'big', 'warm', 'mellow', 'dave'], ['wish', 'would', 'ball', 'kid', 'not', 'know', 'illog', 'peopl', 'not', 'want', 'risk'], ['not', 'want', 'anymor'], ['toaster', 'oven', 'fault', 'go', 'look', 'like', 'idiot', 'front', 'father'], ['binstruct', 'suffer', 'updat', 'mib', 'packag', 'develop', 'packag', 'holiday'], ['nnaa', 'uhh', 'playah', 'shawti', 'not', 'got', 'nun', 'mayb', 'phone', 'mine', 'want', 'hit', 'left', 'studio'], ['nice', 'day', 'springfield', 'end', 'month', 'expens', 'report'], ['realli', 'tire', 'today'], ['not', 'enjoy', 'cold', 'rainini', 'boston', 'day', 'think', 'new', 'metal', 'back', 'not', 'like', 'get', 'wet'], ['hope', 'hear', 'someth', 'soon', 'krystl', 'surgeri'], ['way', 'home', 'night', 'london', 'love', 'work', 'weekend', 'monday', 'weather', 'nice', 'x'], ['work', 'home', 'ran', 'coffe'], ['shame', 'job', 'thought', 'work', 'big', 'money', 'paid'], ['not', 'feel', 'inspir', 'suppos', 'concert', 'tonight'], ['hope', 'mom', 'ok'], ['weather', 'aw', 'want', 'curl', 'read', 'book', 'day'], ['nat', 'go', 'miss', 'bad'], ['oh', 'cool', 'ok', 'head', 'laydown', 'put', 'ice', 'heep', 'swell', 'feel', 'realli', 'bad'], ['idiot', 'crash', 'bike', 'bike', 'small', 'dent', 'buy', 'new', 'set', 'pedal'], ['better', 'snicker', 'bar', 'hershey', 'use', 'b', 'addict', 'miss', 'lol'], ['guy', 'said', 'california', 'angri', 'tweet', 'perez', 'hilton', 'jonathan', 'upset', 'spell', 'california', 'wrong'], ['suck', 'print', 'sorri'], ['ditch', 'school', 'hate', 'take', 'huge', 'dump', 'hurt', 'real', 'bad'], ['watch', 'scrub', 'season', 'oh', 'go', 'miss', 'show'], ['pass', 'last', 'night', 'middl', 'quarter', 'not', 'wit', 'magic', 'lose'], ['teeth', 'check', 'eye', 'die', 'coffe', 'not', 'drink', 'hour'], ['not', 'happi', 'bunni'], ['tri', 'recov', 'photo', 'problem', 'window', 'xd', 'card', 'result', 'shot', 'half', 'visibl', 'damn', 'microsoft'], ['slave', 'away', 'work'], ['time', 'pack', 'work', 'not', 'much', 'time', 'twitter', 'thank', 'follow', 'friday', 'back', 'later'], ['la', 'want', 'sun', 'today', 'appar', 'la', 'not', 'cooper'], ['way', 'work', 'work', 'suck', 'big', 'time'], ['minstrel', 'might', 'grab', 'petrol', 'station', 'head', 'back', 'work', 'delici'], ['sigh', 'usb', 'die', 'afternoon', 'miss', 'not', 'even', 'chanc', 'parad', 'around', 'yet'], ['anyon', 'ever', 'heavi', 'feel', 'sad', 'heart', 'case', 'rite'], ['got', 'approxim', 'hour', 'sleep', 'last', 'love', 'life'], ['wish', 'not'], ['feel', 'like', 'not', 'go', 'make', 'year'], ['hate', 'histori', 'coursework', 'soo', 'much'], ['wish', 'would', 'sad'], ['modem', 'offlin', 'week', 'god', 'bless', 'network', 'tim', 'left', 'may', 'schedul', 'brutal'], ['watch', 'french', 'open', 'tenni', 'sad', 'see', 'venus', 'make', 'earli', 'exit', 'morn'], ['go', 'funer', 'today', 'friend', 'classmat', 'die', 'car', 'wreck', 'last', 'friday'], ['whenev', 'rain', 'hard', 'get', 'motiv'], ['sad', 'got', 'plan', 'cancl'], ['got', 'haircut', 'not', 'happi'], ['frustrat', 'stuck', 'home', 'without', 'transport', 'global', 'god', 'confer', 'ahh'], ['tgif', 'quot', 'short', 'quot', 'week', 'wayi', 'long'], ['wish', 'yesterday', 'friday'], ['worri', 'friend'], ['woke', 'earli', 'still', 'sick'], ['hot', 'done', 'late', 'spring', 'clean', 'settl', 'book', 'bare', 'read', 'left', 'glass', 'mum'], ['mail', 'server', 'reject', 'simpl', 'plain', 'repli', 'potenti', 'threat', 'not', 'good'], ['ok', 'lot', 'bore', 'thought', 'matt', 'lockdown', 'moolah'], ['alreadi', 'dress', 'set', 'today', 'let', 'real', 'fun', 'begin', 'light', 'camera', 'action'], ['yeah', 'back', 'work', 'get', 'not', 'bad'], ['late', 'actual', 'spell', 'bee', 'back', 'day', 'got', 'elimin', 'state', 'final', 'though'], ['note', 'self', 'never', 'ever', 'leav', 'macbook', 'pro', 'stupid', 'icurv', 'fell'], ['nice', 'insid'], ['cd', 'player', 'car', 'broken', 'much', 'listen', 'kidz', 'bop', 'happi', 'meal', 'cd'], ['good', 'morn', 'friday', 'start', 'work', 'week', 'laker', 'go', 'take', 'w', 'tonight', 'woohoo', 'go', 'laker'], ['bore', 'well', 'not', 'like', 'one', 'see', 'not', 'got', 'friend'], ['vacat', 'look', 'forward', 'next', 'one'], ['note', 'self', 'never', 'ever', 'leav', 'macbook', 'pro', 'stupid', 'icurv', 'fell'], ['feel', 'not', 'good'], ['last', 'day', 'senior', 'bye', 'bff'], ['scare', 'set', 'pw', 'bb', 'might', 'forget', 'amp', 'end', 'lose', 'data', 'yet', 'financi', 'info', 'catch'], ['readi', 'work'], ['saw', 'ur', 'chanc', 'els', 'would', 'name', 'think', 'b', 'miss', 'thank', 'god', 'youtub'], ['clever', 'headlin', 'sorri', 'salt', 'lake', 'citi'], ['quot', 'someth', 'must', 'wrong', 'found', 'juli', 'book', 'want'], ['jz', 'local', 'movi', 'titl', 'virgin', 'p', 'actual', 'feel', 'not', 'good', 'tire', 'n', 'dizzi'], ['may', 'email', 'tech', 'support', 'peopl', 'odd'], ['woke', 'laura', 'last', 'full', 'day', 'last', 'night', 'watch', 'embarrass', 'home', 'movi'], ['charley', 'hors', 'leg', 'night', 'fuck'], ['head', 'gym', 'group', 'guy', 'use', 'go', 'except', 'brandon', 'make', 'terribl', 'sad'], ['suck', 'stuck', 'offic', 'selfridg', 'look', 'forward'], ['hahaha', 'tempt', 'nevermind', 'la', 'quit', 'klutz', 'actual', 'fare', 'better', 'hp', 'cam', 'lol'], ['daughter', 'seper', 'anxieti', 'intens', 'kill', 'not', 'leav', 'sight', 'without', 'break', 'anxieti', 'attack'], ['go', 'meet', 'new', 'famili', 'babysit', 'wish', 'still', 'sleep'], ['hate', 'feel', 'like', 'need', 'break', 'away', 'everyon', 'soon', 'exam', 'defo', 'portsmouth', 'bit'], ['watch', 'spell', 'bee', 'contest', 'winner', 'kavya', 'shivshankar', 'impress', 'perform', 'not', 'even', 'hear', 'word'], ['ugh', 'miser', 'look', 'day', 'degre', 'summer', 'go'], ['spent', 'morn', 'watch', 'eddi', 'izzard', 'glorious', 'funni', 'realli', 'shud', 'hav', 'studi', 'thou'], ['ayi', 'okayi', 'nice', 'see', 'kanina', 'gt', 'like', 'hair', 'gt'], ['grr', 'not', 'even', 'practic', 'trumpet', 'vocal', 'gland', 'neck', 'hurt', 'much', 'guitar'], ['one', 'load', 'wash', 'put', 'away', 'anoth', 'load', 'amaz', 'hous', 'not', 'look', 'better', 'effort'], ['woke', 'sore', 'throat', 'work', 'tonight', 'grad', 'practic', 'morn', 'hang', 'famili', 'graduat', 'high', 'school'], ['omg', 'still', 'nake', 'xdd', 'omg', 'miss', 'muuch'], ['alreadi', 'hot', 'outsid', 'thank', 'good', 'car', 'amaz', 'cyalat', 'work'], ['pff', 'life', 'suck', 'sometim'], ['hurt', 'finger', 'work'], ['not', 'think', 'go', 'camp'], ['say', 'tom', 'hello', 'school', 'shit'], ['current', 'msla', 'not', 'cloud', 'sky', 'humid', 'go', 'get', 'today'], ['total', 'overstress', 'go', 'work', 'want', 'colleg', 'work', 'go', 'away', 'not', 'want', 'fail'], ['blue', 'news', 'love', 'tonight', 'dc'], ['pray', 'get', 'better', 'soon', 'sweet', 'one', 'sorri', 'still', 'not', 'well'], ['evil', 'credit', 'card', 'compani', 'god', 'start', 'build', 'credit', 'get', 'stupid'], ['aht', 'stress', 'suppos', 'friday', 'make', 'want', 'cri'], ['gahh', 'weather', 'suckss'], ['sunburn', 'peel'], ['soo', 'hot', 'put', 'ton', 'sunblock', 'jog', 'still', 'think', 'face', 'burnt', 'though'], ['got', 'headach', 'hard', 'work', 'today', 'still', 'not', 'readi', 'heineken', 'tri', 'finish'], ['fun', 'tomorrow', 'night', 'think', 'fun', 'bar', 'art', 'galleri', 'wish', 'could'], ['know', 'say', 'alway', 'point', 'knife', 'away', 'learn', 'lesson', 'one', 'straight', 'finger'], ['think', 'cheap', 'sunglass', 'fall', 'apart', 'oh', 'well'], ['urgh', 'realli', 'hate', 'medicin'], ['want', 'somebodi', 'cheer'], ['get', 'bore', 'walk', 'stair'], ['get', 'ton', 'spam', 'mail', 'inbox', 'drive', 'insan'], ['morrissey', 'cancel'], ['go', 'fail', 'test', 'miser', 'histori'], ['back', 'realiti', 'boo'], ['realli', 'nervous', 'anim', 'right', 'present', 'next', 'period'], ['asylm', 'yay', 'regist', 'lost', 'friend'], ['still', 'sick', 'home'], ['likewis', 'not', 'know', 'anyon', 'use', 'gtalk', 'like', 'not', 'hold', 'much', 'hope'], ['unfortun', 'not', 'leav', 'hous', 'time'], ['tri', 'dm', 'not', 'follow', 'us'], ['cat', 'miss', 'day', 'freak'], ['tri', 'translat', 'tweet', 'use', 'googl', 'translat', 'servic', 'spat', 'back'], ['read', 'take', 'note', 'undertand', 'none', 'help'], ['dam', 'vote', 'not', 'go', 'win', 'anyth'], ['real', 'stress'], ['ooh', 'lush', 'not', 'sunbath', 'burn', 'way', 'easili', 'even', 'sun', 'cream', 'great', 'thank', 'love', 'sunni', 'day'], ['suck'], ['sorri', 'not', 'mean', 'hope', 'think', 'positivli', 'look', 'back'], ['sick', 'suck'], ['inspect', 'went', 'fine', 'like', 'hous', 'woope', 'would', 'nice', 'morn', 'could', 'done', 'stuff', 'today'], ['know', 'not', 'want', 'left', 'home', 'weekend'], ['not', 'fan'], ['leg', 'broke', 'wait', 'until', 'go'], ['good', 'thank', 'good', 'drive', 'care', 'blackberri', 'not', 'want', 'get', 'scream'], ['kyle', 'go', 'town', 'weekend', 'play', 'time', 'wif', 'fwiend', 'rawrr'], ['throat', 'hurt', 'bad', 'not', 'even', 'want', 'swallow', 'spit', 'offici', 'not', 'talk'], ['ugh', 'someth', 'wrong', 'sudden', 'feel', 'extrem', 'flush', 'shaki', 'broke', 'sweat', 'not', 'know', 'wrong'], ['could', 'not', 'fuck', 'sleep', 'today', 'either', 'hard', 'stay', 'asleep', 'reason'], ['bummer', 'miss', 'taylor', 'swift', 'today', 'show', 'plan', 'day'], ['not', 'wale', 'past', 'quad', 'want', 'outsid', 'fun'], ['ouch', 'hate', 'favourit', 'item', 'cloth', 'get', 'ruin'], ['storm', 'act', 'discuss', 'session', 'regard', 'social', 'media', 'scott', 'lake', 'ceo', 'thinksm', 'attend'], ['grr', 'not', 'finish', 'juli'], ['hear', 'bird', 'chirp', 'make', 'think', 'nice', 'not', 'rain', 'rain', 'go', 'away'], ['not', 'gaug', 'time', 'day', 'offic', 'anymor', 'wors', 'friggin', 'casino', 'waitress', 'smoke', 'booz'], ['internet', 'wtf', 'think', 'go', 'sleep', 'afterward', 'internet', 'drive', 'crazyy'], ['page', 'left', 'read', 'time', 'start', 'lunch', 'grader'], ['back', 'glasgow', 'stuck', 'traffic'], ['still', 'disney', 'train', 'soarin', 'rose', 'appli', 'apart', 'last', 'night', 'eric', 'lost', 'job'], ['omgsh', 'know', 'deal', 'rite', 'fun'], ['wave', 'look', 'interest', 'go', 'live', 'live', 'connect', 'might', 'well', 'easi', 'right', 'googl', 'own', 'us'], ['well', 'pour', 'realli', 'realli', 'wet'], ['haha', 'not', 'good', 'vid', 'tubey', 'thugh'], ['tummi', 'hurt', 'blame', 'last', 'night', 'chines', 'food'], ['know', 'want', 'come', 'bec', 'excit', 'not', 'bec', 'go', 'go', 'fast', 'amp'], ['feel', 'sad', 'not', 'like', 'new', 'haircut'], ['eyelid', 'not', 'deep', 'set', 'thank', 'would', 'help', 'lot'], ['idea', 'watch', 'rafa', 'run', 'comp', 'ever', 'often', 'check', 'live', 'score', 'third'], ['girl', 'stay', 'invit', 'not', 'hahaha', 'phone', 'call', 'check'], ['sorryy', 'home', 'fast', 'possibl', 'meet'], ['might', 'broken', 'text', 'messag'], ['got', 'coupon', 'could', 'not', 'regist', 'us'], ['know', 'second', 'problem', 'not', 'realli', 'exist', 'still', 'appli', 'shame'], ['spray', 'tan', 'fail', 'leg', 'feet', 'scrub', 'feet', 'look', 'better', 'look', 'aw', 'morn', 'everywher', 'els', 'ok'], ['back', 'offic', 'fire', 'alarm', 'went', 'due', 'someon', 'burnt', 'food', 'microwav'], ['get', 'readi', 'week', 'nice', 'today', 'stuck', 'insid', 'work'], ['need', 'plug', 'real', 'ear', 'want', 'stretch', 'money'], ['tri', 'finish', 'god', 'help', 'finish'], ['made', 'wonder', 'breakfast', 'get', 'readi', 'workout'], ['men', 'far', 'sunni'], ['run', 'join', 'run'], ['good', 'morn', 'folk', 'day', 'go', 'sad', 'day', 'giro', 'mean', 'tour', 'not', 'far', 'away'], ['nyc', 'placement', 'start', 'come', 'look', 'like', 'upgrad', 'might', 'wait', 'yet', 'anoth', 'two', 'week', 'placement', 'dread'], ['oh', 'god', 'end', 'first', 'cours', 'not', 'believ', 'yeh', 'mani', 'exam', 'everyth', 'wonder'], ['came', 'soo', 'heartbeat'], ['final', 'back', 'stupid', 'holiday', 'miss', 'fit', 'bar', 'men', 'though'], ['move', 'offic', 'tomorrow', 'year', 'one', 'sad', 'day'], ['nice', 'day', 'like', 'today', 'wish', 'garden'], ['wish', 'outsid'], ['stayn', 'home', 'school', 'sick', 'doc', 'say', 'bronchiti'], ['sat', 'sunbath', 'bomb', 'church', 'day', 'left', 'miss'], ['watch', 'chicago', 'honeyi', 'miss', 'hey', 'arnold', 'wild', 'thornberri'], ['hate', 'life', 'moment', 'mani', 'nos', 'delic', 'littl', 'mind', 'take'], ['get', 'paid', 'still', 'broke', 'hell', 'shop', 'spree', 'today'], ['busi', 'bob', 'jealous', 'not', 'sure', 'even', 'afford', 'go', 'meet', 'john', 'de', 'lanci', 'leonard', 'nimoy'], ['hate', 'histori'], ['well', 'one', 'week', 'left', 'holiday', 'sad', 'sad'], ['devil', 'say', 'wait', 'black', 'widow', 'movi', 'not', 'awesom'], ['guess', 'work', 'fusion', 'otherwis', 'boot', 'direct', 'vista', 'onlin', 'bank', 'suck'], ['puffi', 'leavingg', 'noo'], ['go', 'miss', 'imac', 'much', 'next', 'month'], ['izzi', 'sorri', 'hear', 'disast'], ['raini', 'day', 'today', 'car', 'stuck', 'hous', 'need', 'go', 'post', 'offic'], ['thank', 'gourmetcook', 'cold', 'shower', 'would', 'not', 'help'], ['oh', 'matey', 'get', 'ill', 'would', 'bit', 'mean', 'suzi', 'call', 'chicken', 'scab', 'not'], ['miss', 'devil', 'wear', 'prada', 'sad'], ['sit', 'empti', 'yearbook', 'room', 'attempt', 'figur', 'soon', 'possibl', 'lol'], ['oh', 'gosh', 'ian', 'alway', 'miss'], ['hug', 'thank', 'not', 'know', 'go', 'fix', 'ever', 'go', 'get', 'account', 'back'], ['sit', 'awe', 'price', 'renew', 'laptop', 'warranti', 'doubl', 'matter', 'week'], ['tgif', 'bad', 'weather', 'suck'], ['lousi', 'mofo', 'landlord', 'need', 'focus', 'kid', 'pack', 'not', 'nevermind', 'sew', 'sleep', 'bag'], ['figur', 'wat', 'wrong', 'drink', 'not', 'eat'], ['awak', 'still', 'feel', 'sick', 'got', 'blog', 'done', 'least'], ['sephora', 'sale', 'broke', 'life', 'not', 'fair'], ['ughh'], ['probabl', 'not', 'hate', 'happen'], ['ugh', 'not', 'access', 'mobil', 'web'], ['psa', 'usu', 'last', 'tweet', 'yet', 'show', 'bore', 'bare', 'w'], ['paid', 'bill', 'money'], ['warhamm', 'space', 'marin', 'announc', 'luck', 'pc', 'gamer'], ['nomatt', 'much', 'sleep', 'still', 'tire'], ['ok', 'back', 'dentist', 'today', 'want', 'bask', 'sun'], ['tri', 'use', 'contact', 'save', 'local', 'outlook', 'thank', 'though'], ['hate', 'young'], ['warm', 'not', 'arm', 'sore', 'bad', 'time', 'face', 'littl', 'red'], ['good', 'mornin', 'amp', 'tol', 'twitter', 'lol', 'knew', 'amp', 'call', 'yesterday', 'see', 'okay', 'answer', 'r', 'feelin', 'babe'], ['back', 'gym', 'project', 'final', 'finish', 'damn', 'filthi', 'hobo', 'alway', 'tri', 'eat', 'lt'], ['oh', 'final', 'messag', 'not', 'review', 'boardgam', 'telli', 'not', 'even', 'get', 'nice', 'letter'], ['nomatt', 'much', 'sleep', 'still', 'tire', 'either', 'go', 'sleep', 'earli', 'late'], ['far', 'absolut', 'perfect', 'great', 'view', 'direct', 'across', 'elev', 'ice', 'machin', 'impec', 'weather', 'need', 'bike'], ['oh', 'gfail', 'end', 'html', 'version', 'day'], ['michael', 'scofil', 'noo', 'hate', 'writer', 'director', 'n', 'product'], ['ugh', 'hate', 'queue'], ['last', 'night', 'fun', 'w', 'lighten', 'thunder', 'today'], ['love', 'nice', 'weather', 'today', 'camp', 'tonight', 'oh', 'hate', 'hair'], ['yes', 'pm', 'pm', 'right'], ['sad', 'feel', 'bad', 'hear', 'look', 'like', 'mid', 'like', 'someth', 'wld', 'see', 'lifetim'], ['besid', 'not', 'strep', 'like', 'year', 'reason', 'tire', 'anyth', 'els'], ['glad', 'see', 'sun', 'dublin', 'great', 'week', 'london', 'back', 'work'], ['darn', 'keep', 'forget', 'darn', 'quot', 'quot', 'dm'], ['not', 'know', 'not', 'even', 'realiz', 'gone', 'let', 'put', 'twitter'], ['want', 'know', 'not', 'fun', 'way', 'wake', 'panic', 'attack', 'not', 'abl', 'breath', 'fuck', 'reason', 'fuck', 'suck'], ['well', 'piss', 'not', 'get', 'site', 'work', 'come', 'thru', 'phone'], ['littl', 'beetl', 'not', 'feel', 'love', 'search', 'bring', 'zilch', 'bar', 'peep', 'appear', 'funni'], ['wtf', 'rehears', 'got', 'space', 'room', 'book', 'brother', 'stuff', 'right', 'not', 'transfer', 'anoth', 'room', 'studio'], ['well', 'ya', 'pleas', 'send', 'luvin', 'sens', 'deep', 'fieri', 'anger', 'surround', 'presenc', 'right'], ['weather', 'suck', 'rain'], ['hate', 'weather'], ['nvidia', 'lenovo', 'ideapad', 'awesom', 'fn', 'key', 'left', 'ctrl', 'make', 'though'], ['not', 'play', 'world', 'conflict', 'comput', 'run', 'slow'], ['chillin', 'promot', 'eat', 'lmaao'], ['bad', 'start', 'day', 'sweat', 'butt', 'rang'], ['ff', 'later', 'busi', 'make', 'plan', 'today', 'beshi', 'go', 'dc', 'june', 'bball', 'game'], ['want', 'go', 'birthday'], ['tri', 'morn', 'sad', 'could', 'not'], ['anoth', 'long', 'walk', 'heat', 'hate'], ['spi', 'princess', 'ann', 'today', 'listent', 'friend', 'cook', 'perfect', 'even', 'work', 'suck', 'ob'], ['watch', 'devil', 'wear', 'prada', 'want', 'live', 'new', 'york', 'citi', 'ever', 'must', 'poor'], ['serious', 'touch', 'ars', 'ohmygod', 'bitch', 'lol', 'aaww', 'tell'], ['yeess', 'not', 'wait', 'bad', 'not', 'drink'], ['work', 'miss', 'sunshin'], ['love'], ['want', 'boo', 'way', 'love', 'fhnixon', 'post', 'hilari'], ['anoth', 'day', 'not', 'got', 'time', 'play', 'plus', 'rain', 'chilli', 'also', 'headach', 'wth', 'go', 'back', 'sulk', 'mode'], ['piss', 'today', 'n', 'sad', 'not', 'even', 'share', 'reason'], ['well', 'friday', 'usual', 'start', 'someth', 'not', 'sure', 'time', 'around', 'got', 'shake'], ['fuck', 'arm', 'feel', 'like', 'realli', 'sore'], ['aww'], ['demo', 'gari', 'burr', 'excit', 'get', 'quot', 'girl', 'quot', 'music', 'tape', 'miss', 'tayla'], ['ice', 'coffe', 'christ', 'tast', 'nasti'], ['allergi', 'sun', 'wear', 'short', 'stuck', 'advisori', 'whole', 'day', 'bore', 'except', 'fun', 'peopl', 'make', 'fun'], ['work', 'attempt', 'keep', 'squirrel', 'away', 'squirel', 'jesska', 'stick', 'spider'], ['might', 'one', 'accus', 'guy', 'quot', 'one', 'side', 'quot', 'issu', 'get', 'way', 'way', 'hand'], ['aw', 'man', 'sorri', 'logic', 'reason', 'promis', 'studi', 'order', 'tutor', 'new', 'student'], ['miss', 'yesterday', 'lacey', 'get', 'go', 'granul', 'tonight', 'though'], ['bore', 'last', 'weekend'], ['oh', 'somebodi', 'hack', 'email', 'scare', 'fuck'], ['scare', 'dalek', 'dw', 'exhibit', 'cardiff'], ['yes', 'soak', 'sure', 'go', 'fast', 'n', 'furious', 'one', 'show', 'year', 'reason', 'revel', 'moment'], ['yep', 'exact', 'realli', 'sad', 'know', 'go', 'cri', 'last', 'amp', 'g'], ['bet', 'not', 'fall', 'asleep', 'till', 'like', 'morn', 'sorri'], ['thank', 'pair', 'git', 'hope', 'like', 'bus'], ['yeah', 'like', 'type', 'wick', 'wick', 'wick', 'not', 'know', 'not', 'think', 'would', 'like'], ['come', 'bake', 'slight', 'headach'], ['not', 'think', 'went', 'well', 'min'], ['fact', 'ihat', 'directv', 'ondemand', 'passion', 'burn', 'white', 'hot', 'intens', 'sun', 'fact', 'imiss', 'comcast', 'like', 'lot'], ['effort', 'time', 'put', 'relationship', 'peopl', 'learn', 'enough', 'not', 'trust', 'anyon'], ['watchign', 'garden', 'hot'], ['not', 'feel', 'well'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['hate', 'pc'], ['well', 'dnt', 'realli', 'knw', 'wot', 'stay', 'wit', 'not', 'want', 'b', 'wiv', 'move', 'home', 'rent', 'bein', 'away'], ['yucki', 'time', 'bring', 'vaccuum', 'go', 'war', 'hous', 'alway', 'spider', 'reason', 'not', 'cool'], ['pshh', 'not'], ['thank', 'sweeti', 'understand', 'peopl', 'mad', 'someth', 'made', 'choic', 'life'], ['would', 'not', 'repli', 'gorgeous', 'hot', 'pink', 'shoe'], ['yukki', 'raini', 'friday'], ['okay', 'lie', 'meant', 'time', 'next', 'week', 'soo', 'much', 'longer', 'miss', 'mommi'], ['tri', 'figur', 'earth', 'suppos', 'abl', 'updat', 'status', 'via', 'phone', 'someon', 'help', 'mee'], ['ah', 'yes', 'drop', 'bear', 'thing', 'love', 'day', 'odd', 'stafford'], ['offici', 'nobodi', 'get', 'rais', 'year'], ['want', 'garden', 'sit', 'insid', 'sunni', 'suck'], ['sound', 'shitti'], ['yen', 'lol', 'get', 'vid', 'phone', 'ipod', 'not', 'find', 'song', 'lol'], ['fcuk', 'ayoko', 'na', 'said', 'tagalog', 'cuz', 'not', 'know', 'anymor'], ['lab', 'inform', 'logic', 'board', 'dead', 'well', 'fark', 'expens', 'replac', 'not', 'know'], ['not', 'heap', 'hey', 'bout', 'tu', 'hit', 'sack', 'need', 'someon', 'tu', 'cuddl', 'suck', 'wbu', 'x'], ['hiya', 'hun', 'not', 'day', 'dentist', 'appoint', 'ouch', 'notebook', 'bitch', 'feel', 'sick'], ['back', 'work', 'extrem', 'slow', 'start'], ['hey', 'dee', 'wish', 'could', 'make', 'mastermind', 'session', 'tomorrow', 'wed', 'statesboro', 'hope', 'chat', 'soon'], ['scari'], ['one', 'downsid', 'nice', 'weather', 'bring', 'chav'], ['wish', 'got', 'fij'], ['need', 'sumth', 'excruci', 'headach'], ['mother', 'take', 'gambit', 'vet', 'today', 'hope', 'noth', 'serious'], ['bad', 'net', 'issu', 'wed', 'could', 'not', 'broadcast', 'tonight', 'though', 'tune', 'new', 'anthem', 'bad', 'mix'], ['afraid', 'not', 'much', 'realiz', 'true', 'difficulti', 'design', 'may', 'cri', 'soon', 'idmfin'], ['someon', 'stole', 'new', 'laptop', 'airport', 'not', 'even', 'use', 'guess', 'us', 'economi', 'breed', 'new', 'set', 'quot', 'opportinist', 'quot'], ['dislik', 'math', 'math', 'hate'], ['tan', 'emili', 'bad', 'prob', 'go', 'rain'], ['think', 'hayfev', 'not', 'sure', 'due', 'wear', 'next', 'noth', 'horrif', 'weather', 'wed'], ['tom', 'tour', 'philippin', 'pleas', 'would', 'awesom'], ['thankyou', 'not', 'know'], ['amen', 'vitamin', 'made', 'ill', 'felt', 'better', 'start', 'take'], ['hope', 'left', 'bb', 'home', 'not', 'lose', 'metro'], ['omg', 'feel', 'bad', 'good'], ['oh', 'kasa', 'pleas', 'lose', 'hair'], ['reason', 'not', 'find', 'latest', 'arena', 'magazin', 'fold', 'due', 'recess', 'grr', 'surviv', 'justic'], ['shop', 'til', 'bac', 'sunshin', 'miss'], ['shit', 'contact', 'parent', 'gt', 'gt', 'grr'], ['anyth', 'sorri', 'man', 'not', 'patsi', 'general'], ['best', 'friend', 'bought', 'someth', 'realli', 'want'], ['soo', 'disappoint', 'look', 'like', 'way', 'imag', 'gone'], ['wow', 'drank', 'drink', 'water', 'ice', 'cube', 'took', 'age', 'melt', 'brian', 'freez'], ['still', 'wait', 'email', 'max', 'consid', 'news', 'bad', 'news'], ['miss', 'mom', 'today', 'made', 'quot', 'date', 'quot', 'everi', 'year', 'get', 'flower', 'togeth', 'yr', 'alon', 'felt', 'weird'], ['wnt', 'yesterday', 'wish', 'could', 'go', 'someday', 'loov', 'ya', 'lt'], ['deal', 'cancer', 'direct', 'famili', 'bugger', 'cancel', 'suck'], ['sad', 'day'], ['stomach', 'ef', 'hurt', 'sad', 'gym', 'class', 'afternoon'], ['wish'], ['steve', 'chai', 'sound', 'awesom', 'wish', 'one', 'stuck'], ['not', 'given', 'exact', 'date', 'not', 'much', 'longer', 'pleas', 'accept', 'apolog', 'inconveni'], ['creeper', 'feel', 'disappoint', 'damn', 'cyberstalk', 'skill', 'internet', 'privaci'], ['good', 'luck', 'still', 'get', 'wireless', 'work', 'post'], ['omg', 'one', 'year', 'work', 'permit', 'go', 'home', 'end', 'realli', 'gna', 'miss', 'canada'], ['mani', 'job', 'aspir', 'supervisor', 'not', 'one', 'talk', 'much', 'stress', 'littl', 'pay'], ['tire', 'not', 'know'], ['isint', 'let', 'chang', 'profil', 'pictur'], ['kidney', 'stone', 'ever', 'deserv', 'kind', 'pain', 'not', 'twice', 'five', 'time', 'life', 'took', 'drug', 'peac'], ['school', 'linda', 'noth', 'miss'], ['got', 'thinkin', 'weird', 'dog'], ['yes', 'got', 'lovey', 'amp', 'return', 'love', 'amp', 'anoth', 'amp', 'also', 'know', 'mad'], ['great', 'podcast', 'wish', 'guy', 'chi', 'show', 'summer', 'time', 'see', 'alpin'], ['well', 'discov', 'not', 'swim', 'sorri'], ['look', 'forward', 'go', 'home', 'tomorrow', 'realli', 'wish', 'differ', 'reason'], ['realli', 'hate', 'delay', 'train', 'especi', 'minut', 'delay', 'train', 'go', 'late', 'work'], ['noth', 'better', 'take', 'cold', 'shower', 'morn'], ['ok', 'super', 'bore', 'guess', 'one', 'els'], ['jailbreak', 'went', 'great', 'not', 'tremend', 'amount', 'app', 'readi', 'though', 'winterboard', 'yet'], ['hey', 'present', 'larg', 'post', 'sorri', 'rule', 'entiti', 'catalogu', 'rda', 'live', 'gt'], ['tgif', 'not', 'feel', 'good'], ['hahaha', 'chivalri', 'not', 'dead', 'rare'], ['work', 'product', 'buzz', 'product', 'review', 'blog', 'pain', 'back', 'neck'], ['share', 'miss', 'niec', 'nephew'], ['realli', 'dead', 'descans', 'paz', 'luto', 'sad', 'rip'], ['experienc', 'pain', 'pagin', 'listview', 'control'], ['paint', 'nail', 'green', 'attempt', 'look', 'like', 'armi', 'person', 'annoy', 'everyon', 'seem', 'tan', 'apart', 'freckl', 'sunburn'], ['haha', 'yeah', 'constant'], ['got', 'twit', 'link', 'fail'], ['chick', 'not', 'shut', 'stop', 'chirp', 'sit', 'bloodi', 'thing'], ['dnt', 'even', 'like', 'wear', 'skinni', 'jean', 'cuz', 'bitch', 'ass'], ['sorri'], ['idea', 'wtf'], ['chick', 'not', 'shut', 'stop', 'chirp', 'sit', 'bloodi', 'thing'], ['go', 'make', 'go', 'way', 'store', 'lol', 'find', 'googl', 'thank', 'lol'], ['exact', 'becom', 'complet', 'incap', 'anyth', 'unless', 'help', 'mani'], ['googl', 'chrome', 'forgot', 'everyth', 'look', 'like', 'reason'], ['columbus', 'blue', 'jack', 'may', 'movi', 'anew', 'citi', 'play', 'sad', 'news'], ['oh', 'man', 'dead', 'deer', 'everywher', 'michigan'], ['think', 'kill', 'judg', 'bt', 'energi', 'attack', 'see', 'happen', 'spymast'], ['rain', 'ever', 'go', 'away', 'puppi', 'get', 'cabin', 'fever', 'not', 'like', 'go', 'rain'], ['hope', 'better', 'trailer'], ['peopl', 'wat', 'hell', 'follow', 'twitter', 'not', 'get'], ['sit', 'connect', 'listen', 'employe', 'reminisc', 'mope', 'last', 'shift'], ['miss', 'drive', 'alreadi'], ['yay', 'suppos', 'next', 'weekend', 'make', 'lt', 'philli'], ['cri', 'hard'], ['friday', 'not', 'pleasant', 'one', 'waay', 'much', 'work'], ['wish', 'blog', 'work', 'proper', 'great', 'followfriday', 'blog', 'post', 'want', 'showcas'], ['conflict', 'realli', 'like', 'mike', 'still', 'feel', 'darrin', 'realli', 'complic', 'not', 'know'], ['dentist', 'hole', 'tooth'], ['noth', 'yet', 'still', 'let', 'us', 'sure', 'lunch', 'next', 'week'], ['though', 'cold', 'would', 'go', 'away', 'turn', 'sinus', 'infect', 'keep', 'get', 'wors', 'wors', 'day'], ['got', 'assign', 'tomorrow', 'omg', 'mackillop', 'swine'], ['ughh', 'tummi', 'ach'], ['busi', 'ugh', 'largest', 'headach'], ['happen', 'suffer', 'pain', 'like', 'not', 'move', 'either'], ['jesus', 'christ', 'meadowhal', 'could', 'better', 'air', 'con', 'hot'], ['fab', 'day', 'placement', 'work', 'weekend'], ['gorgeous', 'day', 'go', 'work', 'day', 'got', 'keep', 'tell', 'nyc'], ['sure', 'lot', 'studio', 'equip', 'collect', 'analog', 'stuff', 'not', 'bought', 'anymor', 'serious', 'condol'], ['bye', 'la', 'alreadi', 'miss'], ['quot', 'think', 'break', 'heart', 'tri', 'keep', 'togeth', 'fall', 'quot'], ['dreari', 'raini', 'crappi', 'day'], ['aww', 'told', 'would', 'chang', 'suggest', 'tri', 'get', 'touch', 'dre', 'peopl', 'lol'], ['good', 'morn', 'rain'], ['not', 'columbus', 'want', 'say', 'sorri', 'miss', 'indiana', 'show', 'tomorrow', 'sad', 'wood', 'gs'], ['tire'], ['hate', 'biatch', 'world'], ['newest', 'version', 'not', 'better'], ['bad', 'day', 'close', 'relat', 'die', 'not', 'go', 'florida'], ['suck', 'save'], ['never', 'good', 'time', 'recours', 'small', 'claim', 'get', 'atti', 'involv'], ['hate', 'cloudi', 'either', 'want', 'sunni', 'rain', 'cloudi'], ['saw', 'fleetwood', 'mac', 'insan', 'jealous', 'not', 'enough', 'money', 'buy', 'ticket', 'think', 'never', 'see'], ['job', 'hunt', 'tri', 'day', 'noth', 'work', 'bet', 'could', 'not', 'even', 'work', 'strip', 'club', 'cider', 'belli'], ['get', 'earli', 'feel', 'good', 'day', 'walk', 'work', 'feel', 'alright', 'guess', 'not', 'work', 'today'], ['well', 'not', 'get', 'cupcak', 'not', 'connect', 'network', 'sim', 'card', 'corrupt'], ['vcenter', 'screw', 'today', 'specif', 'mssql', 'server', 'connect'], ['head', 'farm', 'not', 'want', 'want', 'stay', 'talk', 'boyfriend', 'stupid', 'mom', 'make', 'go', 'gt', 'lt'], ['hot', 'hate', 'summer', 'harrymcflytos'], ['neither', 'could', 'look', 'ebay', 'like', 'euro', 'two', 'doubt', 'parent', 'would', 'fork', 'amount'], ['someth', 'area', 'make', 'tonsil', 'swell', 'everyday', 'not', 'get', 'feel', 'slight', 'miser', 'ff', 'done'], ['make', 'sad', 'follow', 'someon', 'convers', 'similar', 'bio', 'not', 'follow', 'back'], ['browsin', 'thru', 'video', 'multipli', 'saw', 'video', 'sang', 'bf', 'miss', 'miss', 'pls', 'come', 'back', 'wherev', 'r'], ['see', 'guy', 'philippin', 'would', 'coolest', 'thing', 'ever', 'alway', 'want', 'go', 'one', 'concert'], ['not', 'mean', 'without'], ['sad', 'probabl', 'never', 'see', 'fleetwood', 'mac'], ['not', 'thought', 'funni'], ['costum', 'shop', 'clean', 'starv', 'bring', 'food'], ['googl', 'wave', 'demo', 'look', 'lot', 'fun', 'would', 'love', 'test', 'though'], ['sorri', 'guy', 'not', 'sign', 'sorri'], ['horrid', 'dream', 'suspect', 'cancel', 'plan', 'tonight'], ['sorri', 'hear', 'mum'], ['not', 'think', 'well', 'time', 'weekend'], ['follow', 'friday', 'bit', 'hard', 'work', 'kick', 'friday'], ['bad', 'new', 'mommi', 'call', 'newborn', 'pictur', 'not', 'fit', 'babi', 'schedul', 'matter', 'hard', 'tri'], ['think', 'everyon', 'hate', 'lol'], ['one', 'day', 'hair', 'weather', 'suck', 'sun'], ['hour', 'sleep', 'migrain', 'wrong', 'hate', 'life'], ['ride', 'time', 'dismal', 'raini', 'week', 'not', 'abl', 'make', 'go', 'gym', 'instead'], ['dammit', 'pass', 'still', 'work'], ['sick', 'stupid', 'guy', 'moment', 'make', 'believ', 'not', 'suck', 'get', 'back', 'realiti'], ['go', 'doctor', 'scare', 'shit'], ['bodi', 'hurt', 'need', 'rub', 'like'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['total', 'gut', 'end', 'foot', 'cast', 'today', 'not', 'travel', 'nottingham', 'see', 'guy', 'xx'], ['charact', 'find', 'rare', 'enough', 'elabor', 'much', 'upon', 'anyth'], ['plane', 'ticket', 'uk', 'everywher', 'europ', 'beyond', 'cheap', 'gig', 'near', 'futur', 'announc', 'yet'], ['lmao', 'need', 'shop', 'partner', 'today'], ['suck', 'went', 'jail', 'could', 'not', 'tweet', 'anymor'], ['forev', 'right', 'flywithmeobsess', 'cri'], ['throat', 'hurt'], ['effi', 'break', 'heart'], ['unfortun', 'nowher', 'near', 'beach', 'fam', 'area'], ['kiss', 'screw', 'raggi', 'old', 'cat', 'woman', 'ha', 'pretti', 'sure'], ['got', 'sniffl', 'not', 'want', 'get', 'sick', 'not', 'need'], ['got', 'woken', 'mom', 'entir', 'first', 'floor', 'flood', 'furnitur', 'curtain', 'mom', 'expens', 'rug', 'soak', 'ruin'], ['beauti', 'day', 'wish', 'energi', 'enjoy'], ['hey', 'handsom', 'pack'], ['hate', 'not', 'abl', 'twitter', 'cell', 'phone', 'oh', 'well'], ['quot', 'not', 'love', 'not', 'beauti', 'quot', 'sorri', 'stevi', 'not', 'realli', 'posit', 'make', 'judgement', 'steviewond'], ['braxton', 'until', 'not', 'sleep', 'minut', 'time', 'hard', 'mom', 'day', 'like'], ['walk', 'grand', 'peep', 'lol', 'feet', 'realli', 'hurt', 'thought', 'xx'], ['could', 'kill', 'hollyoak', 'made', 'sad'], ['not', 'pop', 'well', 'feel', 'lousier', 'play'], ['gah', 'forgot', 'separ', 'bin', 'mayb', 'bad', 'idea'], ['start', 'phase', 'oper', 'quot', 'product', 'quot', 'pack', 'cloth', 'not', 'find', 'pink', 'tank', 'top', 'oh'], ['go', 'hot', 'today', 'today', 'ryan', 'last', 'day', 'not', 'believ', 'sahm', 'sinc'], ['ok', 'suppos', 'followfriday', 'not', 'unfollow', 'friday', 'aw', 'well', 'nice', 'tweeter', 'anyway', 'lt', 'not', 'sound'], ['mom', 'car', 'broken', 'feel', 'violat'], ['kill', 'jasmin', 'not', 'talk', 'age'], ['ok', 'frustrat', 'hella', 'dust', 'screen', 'blackberri'], ['chanc', 'blew', 'suffer', 'tweep'], ['bugger', 'not', 'know', 'shame', 'peopl', 'stick', 'nose'], ['ala', 'not', 'broadcast', 'lunch', 'bandwidth', 'room'], ['hate', 'florist', 'rose', 'cassade', 'tomorrow', 'fricken', 'fag', 'florist', 'peopl', 'someth'], ['sad', 'pay'], ['not', 'feel', 'comfort', 'today'], ['gone', 'right', 'wish', 'could', 'alter', 'time'], ['forgot', 'put', 'work', 'cloth', 'dryer', 'also', 'love', 'new', 'slipper'], ['traci', 'berwick', 'break', 'achi', 'breaki', 'heart', 'split', 'way', 'hallway'], ['chat', 'old', 'schoolmat', 'aww', 'miss', 'highschool'], ['watch', 'final', 'episod', 'goon', 'subo', 'win', 'britian', 'got', 'talent'], ['serious'], ['awh', 'last', 'day', 'tour', 'miss', 'hangin', 'children', 'us', 'make', 'awesom', 'nite', 'ok'], ['hahah', 'yeah', 'problem', 'tomorrow', 'birthday', 'dinner', 'terri', 'not', 'think', 'see', 'fight'], ['car', 'garag', 'amp', 'not', 'come', 'anytim', 'soon', 'last', 'time', 'heard', 'gearbox', 'problem', 'still', 'wait', 'quot'], ['hope', 'get', 'chanc', 'play', 'tomorrow', 'hope', 'good', 'otherwis', 'wast', 'mani', 'point'], ['bore', 'bore', 'bore', 'noth', 'today', 'besid', 'work'], ['not', 'impress', 'might', 'go', 'away', 'complain', 'much', 'x'], ['ok', 'nevermind', 'photo', 'set', 'privat', 'sorri'], ['got', 'home', 'school', 'wake', 'friend', 'father', 'tire'], ['life', 'get', 'soo', 'dull', 'sometim', 'around', 'x'], ['wave', 'make', 'ok'], ['juic', 'miss', 'juic', 'fruit'], ['broke', 'girlfriend', 'feel', 'lone', 'heartbroken', 'sad', 'time', 'guy', 'n'], ['mall', 'work', 'turn', 'depress', 'place'], ['go', 'disney', 'world', 'lucki', 'bitch'], ['slept', 'parent', 'bed', 'hard', 'rock', 'back', 'feel', 'like', 'rock'], ['haha', 'remembrd', 'china', 'buffet', 'king', 'yesterday', 'vair', 'amus'], ['lol', 'zzi', 'offic', 'alon', 'bay'], ['industri', 'tommorow', 'oh', 'yeah', 'amp', 'get', 'go', 'see', 'bunch', 'old', 'peopl', 'go', 'away', 'forev', 'amp', 'probabl', 'cri', 'place'], ['true', 'love', 'brazil', 'australia', 'nitey'], ['omg', 'nervous', 'last', 'block', 'speech', 'almost', 'puke', 'horribl', 'bet', 'got', 'bad', 'grade'], ['thought', 'id', 'tan', 'hour', 'sun', 'burnt'], ['soo', 'bore', 'textil'], ['realiz', 'gain', 'pound', 'last', 'year'], ['tgif', 'not', 'like', 'hour', 'workday', 'need', 'stand', 'run', 'around', 'much', 'sit', 'plus', 'honest', 'ade', 'tea', 'yay'], ['realli', 'bore', 'brother', 'went', 'get', 'permit', 'stay', 'road', 'jk', 'lol', 'feel', 'like', 'friend', 'abandon', 'except'], ['yeah', 'suck', 'eh'], ['hot', 'offic', 'air', 'con', 'broken', 'week', 'fan', 'round', 'offic', 'push', 'hot', 'air', 'around', 'realli', 'not', 'help'], ['realli', 'despair', 'whole', 'copyright', 'situat', 'visual', 'impair', 'mean', 'not', 'deserv', 'read'], ['gettn', 'readi', 'take', 'trip', 'jersey', 'dad', 'not', 'good', 'need', 'new', 'see', 'pleas', 'say', 'prayer', 'dad'], ['got', 'headach'], ['today', 'seem', 'like', 'good', 'day', 'even', 'though', 'fuel', 'pump', 'go', 'car'], ['michell', 'slept', 'hour', 'last', 'night', 'still', 'stick', 'fever'], ['not', 'like', 'wait'], ['not', 'feel', 'good', 'head', 'work', 'not', 'bad', 'shift', 'not', 'fun', 'not', 'feel', 'well', 'hope', 'goe', 'fast'], ['got', 'hair', 'rebond', 'korean', 'place', 'dude', 'hair', 'fri', 'cut', 'quot', 'alreadi', 'chop'], ['wish', 'knew', 'tri', 'figur', 'someth'], ['think', 'run', 'fever', 'not', 'feel', 'well'], ['extrem', 'hungri', 'thing', 'hous', 'soup', 'not', 'like', 'soup', 'pout'], ['mouth', 'hurt'], ['look', 'accessori', 'livescrib', 'smartpen', 'not', 'mani', 'sourc', 'germani'], ['fun', 'focus', 'group', 'particip', 'yet'], ['hugh', 'lauri', 'mention', 'follow', 'twitter', 'thousand', 'idiot', 'think', 'idiot'], ['miss', 'must', 'forgiv', 'pleass', 'feel', 'bad'], ['need', 'post', 'not', 'time', 'tour', 'apolog', 'support'], ['not', 'need', 'work', 'overtim', 'project', 'lunchtim', 'sorri'], ['tire', 'work', 'today'], ['high', 'cholesterol'], ['head', 'verizon', 'pray', 'pinkberri', 'go', 'make'], ['picki', 'put', 'mouth', 'hate', 'onion', 'make', 'cri'], ['conjunct', 'left', 'eye', 'sign', 'someth', 'wrong', 'deserv', 'lol', 'die', 'peopl'], ['disappoint', 'cadburi', 'chocol', 'block', 'got', 'smaller'], ['nauseous', 'need', 'yogurt', 'someth'], ['hick', 'mean'], ['yes', 'one', 'final', 'parti', 'better', 'make', 'good', 'one', 'much', 'mpre', 'stuff', 'got', 'go'], ['given', 'question', 'thought', 'may', 'right', 'one', 'host', 'provid', 'hd', 'qualiti', 'viewer', 'mayb', 'not'], ['want', 'leav', 'period', 'cryy'], ['garden', 'stuff', 'order', 'got', 'return', 'sender', 'damag', 'need', 'work', 'get', 'garden', 'centr'], ['fever'], ['sinc', 'demis', 'woolworth', 'not', 'easi', 'find', 'reason', 'price', 'pick', 'n', 'mix', 'anywher'], ['half', 'hour', 'go', 'english', 'wait', 'coupl', 'hour'], ['back', 'kill', 'stupid', 'softbal'], ['tire', 'want', 'play', 'random', 'song', 'gitwar', 'drama', 'essay'], ['still', 'queue', 'bare', 'metr', 'last', 'twitter', 'insan', 'paid'], ['stuck', 'traffic', 'jam', 'somewhat', 'start', 'situat', 'everi', 'day', 'sad', 'realli'], ['ironi', 'inventor', 'ford', 'mustang', 'not', 'keep', 'car', 'via'], ['sorri', 'hear'], ['fallen', 'love', 'enter', 'shikari', 'might', 'go', 'walk', 'ladi', 'later', 'though'], ['class', 'realli', 'long', 'realli', 'get', 'hungri'], ['meant', 'go', 'play', 'cricket', 'not', 'get', 'lift', 'stuck', 'home', 'watch', 'apprentic', 'love', 'day'], ['wish', 'could', 'make', 'quick', 'trip', 'la', 'juli', 'miss', 'la'], ['not', 'want', 'miss', 'guy', 'kick', 'sad', 'plane', 'shop'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['well', 'dog', 'still', 'not', 'shelter', 'hope', 'someon', 'good'], ['not', 'work'], ['still', 'angri'], ['wake', 'headach'], ['plan', 'not', 'spend', 'money', 'not', 'go', 'well'], ['hurt', 'bring', 'joy', 'see', 'cri', 'know', 'love', 'anyth', 'yet', 'break', 'heart', 'everyday'], ['feet', 'kill', 'walk', 'mile', 'search', 'art', 'not', 'seem', 'like', 'eal', 'one'], ['break', 'news', 'gm', 'share', 'current', 'trade', 'per', 'share'], ['blood', 'test', 'today', 'not', 'bad', 'realli', 'need', 'dash', 'starbuck', 'reviv', 'spirit', 'nice', 'ice', 'latt', 'amp'], ['bum', 'hurt'], ['sensor', 'not', 'seem', 'want', 'last', 'day'], ['realli', 'want', 'go', 'gig', 'tonight'], ['want', 'see', 'drag', 'hell', 'get', 'feel', 'none', 'friend', 'go'], ['hope', 'morn', 'show', 'not', 'get', 'cancel'], ['feel', 'like', 'crap', 'right', 'one', 'month', 'school', 'left', 'fml', 'hard'], ['give', 'hater', 'hug', 'would', 'not', 'like', 'mwean', 'peopl'], ['time', 'close', 'today', 'last', 'day', 'today', 'tomorrow', 'may', 'would', 'tear'], ['confus'], ['realli', 'miss'], ['guess', 'easier', 'said', 'done', 'one', 'unfortun'], ['would', 'rather', 'bride', 'last', 'minut', 'wed', 'stuff', 'instead', 'stuck', 'behind', 'desk', 'someday'], ['sometim', 'hurt', 'pet', 'not', 'talk', 'back', 'us', 'pain', 'would', 'tell', 'us'], ['wrong'], ['would', 'not', 'let', 'download', 'cos', 'said', 'uk', 'littl', 'cri'], ['ahh', 'engulf', 'shooe', 'told', 'buy', 'maani', 'damn', 'shoe'], ['sunburnt', 'factor'], ['not', 'work', 'shini', 'red', 'coffe', 'tabl'], ['not', 'work'], ['learn', 'lesson', 'hard', 'way', 'lost', 'usb', 'stick', 'backup', 'month', 'old'], ['sorri', 'bout', 'cat'], ['eye', 'start', 'hurt', 'late', 'must', 'reach', 'updat', 'due', 'tweet', 'sent', 'youu', 'philippin', 'tour', 'pleeas'], ['sit', 'work', 'wait', 'day', 'alway', 'friday', 'take', 'forev', 'wish', 'weekend', 'would', 'get', 'alreadi'], ['soo', 'tire'], ['aww', 'not', 'mean', 'sound', 'like', 'overgrown', 'age', 'babi', 'still', 'stick', 'not', 'bad', 'yesterday', 'still', 'bad'], ['yeah', 'guess', 'make', 'sad', 'though', 'becas', 'disc', 'scratch'], ['got', 'woken', 'earli', 'kind', 'wana', 'chill', 'today', 'much'], ['stupid', 'msn', 'not', 'let', 'onn'], ['toothach'], ['feel', 'sick', 'stomach', 'today'], ['upset', 'see', 'cari', 'donna', 'go', 'today', 'miss', 'huge', 'alreadi', 'yes', 'ok', 'like', 'hour'], ['park', 'slope', 'brooklyn', 'work', 'bust', 'photoshoot', 'excit', 'amp', 'fever', 'tonsil', 'size', 'golfbal'], ['marina', 'sware', 'god', 'never', 'end', 'studi', 'french', 'till', 'clock', 'night', 'ever', 'much', 'sleepi'], ['sad', 'face'], ['need', 'serious', 'cheer'], ['mind', 'automat', 'wake', 'huge', 'fail', 'summer', 'good', 'morn', 'nonetheless', 'go', 'get', 'readi', 'work'], ['sad', 'day', 'laker', 'pleas', 'make', 'happi', 'w'], ['school', 'time', 'cuz', 'sick'], ['nice', 'start', 'holiday'], ['need', 'bigger', 'player', 'even', 'pain', 'say'], ['aaw', 'window', 'open'], ['honest', 'not', 'figur', 'twitter', 'thing'], ['wish', 'could', 'go', 'meet', 'middl', 'tomorrow'], ['super', 'stress'], ['sad', 'go', 'work', 'cuz', 'termineda', 'last', 'littl', 'monkey', 'last', 'day'], ['well', 'tomorrow', 'miss'], ['fuck', 'ipod', 'freez', 'need'], ['thank', 'ladi', 'bummer', 'sure'], ['student', 'walk', 'ball', 'wit', 'dog', 'get', 'hit', 'street', 'not', 'know', 'cheer'], ['feel', 'hurt'], ['oh', 'fianc', 'got', 'work', 'start', 'mine', 'not', 'fair'], ['forgot', 'traffic', 'head', 'foxford', 'mayo', 'love', 'pontoon', 'tomorrow'], ['turn', 'alarm', 'morn', 'thought', 'saturday', 'rush', 'get', 'readi', 'work', 'def', 'not', 'saturday', 'fail'], ['hate', 'revis'], ['wish', 'va'], ['watchin', 'tv', 'yesterday', 'media', 'number', 'five', 'think', 'worst', 'beach', 'bodi', 'butt'], ['aww', 'not', 'nice'], ['not', 'read', 'detail', 'may', 'sara', 'jayn', 'kid', 'show', 'not', 'excit'], ['also', 'want', 'miss', 'gir', 'much', 'get', 'roomi'], ['frank', 'up', 'last', 'day', 'today', 'sad', 'see', 'go', 'best', 'deliveri', 'guy', 'ever', 'hope', 'new', 'guy', 'not', 'fucktard'], ['not', 'worri', 'babe'], ['yes', 'made', 'sign', 'notic', 'miss', 'sunday', 'far', 'luck', 'unlucki', 'japanes', 'cat'], ['train', 'bristol', 'london', 'terribl', 'wifi'], ['sad', 'dad', 'die', 'hakuna', 'matana', 'mean', 'worri'], ['visit', 'la', 'ventana', 'de', 'los', 'cielo', 'foundat', 'push', 'bck', 'week', 'excit', 'go', 'amp', 'meet', 'kid', 'wait', 'anoth', 'wks'], ['pick', 'coupl', 'toy', 'tonight', 'yay', 'weekend', 'though'], ['not', 'sleep', 'good', 'last', 'night', 'woke', 'anoth', 'bellyach', 'wrong', 'mee'], ['aww', 'poor', 'boy', 'cri', 'sad'], ['min', 'meet'], ['yes', 'haha', 'impal', 'cross', 'key', 'love', 'ewan', 'mcgregor'], ['think', 'wow', 'surviv', 'freshman', 'sophomor', 'year'], ['ouch', 'back', 'man', 'sick'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['news', 'kid', 'not', 'find', 'parent'], ['class', 'tri', 'listen', 'realli', 'like', 'twitter', 'facebook', 'amp', 'myspac', 'oh', 'yeaah', 'amp', 'hungri'], ['home', 'not', 'great'], ['point', 'becom', 'appar', 'degre', 'mean', 'jack', 'shit'], ['want', 'magic', 'mountain', 'tix', 'not', 'get', 'station', 'paso', 'boo', 'suck'], ['shirt', 'fuzz', 'magnet', 'today', 'feel', 'total', 'uncomfort'], ['tri', 'best', 'not', 'share', 'love', 'head', 'cold'], ['gave', 'cabl', 'tough', 'econom', 'time', 'either', 'cabl', 'shoe', 'know', 'cabl', 'lost'], ['dang', 'disappoint'], ['wick', 'tuner', 'card', 'arriv', 'although', 'not', 'sure', 'abl', 'get', 'set', 'readi', 'fa', 'cup', 'final', 'tomorrow'], ['stupid', 'hip', 'hate', 'not', 'even', 'break', 'new', 'kick', 'grr'], ['wish', 'say', 'appli', 'work', 'saturday'], ['sad', 'assembl', 'next', 'block'], ['girl', 'battl', 'rare', 'breast', 'cancer'], ['wish', 'dalla', 'still', 'say', 'ow', 'lol', 'hey', 'spell', 'name', 'wrong', 'good', 'thank', 'ff', 'love'], ['unfortun', 'not', 'see', 'spread', 'poo'], ['woo', 'hulu', 'desktop', 'poor', 'mac', 'kind', 'struggl', 'though', 'poor', 'littl', 'core', 'duo', 'not', 'keep'], ['matter', 'heart', 'complic'], ['son', 'surgeri', 'yesterday', 'mommi', 'son', 'time', 'not', 'long', 'today'], ['think', 'bead', 'crumb', 'navig', 'return', 'new', 'fusion', 'studio', 'realli', 'miss', 'top', 'item'], ['mani', 'thing', 'miss', 'tweet'], ['slow', 'hate', 'get', 'trailhead', 'not', 'get'], ['sorri', 'not', 'understand', 'peopl', 'expect', 'everyon', 'react', 'thing', 'quot', 'pois', 'quot'], ['sorri', 'hear', 'carol'], ['missin', 'guy', 'day', 'ill', 'b', 'tomorrow', 'butt', 'see', 'june', 'blockk'], ['r', 'spin', 'hookah'], ['dote', 'husband', 'lol', 'hope', 'brace', 'go', 'eat', 'normal'], ['thought', 'unfair', 'peopl', 'n', 'got', 'depress', 'hater'], ['slight', 'headach'], ['guy', 'go', 'get', 'metal', 'detector', 'brickman', 'saw', 'chad', 'ask', 'davey', 'fb', 'sorri', 'ring'], ['decid', 'sprain', 'mine', 'bother', 'never', 'check'], ['noo', 'work', 'weekend'], ['weekend', 'aboutto', 'suck'], ['like', 'roll', 'eye', 'curious', 'hell', 'good', 'sing', 'real', 'treat', 'far', 'concern'], ['wish', 'could', 'pole', 'got', 'space', 'mayb', 'throw', 'furnitur', 'get', 'pole'], ['oh', 'man', 'go', 'connect', 'old', 'school', 'nintendo', 'play', 'mario', 'game', 'not', 'bag', 'got', 'search'], ['one', 'cat', 'sick'], ['thursday', 'realli', 'necessari', 'ever', 'heard', 'school', 'horribl', 'mum'], ['film', 'not', 'come', 'camera', 'broken', 'lamesauc'], ['think', 'break', 'heart', 'emo', 'sound', 'meh'], ['tire', 'n', 'want', 'sleep', 'bed'], ['dammit', 'not', 'watch', 'stadium', 'music'], ['wast', 'way', 'much', 'paper', 'offic', 'noth', 'worthi', 'almost', 'disgust'], ['love', 'realli', 'simpl', 'think', 'word', 'put', 'twi', 'front', 'clever'], ['galbladia', 'garden', 'shit', 'hard'], ['realli', 'want', 'home', 'right'], ['work', 'get', 'quick', 'bite', 'eat', 'kill', 'wrist', 'self', 'address', 'envolop'], ['felt', 'one', 'tooth', 'without', 'brace', 'bracket', 'got', 'soo', 'hype'], ['glad', 'alright'], ['disgust', 'assumpt', 'regard', 'happen', 'harlem', 'last', 'night', 'correct', 'without', 'read', 'stori', 'first'], ['poor', 'wife', 'laid', 'anoth', 'hour', 'doctor', 'order', 'not', 'much', 'deal', 'scream', 'babi'], ['mean', 'go', 'pizza', 'tonight', 'go'], ['oh', 'dear', 'sorri', 'laugh'], ['omfg', 'dude', 'look', 'well', 'put', 'shame'], ['think', 'gangsterr', 'ass', 'not', 'even', 'fit', 'g', 'unit', 'amp', 'know'], ['not', 'hope', 'take', 'good', 'long', 'recov'], ['phylli', 'hyman', 'unsung', 'stori', 'sad'], ['site', 'republish', 'blog', 'feed', 'often', 'end', 'higher', 'blog', 'googl', 'search', 'result'], ['move', 'make', 'sore', 'not', 'know', 'go', 'make', 'get', 'close'], ['microeconom', 'project', 'ihat', 'subject', 'amp', 'besid', 'english', 'ilet', 'exam', 'tomorrow', 'waa', 'help'], ['shoe', 'hurt', 'feet'], ['work', 'huge', 'headach'], ['feel', 'like', 'shit'], ['oh', 'dear', 'disturb', 'coffe', 'connoisseur', 'die', 'littl'], ['youtub', 'not', 'want', 'watch', 'britain', 'got', 'talent', 'debat', 'piti', 'parti'], ['not', 'make', 'nyc', 'huh'], ['got', 'peopl', 'not', 'let', 'skip', 'sci', 'pratic', 'beco', 'skola', 'impt', 'not', 'wast', 'parent', 'money', 'nt', 'fair'], ['woot', 'interview', 'went', 'awsom', 'not', 'get', 'talk', 'johnni', 'thought', 'oh', 'well', 'still', 'realli', 'good'], ['wow', 'soderl', 'ferrer', 'gill', 'simon', 'lost'], ['knee', 'sore', 'physio'], ['hate', 'put', 'toddler', 'dispos', 'rash', 'need', 'ointment', 'hate', 'rash', 'even', 'wors'], ['dollarama', 'wish', 'new', 'job'], ['tweet', 'hard', 'not', 'get'], ['look', 'show', 'turn', 'brain', 'mush', 'not', 'hurt', 'anymor', 'good', 'free', 'onlin', 'one', 'know'], ['coffe', 'got', 'cold', 'blah'], ['lost', 'phone'], ['mom', 'amp', 'feel', 'horribl', 'must', 'think', 'not', 'meant', 'thought', 'would', 'better', 'brunt'], ['day', 'slow', 'internet'], ['omgood', 'back', 'school', 'soon', 'fun'], ['not', 'yet', 'back', 'run', 'text', 'ring', 'later', 'xoxo'], ['tire', 'headach', 'like', 'sunshin'], ['got', 'peopl', 'not', 'let', 'skip', 'sci', 'pratic', 'beco', 'skola', 'impt', 'not', 'wast', 'parent', 'money', 'nt', 'fair'], ['die', 'kp', 'go', 'upgrad', 'spell', 'first', 'head', 'back'], ['hate', 'live', 'fl', 'miss', 'ga', 'like', 'say', 'not', 'know', 'got', 'till', 'gone', 'ga', 'mind'], ['crap', 'break', 'quot', 'work', 'weekend', 'quot', 'rule', 'much', 'overload', 'work', 'aargh', 'hate'], ['revis', 'uni', 'exam', 'loom'], ['ym', 'meebo', 'amp', 'ebuddi', 'realli', 'hate', 'us'], ['go', 'miss', 'senior', 'much', 'not', 'goo'], ['poor', 'nicol', 'absolut', 'destroy', 'cell', 'phone'], ['listen', 'peopl', 'say', 'eww', 'current', 'frog', 'disect', 'poor', 'froggi'], ['kate', 'leav', 'lonesom'], ['realli', 'gone', 'chiropractor', 'week', 'today', 'neck', 'hurt', 'bad'], ['order', 'new', 'comput', 'unfortun', 'not', 'get', 'end', 'june'], ['two', 'dozen', 'rose', 'sent', 'overnight', 'deliv', 'morn', 'found', 'recipi', 'town', 'sad'], ['not', 'hate', 'left', 'one', 'slice', 'bread', 'left', 'bag', 'half', 'sandwich'], ['holiday', 'soo', 'bore'], ['eww', 'print', 'new', 'badg', 'thingi', 'work', 'n', 'eww', 'pictur', 'took', 'mani', 'n', 'ugli'], ['say', 'goodby', 'two', 'best', 'intern', 'elev', 'ever'], ['bad', 'migran', 'need', 'go', 'danc', 'tonight', 'not', 'good', 'combin'], ['wonder', 'ankl', 'ever', 'stop', 'hurt'], ['well', 'atm', 'anyway', 'manag', 'cos', 'music', 'talent', 'ps', 'horribl', 'thing', 'say', 'bout', 'rove'], ['two', 'ticket', 'amadou', 'miriam', 'tue', 'june', 'not', 'use', 'anyon', 'want', 'face', 'valu', 'good'], ['stink', 'anyway'], ['realli', 'hurt', 'realli', 'suck', 'not', 'know', 'fix', 'serious'], ['realli', 'wish', 'could', 'convinc', 'brandon', 'move', 'somewher', 'like', 'want', 'move', 'lexington'], ['curl'], ['alway', 'hope', 'die', 'see', 'old', 'one', 'make', 'sad'], ['not', 'go', 'gym', 'today', 'feel', 'bad'], ['man', 'miss', 'truck', 'much', 'return', 'month', 'in', 'month'], ['paypal', 'hate', 'refus', 'let', 'verifi', 'account'], ['commi', 'finest', 'youtub', 'blogger', 'block', 'china', 'updat', 'us', 'china', 'great', 'wall', 'conquer'], ['sound', 'pain', 'sorri', 'got', 'hurt', 'may', 'ask', 'happen'], ['god', 'open', 'cloud', 'said', 'hate', 'josh'], ['well', 'go', 'peac', 'corp', 'prospect'], ['gee', 'total', 'hatin', 'like', 'real', 'mean', 'like', 'duh', 'studi', 'enough', 'need', 'refresh', 'tonit', 'hard'], ['still', 'not', 'figur', 'sad', 'take', 'research', 'know'], ['oh', 'great'], ['wish', 'could', 'special', 'someon'], ['omfg', 'head'], ['sorri', 'miss'], ['hate', 'stinkin', 'tire', 'everyday', 'hard', 'get', 'thought', 'suppos', 'start', 'get', 'energi', 'back'], ['think', 'might', 'like', 'twiterfon', 'better', 'tweeti', 'recent', 'upgrad', 'twiterfon', 'great', 'none', 'tweeti'], ['busi', 'day', 'time', 'tweet', 'bmore', 'happen', 'weekend'], ['not', 'good', 'enough'], ['pretti', 'took', 'like', 'hour', 'urss'], ['tire', 'sad'], ['shop', 'therapuet', 'better', 'need', 'financ', 'therapi', 'howev'], ['wet', 'dirti', 'one'], ['look', 'like', 'anoth', 'sober', 'weekend', 'ahead'], ['not', 'good'], ['loadsa', 'shizz', 'happend', 'upset'], ['miss', 'laugh', 'till', 'stomach', 'hurt'], ['life', 'suck'], ['glad', 'nice', 'gray', 'sky', 'raini', 'wisconsin'], ['careless', 'vocal'], ['freesat', 'coverag', 'sky', 'dish', 'realli', 'realli', 'bad', 'moment', 'block', 'place', 'realli', 'annoy'], ['confer', 'call', 'hp', 'gave', 'invalid', 'pass', 'code', 'not', 'attend'], ['dead', 'bore', 'also', 'dead', 'poor', 'student', 'life', 'piss', 'take'], ['massiv', 'headach'], ['head', 'thump'], ['annoy', 'miss', 'mitch', 'benn', 'lemon', 'tree', 'damn'], ['oh', 'crash', 'ball', 'pump'], ['open', 'offic', 'quot', 'writer', 'quot', 'weird', 'need', 'word', 'open', 'word', 'document', 'correct'], ['need', 'go', 'sleep', 'exhaust'], ['wish', 'garden', 'could', 'bbq', 'tonight', 'might', 'set', 'loung', 'bbq', 'type', 'thing', 'work', 'fridayfirehazzard'], ['rain', 'pour', 'true', 'sorri', 'hate', 'kind', 'time'], ['sad', 'day', 'told', 'student', 'last', 'year', 'lot', 'cri', 'sinc'], ['slovakian', 'countri', 'side', 'refresh', 'chang', 'compar', 'tarmac', 'car', 'citi', 'boy', 'need', 'tarmac'], ['aww', 'horribl', 'xd'], ['not', 'leav', 'forev', 'miss', 'much'], ['oh', 'tire'], ['not', 'know', 'yet', 'word', 'hope', 'though', 'good', 'stuff', 'happen', 'late', 'get', 'excit'], ['bug', 'code', 'go', 'forum', 'reg', 'let', 'know', 'work'], ['poor', 'phone', 'nekkid', 'without', 'cover'], ['accord', 'quarter', 'famili', 'six', 'live', 'poverti'], ['sorri', 'not', 'use', 'tweetdeck', 'not', 'let', 'tweet', 'today'], ['think', 'prize', 'end', 'sorri', 'hear', 'though'], ['reali', 'want', 'go', 'nice', 'everybodi', 'busi'], ['haha', 'go', 'turn', 'not', 'tweet', 'phone', 'stupid', 'spammer'], ['alway', 'littl', 'sad', 'see', 'follow', 'realli', 'like', 'decid', 'unfollow'], ['well', 'exam', 'fail', 'bsc', 'gone'], ['grr', 'peopl', 'suck', 'cri', 'anim', 'die', 'natur', 'show', 'peopl', 'sick', 'hunt', 'endang', 'speci'], ['hard', 'work', 'last', 'two', 'week', 'lose', 'weight', 'fear', 'lose', 'muscl', 'made', 'doc', 'appt', 'injur', 'foot'], ['disneyland', 'blast', 'yesterday', 'back', 'work'], ['saw', 'load', 'ambul', 'amp', 'polic', 'car', 'amp', 'car', 'smash', 'roof', 'lie', 'road', 'quot', 'man', 'dead', 'sure'], ['brilliant', 'day', 'today', 'got', 'car', 'wash', 'got', 'wash', 'done', 'go', 'work', 'hour'], ['unfortun', 'outsid'], ['annoy', 'make', 'us', 'girl', 'follow', 'sport', 'knowledg', 'look', 'dumb'], ['hard', 'time', 'use', 'hulu', 'heard', 'anyon', 'problem', 'use', 'window', 'vista'], ['need', 'cancel', 'appt', 'home', 'wash', 'machin', 'repair', 'man', 'sorri'], ['aww', 'boy', 'beard', 'like', 'man', 'via', 'asylm'], ['half', 'class', 'call', 'retard', 'hurt', 'real'], ['rip', 'omar', 'edward', 'kill', 'friend', 'fire', 'nyc'], ['not', 'good', 'homemad', 'flour', 'tortilla', 'age'], ['lmaaoo', 'horribl', 'poor', 'thing'], ['shower', 'back', 'bed', 'sick', 'still'], ['everyth', 'annoy', 'today'], ['cheer', 'mate', 'still', 'get', 'wednesday', 'ok', 'incred', 'wealthi', 'man'], ['hate', 'histori', 'rock'], ['hand', 'hurt'], ['lucki', 'girl', 'work', 'day', 'tomorrow', 'mayb', 'even', 'monday'], ['kind', 'bum', 'go', 'miss', 'return', 'bg', 'never', 'know', 'like', 'make', 'love'], ['aww', 'mate', 'shitter'], ['never', 'arriv', 'wait', 'monday'], ['ow', 'hurt'], ['cash', 'kno', 'not', 'upset', 'not', 'updat', 'yet'], ['ugh', 'sleepi', 'think', 'still', 'kind', 'sick'], ['soo', 'tire', 'still', 'kind', 'angri', 'miss', 'concert'], ['stupid', 'competit', 'stuff', 'keep', 'get', 'way', 'go', 'get', 'word', 'today', 'kill'], ['leav', 'get', 'angri', 'teeth', 'pull'], ['wasabi', 'recov', 'surgeri'], ['miley', 'go', 'quit', 'hannah', 'not', 'want', 'believ'], ['ground', 'tonight', 'hate', 'stupid', 'silent', 'mode'], ['tire'], ['back', 'fuck', 'school'], ['oh', 'boy', 'go', 'loong', 'day'], ['goal', 'gila', 'last', 'game', 'milan', 'dillemat'], ['ok', 'go', 'play', 'basketbal', 'oh', 'well'], ['mod', 'not', 'send', 'back', 'red', 'ring', 'death', 'suck', 'took', 'week', 'get', 'mine', 'back', 'microsoft'], ['cri', 'real', 'tear'], ['launch', 'today', 'teacher', 'chang', 'plan', 'watch', 'stupid', 'move', 'tesla'], ['yeah', 'thing', 'not', 'go', 'well', 'get', 'feel', 'like', 'not', 'felt', 'long', 'long', 'time'], ['new', 'car', 'alreadi', 'give', 'problem', 'not', 'good', 'sign'], ['forgot', 'lunch', 'one', 'els', 'order', 'stuff', 'boo'], ['know', 'think', 'like', 'die'], ['soo', 'tire', 'could', 'not', 'get', 'enough', 'sleep'], ['monday', 'not', 'abl', 'love'], ['die', 'not', 'know'], ['sad', 'go', 'miss', 'see', 'pennywis', 'year'], ['soo', 'pretti', 'mine', 'havnt', 'flower', 'year'], ['oh', 'not', 'difficult', 'nut', 'market', 'home', 'turf'], ['burnt', 'sorri', 'back', 'front', 'burnt'], ['tri', 'get', 'work', 'done', 'not', 'happi', 'work', 'situat'], ['hate', 'move'], ['miss', 'cutoff', 'free', 'chocol', 'eh', 'season', 'come'], ['offici', 'apt', 'learn', 'stuff', 'crazi', 'neighbor', 'use', 'live', 'across'], ['soo', 'drop', 'phone', 'not', 'text', 'tweet', 'current', 'bang', 'face', 'spike', 'cover', 'poison', 'ivi', 'infest', 'wall'], ['oh', 'kindergarten', 'teacher', 'die', 'collinson', 'alway', 'rememb', 'everi', 'student', 'ever', 'love', 'ladi'], ['fun'], ['missin', 'boo'], ['chicken', 'noodl', 'soup', 'made', 'lunch', 'feel', 'better', 'burn', 'tongu', 'good', 'day'], ['sit', 'deck', 'read', 'psycholog', 'note', 'ipod', 'dog', 'far', 'warm'], ['reeaalli', 'though', 'ew', 'hate', 'stock'], ['miss', 'lol', 'plaid', 'bud', 'haha', 'damn', 'not', 'bg', 'right'], ['ram', 'ff', 'still', 'slow', 'disabl', 'not', 'sure', 'one', 'make', 'cut', 'honest', 'like', 'sophi', 'choic'], ['not', 'finish', 'bio', 'mol', 'mind', 'map', 'stupid', 'sheet', 'hid', 'section', 'back'], ['kill', 'dill', 'plant', 'happen', 'dill', 'great', 'sudden', 'dead'], ['boor', 'learn', 'though'], ['sad', 'leav', 'soon'], ['feel', 'like', 'shit', 'could', 'not', 'sleep', 'last', 'night', 'went', 'sleep', 'n', 'bk', 'soo', 'tire'], ['well', 'took', 'earli', 'graduat', 'final', 'stage', 'guinea', 'pig', 'serious', 'wast', 'time'], ['worst', 'day', 'ever', 'noon'], ['listen', 'mende', 'discog', 'still', 'think', 'disband', 'loss', 'metal'], ['fuck', 'awak', 'hate', 'sick'], ['not', 'seem', 'access', 'restuar', 'citi', 'due', 'internet', 'javascript', 'problem'], ['pull', 'direct', 'not', 'know', 'go'], ['real', 'bad', 'headach'], ['fuccin', 'bacc', 'hurt', 'drag', 'long', 'blocc', 'piec', 'wood', 'corner', 'garag'], ['hope', 'present', 'went', 'well', 'today', 'tweet', 'yr', 'campus', 'tomorrow', 'around', 'lunch', 'time', 'onward'], ['want', 'know', 'wors', 'cowork', 'brew', 'fresh', 'cup', 'coffe', 'think', 'bacon'], ['oh', 'hope', 'not', 'bad', 'sound'], ['want', 'goo'], ['bad'], ['found', 'abuelo', 'aguadilla', 'not', 'well'], ['tour', 'philippin', 'sometim', 'lot', 'fan', 'would', 'realli', 'love'], ['hey', 'love', 'voic', 'shot', 'new'], ['rip', 'michael'], ['exam', 'kind', 'near', 'week', 'project', 'yet', 'submit', 'almost', 'fail', 'one', 'subject', 'may', 'allah', 'save'], ['not', 'starfleet', 'one', 'not', 'even', 'romulin', 'one', 'like', 'random', 'one', 'not', 'rememb', 'ha', 'not', 'wear', 'lame'], ['omg', 'bad', 'mood', 'wat', 'peopl'], ['straighen', 'hair', 'not', 'go', 'straight', 'want', 'bummerr'], ['oww', 'not', 'even', 'describ', 'much', 'back', 'hurt', 'go', 'go', 'stupid', 'doctor'], ['alway', 'miss', 'not', 'abl', 'commenc', 'foolish', 'til', 'fall', 'come', 'fall', 'visit', 'yay'], ['quot', 'hi', 'jonathan', 'spotifi', 'month', 'cn', 'unlimit', 'music', 'interupt', 'quot', 'love', 'r', 'littl', 'chat', 'j', 'not', 'leav'], ['poor', 'heather', 'not', 'make', 'cheerlead', 'squad', 'sorri', 'babygirl', 'mayb', 'next', 'year'], ['aahh', 'friday', 'funer'], ['lol', 'bk', 'year', 'go', 'not', 'come', 'yet'], ['told', 'andrew', 'jt', 'go', 'cameo', 'mtv', 'movi', 'award', 'said', 'quot', 'piss', 'quot', 'guess', 'fight'], ['hope', 'better', 'weekend'], ['good', 'repli', 'fallin', 'sad', 'face'], ['feel', 'pain', 'mine', 'way'], ['sad', 'wish', 'could', 'stay', 'longer', 'last', 'time', 'ill', 'see', 'tonight', 'better', 'not', 'wear', 'make'], ['ugh', 'got', 'stop', 'bite', 'nail', 'grr'], ['wish', 'pool'], ['soo', 'tire', 'studi', 'subject', 'histori', 'go', 'hard', 'gt', 'lt', 'help'], ['serious', 'quiet', 'lone', 'without', 'bunni'], ['oh', 'plzz', 'never', 'time'], ['class', 'sick', 'hungri'], ['ever', 'piss', 'thought', 'meant', 'wank', 'not', 'crap'], ['got', 'replac', 'phone', 'text', 'messag', 'call', 'histori', 'gone', 'sad'], ['nope', 'nott', 'plan', 'aunti', 'come', 'america', 'havin', 'big', 'famili', 'meal', 'not', 'xx'], ['not', 'even', 'better', 'kapsel', 'cha', 'dy', 'nuli', 'note', 'spertinya', 'gw', 'ga', 'ditag', 'cuz', 'g', 'ada', 'notificationnya', 'huhu'], ['kind', 'miss', 'first', 'main', 'male', 'tauren', 'shaman', 'name', 'icewat', 'stuck', 'mayb', 'fetch', 'one', 'day'], ['good', 'morn', 'sinc', 'quot', 'talk', 'quot', 'keep', 'awesom', 'tweet'], ['ugh', 'hate', 'not', 'car', 'miss', 'littl', 'ford', 'focus'], ['hmm', 'realli', 'weird', 'not', 'know', 'one', 'sowwi'], ['guess', 'belt', 'thing', 'sinc', 'not', 'hear', 'stop', 'weekend', 'talk', 'bout', 'ring', 'etc'], ['aww', 'twiter', 'miss', 'today', 'post', 'littl', 'mea', 'movi', 'soo', 'coold'], ['hell', 'know', 'suffer'], ['sourish', 'limb', 'prevent', 'gg', 'friday', 'not', 'happi', 'not', 'v', 'long', 'fri'], ['blah', 'work', 'job', 'one', 'day', 'job', 'two', 'night'], ['lol', 'okay', 'song', 'catchi', 'get', 'stuck', 'head'], ['worri', 'someth', 'bad', 'happen', 'today', 'not', 'know', 'go', 'happen', 'next'], ['get', 'readi', 'tonight', 'teacher', 'dinner', 'beach', 'rain', 'hate'], ['st', 'pub', 'anyon', 'tonight', 'not', 'want', 'lone', 'drunk', 'tonight'], ['time', 'not', 'friend', 'today'], ['hahah', 'sad', 'current', 'activ', 'though', 'room'], ['want', 'go', 'see', 'cab', 'realli', 'bad'], ['went', 'get', 'dog', 'vet', 'stitch', 'ear', 'charg', 'us', 'still', 'bleed', 'like', 'waterfal', 'everytim', 'move'], ['um', 'think', 'miss', 'jay', 'leno'], ['holi', 'crap', 'time', 'go', 'suck', 'away', 'life', 'wast', 'whole', 'week', 'wish', 'self', 'control'], ['three', 'hate', 'word', 'quot', 'see', 'monday', 'quot'], ['tri', 'catch', 'swarm', 'gone', 'roof', 'gabl', 'end', 'set', 'bait', 'hive', 'hope', 'best', 'moment'], ['ughh', 'serious', 'hung'], ['fuck', 'cold'], ['miss', 'danc', 'friend'], ['get', 'readi', 'go', 'ikea', 'alon', 'cuz', 'one', 'go'], ['not', 'know', 'write', 'anymor', 'mind', 'must', 'tire', 'past', 'midnight', 'alreadi', 'tour', 'philippin'], ['not', 'feel', 'good'], ['yeah', 'one', 'thing', 'hate', 'tweetdeck'], ['cat', 'anxious', 'watch', 'wild', 'turkey', 'back', 'think', 'eye', 'bunni', 'rabbit'], ['ok', 'finish', 'set', 'free', 'soo', 'mad', 'rite', 'not', 'end', 'like', 'not', 'want', 'bad', 'guy'], ['know', 'sprain', 'repetit', 'injuri'], ['appar', 'fall', 'apart', 'front', 'eye'], ['wish', 'could', 'get', 'sushi', 'deliv', 'work'], ['hate', 'hiccup'], ['beauti', 'weather', 'sick', 'babi', 'tanapoli'], ['miss', 'chat'], ['headach', 'headach', 'go', 'away', 'come', 'anoth', 'day'], ['time', 'go', 'slow'], ['wish', 'drem', 'could', 'come', 'true'], ['interview', 'pick', 'ny', 'probabl', 'forgot', 'blogtalk', 'radio'], ['bad', 'never', 'made', 'last', 'ten', 'year'], ['friday', 'night', 'good'], ['know', 'miss'], ['tire', 'bore', 'watch', 'movi', 'home', 'alon'], ['screw', 'goin', 'back', 'bed', 'go', 'tomorrow', 'sad'], ['hate', 'put', 'new', 'contact'], ['ask', 'anyon', 'possibl', 'get', 'photo', 'receiv', 'diploma', 'dad', 'camera', 'die', 'right', 'moment'], ['nt', 'abl', 'follow', 'anyon', 'come', 'itsuck'], ['huffi', 'not', 'good', 'day', 'night', 'life', 'poor', 'babi'], ['oh', 'god', 'not', 'end', 'danc', 'sob'], ['ohh', 'man', 'mom', 'got', 'bag', 'caramel', 'candi', 'thing', 'soo', 'good', 'go', 'get', 'fat'], ['hate', 'interview', 'go', 'horribl', 'today'], ['unfortunatley', 'tooth', 'kind', 'crown'], ['nt', 'abl', 'follow', 'anyon', 'come', 'itsuck'], ['followfriday', 'thank', 'still', 'not', 'even', 'close'], ['sad', 'lost', 'anoth', 'person', 'close', 'cancer'], ['piss', 'bluetooth', 'headset', 'batteri', 'last', 'cell', 'batteri', 'gg', 'moto', 'q'], ['ten', 'hour', 'ago', 'sleep', 'sorri'], ['blame', 'price', 'friday', 'replac', 'free', 'book', 'friday', 'not', 'want', 'rrtheatr', 'anymor'], ['back', 'sore', 'not', 'done', 'jump', 'last', 'night'], ['pleas', 'not', 'forget', 'us'], ['realli', 'miss', 'phone', 'not', 'wait', 'till', 'new', 'one', 'come'], ['pic', 'not', 'load', 'twitter'], ['sarci', 'usual'], ['english', 'exam', 'bleh', 'hate', 'vocab'], ['got', 'laid', 'stupid', 'economi'], ['bad', 'hair', 'day'], ['shout', 'mom', 'wakin', 'prematur', 'preciat'], ['holi', 'take', 'beat', 'unseed', 'back', 'doubl'], ['parti', 'move', 'next', 'weekend', 'weather'], ['read', 'mcdonald', 'actual', 'run', 'ad', 'econom', 'slowdown', 'great', 'lovin'], ['oh', 'lot', 'peopl', 'start', 'tweet', 'hope', 'could', 'still', 'read', 'multipl', 'tweet', 'philippin', 'tour', 'pleas'], ['realli', 'good', 'concept', 'mozconcept', 'realli', 'love', 'send', 'someth', 'mine', 'time'], ['kill', 'everyon', 'noth'], ['sorri', 'hear', 'mom', 'realli', 'suck'], ['ugh', 'car', 'got', 'stolen', 'sometim', 'yesterday', 'even', 'morn', 'husband', 'due', 'go', 'work', 'like', 'afford'], ['degre', 'tear', 'happi', 'moment'], ['happi', 'friday', 'weekend', 'everyon', 'tgif', 'noth'], ['sad', 'miss', 'opportun', 'valencia', 'new', 'video'], ['think', 'disord', 'stay', 'al', 'night', 'reason', 'n', 'sleep', 'al', 'day', 'suuk'], ['leav', 'nola', 'today', 'count', 'second', 'start', 'cri', 'love', 'place', 'much'], ['see', 'friend', 'coursework', 'weekend', 'work', 'happi'], ['stupid', 'red', 'hair', 'difficult', 'upkeep', 'manag', 'boo'], ['youtub', 'love', 'hd', 'video', 'well', 'mayb'], ['not', 'wait', 'get', 'hand', 'new', 'blackberri', 'one', 'die'], ['search', 'apart', 'kaohsiung', 'go', 'see', 'apart', 'next', 'tuesday', 'not', 'found', 'good', 'one', 'reason', 'rent'], ['site', 'blog', 'worst', 'year', 'tell', 'meh', 'fake'], ['key', 'crack', 'crap', 'kind', 'miss', 'old', 'phone', 'alreadi'], ['ahh', 'not', 'find', 'anyth', 'way', 'much', 'open'], ['hour', 'sinc', 'dog', 'put', 'sleep', 'rip', 'old', 'friend'], ['sore', 'head'], ['fun', 'not', 'school', 'wish', 'could', 'go', 'germani', 'like', 'hour', 'away', 'xoxo'], ['sicken', 'shoot', 'smh', 'prayer', 'famili'], ['gosh', 'bore', 'want', 'sleepp', 'work', 'kay', 'lt'], ['ugli', 'gray', 'outsid', 'even', 'san', 'diego', 'not', 'cold', 'get', 'us'], ['nope', 'anthoni', 'wreck', 'car', 'help', 'get', 'run'], ['not', 'believ', 'shit', 'spend', 'minut', 'snicker', 'ice', 'cream', 'seem', 'like', 'one', 'anymor'], ['throat', 'kill'], ['struggl', 'woke', 'run', 'sleep'], ['even', 'would', 'better'], ['roast', 'probabl', 'death'], ['gus', 'formal', 'known', 'world', 'ugliest', 'dog', 'die', 'miss', 'gus'], ['final', 'sunni', 'day', 'sick', 'go', 'outsid', 'play'], ['back', 'home', 'go', 'miss', 'everi', 'one'], ['freak', 'tire', 'like', 'bodi', 'refus', 'move'], ['hot', 'not', 'like'], ['hot', 'station', 'not', 'pack', 'train', 'pack', 'window', 'open', 'train', 'roast', 'sardin'], ['ugh', 'worri', 'math', 'test'], ['wish', 'weather', 'would', 'slight', 'less', 'raini', 'could', 'use', 'hot', 'tub'], ['hate', 'today'], ['ds', 'die', 'whatta', 'letdown'], ['ipod', 'taken', 'last', 'breath', 'truli', 'devast', 'lost', 'public', 'transport', 'companion'], ['come', 'garden', 'warm', 'beauti', 'not', 'much', 'revis', 'though'], ['tgif', 'resto', 'home', 'dayuumm', 'expens'], ['not', 'like', 'see', 'like', 'must', 'someth', 'make', 'smile'], ['probabl', 'not', 'kind', 'expens', 'work', 'peopl', 'weekend', 'work'], ['go', 'make', 'break'], ['take', 'bad', 'ass', 'dog', 'pet', 'sad'], ['chill', 'sofa', 'hate', 'vaccin', 'feel', 'soo', 'ill'], ['lost', 'game', 'point'], ['got', 'back', 'exam', 'sure', 'go', 'tri', 'get', 'ticket', 'il', 'divo', 'someon', 'not', 'want', 'us'], ['spent', 'hour', 'sit', 'sun', 'picnic', 'lunch', 'ice', 'cream', 'win', 'bbq', 'today'], ['take', 'twitter', 'break', 'cell', 'die'], ['littl', 'booboo', 'sick'], ['go', 'go', 'bed', 'ear', 'infect', 'complet', 'dizzi', 'yyuck', 'stomach', 'hurt', 'love'], ['love', 'mandi', 'moor', 'much', 'also', 'angela'], ['favorit', 'shirt', 'ruin', 'death', 'bleach', 'fb'], ['miss', 'get', 'quot', 'twilight', 'quot', 'jacket', 'modcloth', 'man', 'wish', 'not', 'long', 'monkey', 'arm', 'could', 'gotten', 'l', 'instead'], ['hii', 'text', 'day', 'not', 'respond'], ['think', 'would', 'like', 'phoeb', 'mom', 'friend', 'stop', 'movi', 'sad', 'part'], ['take', 'sad', 'whole', 'new', 'level'], ['yep', 'suck', 'thought', 'somewher', 'said'], ['sudden', 'rememb', 'memori', 'ohh', 'pleas'], ['googl', 'go', 'mean', 'doubleclick', 'goe', 'mean', 'not', 'get', 'work', 'done'], ['made', 'six', 'day', 'row', 'accid', 'hous', 'pop', 'took', 'strang', 'place', 'not', 'give', 'time'], ['quot', 'unfollow', 'quot', 'not', 'purpos', 'someth', 'fishi', 'go', 'tweet', 'deck', 'let', 'know', 'quot', 'unfollow', 'quot'], ['think', 'ipod', 'sick', 'not', 'want', 'connect'], ['one', 'want', 'sit', 'lunch', 'guess', 'buri', 'head', 'laptop', 'continu'], ['think', 'book', 'gone', 'forev', 'mourn', 'forev', 'shit'], ['oh', 'great', 'radio', 'disney', 'not', 'crash', 'latest', 'webkit', 'kid', 'run', 'hey', 'wait'], ['oh', 'snap', 'broke', 'windshield', 'replac', 'wiper', 'blade'], ['suck', 'mama'], ['failur'], ['miss', 'bed', 'sleepi'], ['babi', 'start', 'kindergarten', 'crazi', 'summer', 'go'], ['grr', 'hate', 'damn', 'near', 'forc', 'go', 'place', 'especi', 'sit', 'bus', 'entir', 'day', 'sit', 'hous', 'podunktown', 'va'], ['suck', 'still', 'hungri', 'suck', 'food'], ['got', 'star', 'pre', 'wash', 'fail', 'rinc'], ['earthlink', 'say', 'modem', 'dead', 'want', 'buy', 'new', 'one', 'sign', 'one', 'year', 'contract', 'argh'], ['frustrat', 'copi', 'across', 'usb', 'old', 'server'], ['actual', 'realli', 'miss', 'fabian', 'pretti', 'sad', 'sinc', 'talk', 'like', 'hour', 'ago', 'gosh', 'time', 'fli', 'miss', 'someon'], ['not', 'think', 'coffe', 'work', 'agre', 'tummi'], ['ben', 'amp', 'jerri', 'fail', 'got', 'email', 'free', 'ice', 'cream', 'say', 'click', 'redeem', 'coupon', 'click', 'get', 'error', 'messag'], ['almost', 'fell', 'asleep', 'hair', 'dryer', 'tire', 'feel', 'like', 'go', 'puke'], ['offici', 'done', 'high', 'school', 'sad', 'miss', 'alreadi', 'movi', 'later'], ['need', 'new', 'run', 'shoe', 'feet', 'complet', 'torn'], ['envi', 'everyon', 'aot'], ['unfortun', 'not', 'someon', 'squat'], ['know', 'alreadi', 'week', 'behind', 'ff', 'tri', 'get', 'one', 'done', 'today', 'call', 'work', 'earli', 'due', 'problem', 'busi', 'day'], ['said', 'ef', 'nose'], ['dreari', 'day', 'la', 'sunshin', 'go'], ['oh', 'hope', 'not', 'bad'], ['work', 'next', 'door', 'suck'], ['wait', 'go', 'period', 'get', 'final', 'omgg', 'soo', 'go', 'fail'], ['dang', 'ldbf', 'not', 'give', 'follow', 'friday', 'shot'], ['yes', 'found', 'come', 'greenvill', 'perfect', 'weekend', 'pictur', 'sidekick', 'go', 'shoot'], ['sharapova', 'lose', 'set'], ['sad', 'face', 'keep', 'crash', 'itun'], ['twitterberri', 'move', 'ubertwitt', 'suffer', 'bb', 'cach', 'error'], ['sorri', 'hear', 'news'], ['need', 'get', 'togeth', 'ricki', 'get', 'home', 'not', 'go', 'pleas', 'break', 'damn', 'bathroom'], ['oh', 'dead', 'muffin', 'sad'], ['tweetdeck', 'languish', 'api', 'hell'], ['wonder', 'great', 'weekend'], ['back', 'lancast', 'bore', 'alreadi', 'not', 'wait', 'start', 'work', 'miss', 'hel'], ['could', 'tell', 'go', 'angri', 'day'], ['eww', 'town', 'fair', 'tire', 'smell', 'horribl', 'make', 'sick'], ['hey', 'mar', 'miss', 'also', 'yeah', 'got', 'find', 'stupidstupid', 'school'], ['bird', 'live', 'find', 'way', 'kill', 'damn', 'thing', 'besid', 'extermin', 'vega', 'suck'], ['hate', 'sweeti', 'bad', 'day'], ['said', 'fuck', 'nose'], ['nobodi', 'like', 'feel', 'low', 'prioriti'], ['sorri', 'type', 'wrong', 'usual', 'type', 'someth', 'not', 'read', 'press', 'button'], ['competit', 'around', 'corner', 'not', 'take', 'slow', 'least', 'week', 'twist', 'ankl', 'back', 'jc', 'aw', 'pain'], ['not', 'get', 'anoth', 'one', 'alfi'], ['headach'], ['goodnight', 'love', 'attend', 'extra', 'class', 'school', 'tomorrow', 'urgh'], ['guy', 'soo', 'unfair', 'smh'], ['know', 'mark', 'still', 'one', 'favorit', 'boy', 'ever', 'nice', 'ador'], ['not', 'talk', 'sinc', 'last', 'day', 'school', 'right'], ['evermor', 'amp', 'end', 'fashion', 'rock', 'poor', 'foot', 'though', 'oww', 'injur', 'foot', 'not', 'good', 'sore', 'tomorrow', 'detail', 'follow', 'later'], ['ughh', 'studi', 'final', 'wish', 'could', 'go', 'prom'], ['waayi', 'hungri', 'oh', 'fyi', 'work', 'email', 'blah'], ['total', 'miss', 'chatroom', 'lame'], ['oh', 'god', 'moth', 'live', 'fuck', 'power', 'outlet', 'actual', 'powersquid'], ['sometim', 'forget', 'boy', 'feel'], ['not', 'one', 'long', 'time', 'expens'], ['hate', 'comput', 'much'], ['also', 'think', 'talk', 'okay', 'need', 'get', 'bed', 'way', 'miss', 'brother'], ['sinus', 'headach', 'suck', 'big', 'time'], ['think', 'boat', 'sail', 'friend', 'cco', 'month', 'ago', 'wish', 'luck', 'though'], ['oh', 'snap', 'broke', 'windshield', 'replac', 'wiper', 'blade'], ['know', 'love', 'nichola', 'braun', 'amp', 'think', 'make', 'okay', 'cameron', 'not', 'want', 'see', 'either'], ['damn', 'broke', 'day', 'guitar', 'hero', 'metallica', 'come', 'boo'], ['much', 'amaz', 'pervert', 'ruin'], ['stop', 'tweet', 'brain', 'not', 'function', 'want', 'cri', 'haha', 'philippin', 'tour', 'pleas', 'love', 'ya'], ['giver', 'life', 'reward', 'taker', 'giver', 'make', 'taker', 'possibl', 'get', 'appreci', 'get', 'taken'], ['serious', 'not', 'like', 'girl'], ['move', 'back', 'home', 'today', 'pro', 'obnoxi', 'closer', 'con', 'mpls', 'least', 'year'], ['dang', 'not', 'even', 'rememb', 'birthday', 'today'], ['not', 'think', 'sister', 'refusn', 'get', 'ticket', 'next', 'week'], ['not', 'eat', 'hot', 'pocket', 'anymor', 'without', 'think', 'jim', 'gaffigan'], ['suck', 'not', 'draw', 'tablet'], ['tri', 'get', 'year', 'hard', 'move', 'suck'], ['want', 'see', 'bad'], ['noo', 'quot', 'thehannabeth', 'crush', 'quot'], ['know', 'worth', 'shot', 'though'], ['truli', 'sad', 'cheap', 'littl', 'camcord', 'shot', 'crap'], ['hate', 'ram', 'use', 'host', 'virtual', 'machin', 'suck', 'much'], ['go', 'nap', 'n', 'chill', 'probabl', 'go', 'movi', 'later', 'ugh', 'headach', 'suck', 'ass', 'cloudi', 'day'], ['radio', 'x', 'go', 'sport', 'next', 'month', 'radio', 'dead', 'grandrapid'], ['sigh', 'guess', 'not', 'go', 'meet', 'today'], ['god', 'school', 'go', 'suck', 'ass', 'next', 'year'], ['guy', 'call', 'kid', 'earlier', 'today', 'hurt'], ['pm', 'ok', 'let', 'us', 'go', 'bowman', 'strategicclock', 'first', 'break', 'aargh', 'tire'], ['argu', 'byron', 'said', 'fat'], ['ugh', 'know', 'economi', 'depress'], ['hey', 'chutti', 'tire', 'travel', 'tomo', 'friday'], ['downfal', 'relax', 'later', 'mad', 'manual', 'labor', 'finish', 'clean', 'fold', 'work', 'blue'], ['wish', 'chicago'], ['huh', 'cri', 'forget'], ['slept', 'hrs', 'bodi', 'ach'], ['get', 'go', 'coffe', 'fun', 'hate'], ['aww', 'laavli', 'come', 'got', 'stun', 'wee', 'tan', 'l'], ['think', 'quot', 'not', 'girlfriend', 'quot', 'need', 'not', 'douchebag', 'right', 'not', 'mood', 'feel', 'neglect'], ['spent', 'last', 'two', 'week', 'attempt', 'grow', 'beard', 'scratch', 'fear', 'may', 'look', 'bit', 'rubbish'], ['left', 'inn', 'school', 'dang', 'straight', 'dead', 'lt'], ['home', 'exact', 'meant', 'home', 'also', 'comput', 'uh', 'brokt'], ['blah', 'car', 'repair', 'almost', 'dollar', 'shop', 'around', 'better', 'deal'], ['wish', 'go', 'still', 'come', 'nicol', 'preprom', 'not', 'wait', 'preprom'], ['hungri', 'not', 'appetit'], ['apart', 'empti', 'amp', 'day', 'sad', 'last', 'week'], [], ['start', 'eat', 'healthi'], ['feet', 'hate', 'feet', 'get', 'cold'], ['whoop', 'got', 'sunburnt'], ['aww', 'sorri', 'kind', 'fish'], ['ian', 'go', 'matine', 'tomorrow', 'plan', 'go', 'expens', 'night'], ['anoth', 'song', 'make', 'cri', 'cri', 'day', 'night', 'long'], ['dog', 'suffer', 'abandon', 'issu', 'think', 'move', 'without'], ['guy', 'stupid', 'idea', 'good', 'girl', 'actual', 'care', 'sad'], ['bus', 'stuck', 'traffic', 'go', 'late'], ['sleep', 'time', 'want', 'watch', 'gossip', 'girl', 'way', 'tire', 'goodnight'], ['swear', 'dog', 'anxieti', 'issu'], ['yes', 'fb', 'ah', 'miss'], ['eep', 'jealous', 'work', 'um', 'receiv', 'viva', 'broadcast', 'onlin', 'plz'], ['forgiv', 'hurt', 'one', 'love'], ['sickk', 'two', 'day', 'sinc', 'summer', 'start', 'suck', 'alreadi'], ['damp', 'weather'], ['ever', 'restaur', 'item', 'menu', 'lunch', 'decis', 'not', 'hard'], ['know', 'suck', 'master', 'procrastin', 'guy', 'not', 'much', 'fun', 'without'], ['internet', 'like', 'grade', 'fast', 'die'], ['oh', 'noon', 'not', 'know', 'make', 'get', 'min', 'lunch'], ['sorri', 'bearer', 'bad', 'news'], ['bore', 'realli', 'not', 'know'], ['uggh', 'school', 'bore', 'not', 'wait', 'year', 'stress', 'shoulda', 'stay', 'home', 'today'], ['not', 'happi', 'bunni'], ['melt', 'mayb', 'squar', 'inch', 'skin', 'ran', 'cold', 'water', 'min', 'two', 'ice', 'ice', 'melt', 'hurt'], ['honest', 'credit', 'phone', 'suck', 'not', 'even', 'text', 'peopl', 'see', 'happen', 'like', 'total', 'grrsvill'], ['stress', 'anyth', 'get', 'better', 'sigh'], ['get', 'upset', 'work', 'cus', 'bindz', 'j', 'bulli', 'not', 'let', 'go', 'duti', 'free', 'shop'], ['project', 'suck'], ['walk', 'puppi', 'downtown', 'also', 'mysteri', 'miss', 'cat', 'solv', 'hid', 'basement', 'near', 'two', 'day'], ['like', 'nt', 'gettin', 'hectic'], ['think', 'rate', 'ill', 'class', 'sigh'], ['noo', 'juli', 'go', 'back', 'home', 'noo'], ['eat', 'home', 'made', 'indian', 'food', 'boak', 'x'], ['cold', 'get', 'chill'], ['make', 'sad', 'peopl', 'phone', 'sick'], ['wish', 'van', 'come', 'round', 'miss'], ['miss'], ['far', 'vigor', 'prune', 'regret', 'remov', 'mani', 'cucumb', 'flower', 'cucumb', 'plant'], ['follow', 'follow', 'sorri', 'ahhahah', 'miss'], ['yes', 'think', 'stay', 'offic', 'slight', 'less', 'ridicul', 'hot'], ['tom', 'today', 'school', 'play', 'pov', 'break', 'almost', 'cri', 'show', 'sao', 'paulo', 'today', 'wish', 'could'], ['friday', 'friday', 'morn', 'ugh'], ['also', 'proof', 'number', 'life', 'imaginari', 'boyfriend', 'name', 'vinc', 'sad', 'friend', 'encourag'], ['oh', 'check', 'stock', 'port', 'market', 'unabl', 'buy', 'ticon', 'best', 'price'], ['burn', 'like', 'ginger', 'kid', 'sun', 'arm', 'red'], ['one', 'even', 'like', 'answer', 'life', 'last', 'night', 'pshh'], ['not', 'believ', 'tila', 'tequila', 'ct', 'not', 'know', 'upset'], ['get', 'one', 'field', 'vehicl', 'clean', 'look', 'like', 'action', 'hero', 'governor', 'want', 'give', 'anoth', 'furlough', 'day', 'nice'], ['oh', 'pw', 'done', 'wrong', 'sign', 'time', 'children', 'articl', 'neil', 'gaiman', 'teas', 'bea'], ['feel', 'low', 'depress', 'not', 'holiday'], ['jeff', 'not', 'get', 'visa', 'time', 'come', 'visit', 'sad', 'news', 'go', 'lapa', 'tonight', 'samba', 'night', 'away'], ['soo', 'tire', 'cubicl'], ['go', 'check', 'make', 'sure', 'fishi', 'dead', 'poor', 'fishi'], ['cheer', 'yell', 'shake', 'end', 'chant', 'suck', 'quot', 'x', 'quot', 'got', 'suspend', 'amp', 'give', 'public', 'apolog', 'lol'], ['blah', 'regist', 'coach', 'summer', 'eh', 'tourney', 'start', 'juli', 'vacat', 'fk', 'life', 'haha'], ['not', 'eat', 'lunch', 'wife', 'like', 'want'], ['goddamn', 'fuck', 'suck', 'hug'], ['miss', 'babi', 'day'], ['seem', 'huge', 'delay', 'deliv', 'pocket', 'queri'], ['lie', 'like', 'restaraunt', 'name', 'quot', 'garfield', 'quot', 'nowher', 'found'], ['suck', 'man', 'hope', 'weekend'], ['not', 'readi', 'babi', 'tomorrow', 'grow', 'fast'], ['not', 'look', 'forward', 'long', 'trip', 'morn', 'sick'], ['saw', 'june', 'make', 'think', 'jenni', 'miss', 'much'], ['know', 'weather', 'clear', 'suppos', 'nice', 'sat', 'sun'], ['tire'], ['not', 'bad', 'enough', 'time', 'last', 'night', 'bodi', 'decid', 'want', 'sick'], ['lol', 'freakingg', 'wors', 'looks', 'shirt', 'short', 'sandal', 'look', 'like', 'go', 'rain', 'outsid', 'boo', 'yahoo', 'wearther'], ['not', 'let', 'queer', 'boy', 'donat', 'blood'], ['half', 'hour', 'work', 'wish', 'someth'], ['freez', 'cold', 'not', 'function', 'right', 'type', 'weather', 'starv', 'max'], ['leg', 'hurt', 'stand', 'day'], ['run', 'thing', 'say', 'start', 'think', 'hate', 'flood', 'inbox', 'quot', 'philippin', 'tour', 'quot'], ['everi', 'time', 'succeed', 'code', 'get', 'quot', 'sorri', 'credit', 'card', 'declin', 'quot'], ['love', 'avail', 'dear', 'would', 'love', 'help', 'convert'], ['damn', 'wish', 'go', 'found', 'late', 'get', 'wrangler', 'kid', 'miss', 'mountainjam', 'everi', 'year'], ['ohoh', 'miss', 'tweet', 'go', 'stay', 'awak', 'night', 'see', 'announc', 'damn', 'time', 'differ'], ['tweet', 'alli', 'court', 'last', 'time', 'sad', 'sad', 'moment'], ['man', 'suck'], ['weird'], ['portugues', 'nation', 'librari', 'could', 'use', 'also', 'right', 'seem', 'stuck', 'somewher', 'circa', 'exampl'], ['came', 'back', 'watch', 'termin', 'salvat', 'cathay', 'not', 'much', 'action', 'feel', 'sorri', 'marcus', 'though'], ['scratchi', 'scratchi', 'throat', 'warm', 'fluid', 'need'], ['aw', 'xx'], ['saw', 'sun', 'blink', 'gone'], ['ahh', 'close'], ['cankl', 'sore'], ['grr', 'stupid', 'meebo', 'disconnect', 'everi', 'second'], ['edit', 'crap', 'school', 'drag', 'give', 'lol', 'ill', 'home', 'want', 'go', 'home', 'vida', 'bore', 'right'], ['miss', 'old', 'ha', 'ha', 'not', 'tell', 'person', 'name'], ['realli', 'wish', 'spare', 'cash', 'buy', 'new', 'punch', 'wii'], ['wow', 'r', 'watch', 'outsid', 'smelli', 'english'], ['not', 'even', 'tell', 'much', 'hair', 'dresser', 'piss', 'clue', 'wtf', 'ask', 'expect', 'worst'], ['neighborhood', 'gas', 'station', 'gone', 'kaput', 'busi', 'conveni', 'trip', 'ice', 'whatev', 'mile', 'travel'], ['freez', 'math', 'class'], ['last', 'day', 'la', 'sad'], ['gah', 'buddi', 'k', 'must', 'hang', 'person', 'right', 'miss', 'along', 'parker', 'mcphee'], ['go', 'home', 'get', 'home', 'black', 'berri', 'woo', 'hoo', 'get', 'see', 'presten', 'lt'], ['go', 'home', 'get', 'home', 'black', 'berri', 'woo', 'hoo', 'get', 'see', 'presten', 'lt'], ['work', 'freakin', 'comput', 'tri', 'save', 'stuff', 'harddriv', 'seem', 'fail', 'miser'], ['oh', 'hate', 'friday', 'even'], ['take', 'care', 'sick', 'children'], ['get', 'hair', 'cut', 'todayi', 'nerrvous'], ['love', 'love', 'player', 'come', 'visit', 'miss', 'girl'], ['oh', 'forget', 'thing', 'see', 'ahah', 'hate', 'creep'], ['gave', 'inspir', 'last', 'updat'], ['went', 'realli', 'long', 'cycl', 'ride', 'mum', 'brother', 'bff', 'han', 'today', 'bum', 'ach'], ['feel', 'ucki', 'today', 'need', 'defens', 'vitamin', 'water', 'not', 'want', 'sick', 'more'], ['oh', 'noess', 'senior', 'last', 'day', 'howev', 'tickl', 'till', 'floor', 'giggl', 'made', 'total', 'worth', 'plus', 'senior', 'sandwhich'], ['ask', 'mum', 'bout', 'go', 'tommorow', 'laugh', 'face', 'lmao'], ['ugh', 'not', 'breath', 'right', 'today'], ['think', 'control', 'thought'], ['man', 'not', 'go', 'sunday', 'help', 'day', 'piano', 'recit', 'suck'], ['wow', 'last', 'hour', 'twitter', 'yet', 'sent', 'twitter', 'guy', 'bare', 'w'], ['got', 'hair', 'cut', 'great', 'stupid', 'gum'], ['unlock', 'decad', 'not', 'lucki', 'never', 'got', 'ta', 'make', 'luck', 'involv'], ['mm', 'nando', 'good', 'topshop', 'rule', 'actual', 'devast', 'not', 'come', 'london', 'show', 'quot', 'quot', 'bail'], ['regrettin', 'decis', 'made'], ['could', 'not', 'rememb', 'differ', 'cord', 'meant', 'lost', 'half', 'leav', 'graduat', 'anyway'], ['think', 'revis', 'garden', 'morn', 'without', 'sunscreen', 'not', 'best', 'idea', 'oucch'], ['suck', 'major', 'not', 'still', 'golf', 'tournament'], ['mayb', 'first', 'mistak', 'not', 'everyon', 'cool', 'brown', 'nose', 'moment'], ['burn', 'ohh', 'xoxo'], ['hate', 'arriv', 'employe', 'park', 'lot'], ['work', 'suck', 'big', 'time'], ['say', 'goodby', 'good', 'trust', 'friend', 'today', 'goodby', 'free', 'sky', 'tv', 'best', 'friend', 'anyon', 'could'], ['work', 'not', 'feel', 'like', 'bein', 'dis', 'bitch', 'today'], ['ouuhh', 'not', 'cri', 'feel', 'sad', 'right'], ['new', 'babi', 'well', 'attempt', 'quot', 'paint', 'quot', 'weekend'], ['crappi', 'day'], ['urg', 'go', 'got', 'money'], ['well', 'normal', 'day', 'would', 'alreadi', 'done', 'not', 'normal', 'day', 'mean', 'offic', 'till', 'late'], ['back', 'vet', 'not', 'good'], ['love', 'not', 'leav'], ['came', 'home', 'get', 'ratti', 'shop', 'staff', 'blister', 'foot', 'meh'], ['went', 'get', 'car', 'inspect', 'sticker', 'got', 'gigant', 'red', 'r', 'one', 'keep', 'pile', 'take', 'not', 'worri', 'ok'], ['laundri', 'instead', 'sit', 'darn', 'laundri', 'keep', 'mock'], ['lucki', 'beggin', 'juri', 'duti', 'not', 'ever', 'send', 'notic', 'notic', 'peopl', 'address'], ['lost', 'without', 'laptop', 'break', 'today', 'made', 'even', 'wors', 'big', 'boss', 'skipton', 'show', 'today'], ['not', 'get', 'mine', 'keep', 'get', 'error'], ['miss'], ['ano', 'pa', 'bang', 'aasahan', 'ko', 'sa', 'iyo', 'never', 'fail', 'fail'], ['yes', 'sober', 'hahaha', 'tanghal', 'tapat', 'dude', 'haha', 'wild', 'not', 'knoww', 'plan', 'plan', 'go', 'us'], ['best', 'could', 'proof', 'crack', 'lol'], ['talk', 'vincent', 'miss', 'baad'], ['would', 'premier', 'avatar', 'footag', 'not', 'also', 'better', 'hang'], ['suck'], ['mourn', 'venus', 'third', 'round', 'loss'], ['ugh', 'stupid', 'teenag', 'show', 'peac', 'time'], ['get', 'new', 'bottom', 'totem', 'pole'], ['sick', 'like', 'day'], ['wow', 'atleast', 'three', 'two', 'month', 'go', 'go', 'away'], ['sorri', 'hear'], ['panera', 'not', 'nice', 'iphon'], ['dear', 'go', 'fuck', 'kiddo', 'go', 'sit', 'noth', 'awesom', 'shop', 'lt'], ['hell', 'rain', 'hate', 'rain'], ['ok', 'guess', 'need', 'actual', 'work', 'long', 'pm', 'oh', 'may', 'ditch', 'earli'], ['miss', 'hope', 'come', 'back'], ['hug', 'hubbi', 'probabl', 'place', 'come', 'septemb'], ['ew', 'sorri', 'zach'], ['wow', 'mosquito', 'backyard', 'suck', 'cough', 'half', 'death', 'middl', 'night', 'keep', 'cassidi', 'awak'], ['go', 'eat', 'someth', 'feel', 'horrid', 'need', 'hug'], ['akh', 'woke', 'miss', 'much', 'say', 'hassan', 'speech'], ['got', 'wiff', 'pazik', 'fart'], ['wow', 'person'], ['weekend', 'cuzzo', 'vivi', 'not', 'stand', 'leav', 'week'], ['back', 'hurt', 'meant', 'go', 'tonight', 'poor', 'rik'], ['bah', 'made', 'hungri'], ['play', 'hooki', 'work', 'go', 'see', 'hope', 'get', 'along'], ['geometri', 'like', 'said', 'not', 'would', 'graduat', 'feel', 'pain', 'hun'], ['snotti', 'nose', 'poor', 'chest', 'not', 'good'], ['wish', 'dog'], ['hate', 'get', 'put', 'steroid', 'face'], ['followfriday', 'thank', 'much', 'behind', 'still', 'half'], ['refus', 'accept', 'us', 'holiday', 'head', 'woodi', 'longboard', 'diner', 'um', 'hove'], ['manchest', 'wayi', 'busi', 'warm', 'today', 'also'], ['lost', 'friend', 'not', 'anyth'], ['bad', 'day'], ['wait', 'wake', 'hazin', 'sad'], ['gut', 'not', 'go', 'tonight'], ['boo', 'not', 'sleep', 'say', 'hi', 'random', 'peopl'], ['feel', 'mad', 'sorri', 'seck', 'make', 'feel', 'better', 'go', 'fashion', 'show'], ['kind', 'like', 'not', 'car', 'situat', 'late', 'prevent', 'particip', 'due', 'carless'], ['ooh', 'comput', 'make', 'playlist', 'come', 'onlin', 'pls', 'bore', 'block', 'everyon'], ['twenti', 'minut', 'fuck', 'call', 'would', 'think', 'person', 'would', 'mention', 'alreadi', 'troubl', 'ticket', 'investig', 'issu'], ['murphi', 'law', 'sorri', 'comput', 'not', 'cooper', 'lot', 'work', 'kid'], ['much', 'pm', 'not', 'think', 'go', 'get', 'done'], ['birthday', 'weekend', 'shit', 'alreadi', 'head', 'drive', 'atl', 'tonight'], ['come', 'worst', 'possibl', 'thing', 'happen', 'not', 'swine', 'flu', 'not', 'aid', 'rrod'], ['toom', 'tour', 'philippin', 'pleeas', 'risk', 'health', 'get', 'repli', 'haha'], ['god', 'hate', 'scari', 'movi', 'not', 'wimpi'], ['today', 'not', 'go', 'way', 'plan', 'earli', 'lunchbreak', 'amp', 'may', 'not', 'back', 'til', 'mon', 'weekend', 'go', 'fun', 'friend', 'though'], ['not', 'like', 'new', 'termin', 'movi', 'man'], ['worri', 'cousin', 'son'], ['oh', 'sorri', 'feel', 'pain', 'not', 'kill', 'either', 'alway', 'one', 'find'], ['crave', 'cinnamon', 'toast', 'crunch', 'cold', 'today'], ['damn'], ['aww', 'sri', 'yesterday'], ['ahh', 'hate', 'sick', 'watch', 'aton', 'sleep'], ['excit', 'today', 'still', 'much'], ['omg', 'head', 'still', 'hurt', 'need', 'get', 'comic', 'today', 'got', 'hurri', 'lol'], ['burn', 'tongu'], ['sad', 'cuz', 'mommi', 'leav', 'indi', 'today'], ['fun', 'fill', 'even', 'funer', 'home', 'joy'], ['done', 'focus', 'summer', 'life', 'hard'], ['wish'], ['miss', 'hello', 'kitti', 'not', 'enough', 'time', 'oh', 'well'], ['ah', 'sorri', 'play', 'game', 'psp', 'friend', 'tonight', 'return', 'ago'], ['womp', 'womp', 'woomp'], ['well', 'guess', 'like', 'shit', 'cure', 'crave', 'get', 'mcskillet', 'want'], ['haavent', 'read', 'paper', 'yet', 'magic', 'loss', 'get', 'watch', 'game', 'last', 'night', 'know', 'lost'], ['feel', 'sick', 'oreo', 'cheesecak', 'milkskak', 'lol'], ['bum', 'maxi', 'dress', 'think', 'cute', 'summer', 'quot'], ['shit', 'aw', 'could', 'not', 'believ', 'first', 'sad'], ['head', 'sam', 'adam', 'breweri', 'not', 'sampl', 'get'], ['soo', 'loney'], ['hope', 'migrain', 'not', 'stick', 'around', 'long'], ['blerrgh', 'hot', 'sticki'], ['sunburn', 'ouch'], ['say', 'hello', 'marina', 'green', 'could', 'not', 'particip', 'barcelona', 'weeken'], ['tri', 'tri', 'past', 'learn', 'cockney', 'sad', 'near', 'imposs', 'find', 'book', 'thing'], ['travesti'], ['freakin', 'day', 'would', 'look', 'forward'], ['comput', 'got', 'screw', 'hell', 'virus', 'finish', 'wipe', 'drive', 'reinstal', 'window', 'xp', 'want', 'mac'], ['home', 'tomorrow', 'run', 'spin', 'time', 'chiropractor', 'laundri', 'shop', 'visit', 'famili', 'miss', 'nathan'], ['yeah', 'not', 'realli', 'feel', 'either', 'cours', 'not', 'like', 'movi', 'line', 'wish', 'get', 'anim'], ['left', 'school', 'new', 'dress', 'broke', 'strap', 'rip'], ['pup', 'would', 'love', 'save', 'live', 'saturday', 'night', 'although', 'know', 'miss', 'blast'], ['noo', 'fb', 'good', 'love', 'convers'], ['wish', 'rain', 'would', 'stay', 'away', 'go', 'pool'], ['got', 'key', 'new', 'flat', 'gorgeous', 'weather', 'weekend', 'spend', 'quot', 'pack', 'quot'], ['look', 'though', 'sick', 'littl', 'friend'], ['cool', 'dang', 'ihav', 'clean', 'room', 'lol', 'good', 'luck', 'job', 'gurl'], ['wzzup', 'derrek', 'r', 'start', 'band', 'practic', 'jayk', 'skylar', 'leav', 'california', 'today', 'lucki'], ['make', 'boyfriend', 'look', 'differ', 'cute', 'matter', 'lt'], ['miss', 'babyy'], ['workk', 'yay'], ['wish', 'take', 'care'], ['spent', 'much', 'today', 'tube', 'journey', 'alway', 'take', 'soo', 'long', 'brace', 'thursdayi'], ['yea', 'nice', 'weekend'], ['lost', 'first', 'field', 'note', 'notebook', 'page', 'fill', 'rip', 'fieldnot'], ['hate', 'not', 'abl', 'see', 'monitor', 'minut', 'sun', 'not', 'blind'], ['not', 'kno', 'wat', 'er', 'saddo'], ['reason', 'not', 'get', 'boc'], ['look', 'one', 'year', 'anniversari', 'mane', 'um', 'sad'], ['cri', 'like', 'babi', 'put', 'cat', 'year', 'ago', 'tear', 'happi', 'watch'], ['would', 'love', 'ride', 'superman', 'right'], ['ohh', 'make', 'sens', 'need', 'reread', 'lotr', 'trilog', 'lost', 'three', 'book', 'long', 'time', 'ago', 'sad'], ['aww', 'read', 'tweet', 'not', 'sure', 'later', 'either', 'work', 'feel', 'us'], ['brother', 'wander', 'around', 'hous', 'underwear', 'charm', 'sister', 'femal', 'guest', 'sure'], ['not', 'want', 'lose', 'wisdom', 'teeth', 'make', 'wise', 'soon', 'without', 'trace', 'wisdom'], ['photo', 'still', 'hook', 'edit', 'comp', 'know', 'guy', 'miss', 'artwork', 'decid'], ['damn', 'stephan', 'not', 'even', 'feel', 'sorri', 'work'], ['not', 'like', 'bang', 'want', 'hair', 'back'], ['oh', 'good', 'pierc', 'bottom', 'lip', 'right', 'grade', 'pierc', 'dress', 'code'], ['sad', 'work', 'today', 'not', 'win', 'ticket'], ['might', 'swine', 'flu', 'haha', 'got', 'flu'], ['sun', 'burn', 'arm', 'look', 'angri', 'parti', 'tonight', 'though', 'babe', 'woop'], ['walk', 'class', 'hate', 'not', 'mine'], ['need', 'get', 'good', 'hard', 'workout', 'today', 'work', 'feel', 'like', 'slack', 'good'], ['poor', 'butterfli', 'dead'], ['love', 'tell', 'not', 'match', 'shirt', 'perfect', 'not', 'move', 'pleas', 'suppos', 'without'], ['one', 'experienc', 'problem', 'log', 'digit', 'point', 'forum'], ['sunni', 'hot', 'london', 'today', 'sit', 'offic', 'crank', 'spreadsheet'], ['jdubb', 'funki', 'guess', 'neglect'], ['bsnl', 'stupid', 'net', 'went', 'without', 'email', 'whole', 'day'], ['ehh', 'carnt', 'stand', 'hot', 'weather'], ['wake', 'appear', 'miss', 'not', 'much'], ['ugh', 'feel', 'sick', 'stomach', 'five', 'hour', 'work', 'go'], ['thank', 'sana', 'matanggap', 'ako'], ['nah', 'act', 'like', 'dick', 'show', 'suck', 'last', 'night'], ['seen', 'hope', 'ebay', 'replac', 'work', 'take', 'bit', 'anyway', 'lol'], ['aww', 'sad', 'miss', 'see', 'guy', 'big', 'screen'], ['hour', 'fifteen', 'drive', 'left', 'bore', 'ate', 'half', 'food', 'alreadi'], ['back', 'park', 'sunburnt', 'not', 'wait', 'go', 'get', 'sober', 'jst', 'wnt', 'b', 'fun'], ['ouch', 'hate', 'happen'], ['ik', 'feel', 'soo', 'bad'], ['hell', 'go', 'last', 'night', 'morn', 'suck', 'move', 'tonight'], ['need', 'jb', 'dread', 'fact', 'retail', 'summer'], ['exhaust', 'new', 'song', 'quot', 'one', 'day', 'quot', 'myspac', 'check'], ['not', 'research', 'traffic', 'beauti', 'system', 'twitter', 'approx', 'mine', 'grab'], ['start', 'get', 'sad'], ['feel', 'like', 'death', 'evil', 'headach', 'need', 'pack', 'drive', 'parent', 'bum'], ['big', 'header', 'folio', 'hour', 'sale', 'yet', 'realli', 'impati', 'lol'], ['suck'], ['someon', 'broke', 'car', 'big', 'time', 'realli', 'bad', 'day'], ['heater', 'room', 'day', 'school', 'amp', 'boil'], ['yeah', 'got', 'text', 'well', 'summer', 'break', 'week', 'far', 'bore', 'watch', 'tenni', 'match'], ['think', 'florida', 'heat', 'much', 'reluct', 'take', 'place'], ['not', 'believ', 'thought', 'morn', 'shift', 'today', 'told', 'alex', 'could', 'take', 'airport', 'flight', 'shift'], ['home', 'sore', 'feet', 'sad', 'sale', 'granda', 'hous', 'went', 'miss'], ['haha', 'yeah', 'improv', 'nite', 'big', 'time', 'make', 'skype', 'call', 'soon', 'though', 'tear', 'away'], ['middl', 'breakfast', 'school', 'get', 'migrain', 'week', 'mayb', 'one', 'never', 'went', 'away'], ['remind', 'good', 'speak', 'not', 'postur', 'check', 'awhil'], ['alcohol', 'make', 'tire', 'miss', 'want', 'much', 'hurt'], ['twittin', 'go', 'bad', 'get', 'phone', 'lost', 'like', 'shit'], ['realli', 'wish', 'spoil'], ['think', 'juz', 'miss', 'last', 'bus', 'need', 'walk', 'home', 'sia'], ['smell', 'bad', 'garlic'], ['right', 'side', 'earphon', 'stop', 'work', 'sudden', 'need', 'buy', 'new', 'one'], ['last', 'night', 'cork', 'come', 'tomorrow', 'not', 'even', 'rememb', 'doubl', 'sad', 'face', 'haha', 'word', 'lili', 'allen', 'not', 'fair'], ['curs', 'server', 'restrict', 'wait', 'get', 'home'], ['oh', 'ouch', 'hurt', 'damn', 'wash', 'machin', 'get', 'lt', 'lt', 'gt', 'gt'], ['momma', 'martini', 'went', 'food', 'shop', 'without'], ['internet', 'connect', 'ruin', 'great', 'scrabbl', 'game'], ['not', 'think', 'twitpic', 'work'], ['soo', 'close', 'finish', 'exam', 'role', 'monday', 'life', 'back'], ['father', 'stay', 'home', 'confer', 'call', 'sorri'], ['think', 'bugger', 'mobil', 'ack', 'stubborn', 'ars', 'refus', 'get', 'new', 'one'], ['weekend', 'get', 'close', 'bad', 'stuck', 'north', 'hope', 'abl', 'get', 'next', 'weekend', 'real', 'life', 'fun'], ['ala', 'best', 'offer', 'small', 'poni', 'row', 'boat'], ['record', 'sent', 'peopl', 'obvious', 'meant', 'get', 'not', 'feel', 'bad'], ['not', 'count'], ['lost', 'nintendog', 'upset'], ['not', 'believ', 'gorgeous', 'weather', 'today', 'amp', 'spend', 'work'], ['geez', 'hate', 'bein', 'work', 'till', 'day', 'like', 'feel', 'like', 'wast', 'lovley', 'day'], ['bad', 'headach'], ['know', 'sad', 'back', 'auto', 'industri', 'not', 'understand', 'iphon', 'would', 'chang', 'live'], ['three', 'hour', 'hair', 'still', 'not', 'straight'], ['sorri', 'found', 'member', 'preview', 'sold', 'awhil', 'open', 'noon', 'general', 'public'], ['exhaust', 'sick', 'face', 'greenish'], ['wait', 'aaron', 'get', 'town', 'leav', 'work', 'boo'], ['not', 'feel', 'like', 'babysit', 'want', 'go', 'gym', 'weird', 'know', 'miss', 'zack'], ['hope', 'ami', 'okai'], ['stress', 'sad', 'pugsli', 'miss', 'hope', 'hes', 'okay', 'stuck', 'otrip', 'not', 'look', 'someon', 'post', 'pic', 'fb'], ['unfortun'], ['bro', 'martin', 'need', 'repent', 'pam', 'said', 'go', 'get', 'meet', 'last', 'wknd'], ['bleargh', 'never', 'clean', 'much', 'hous', 'want', 'work', 'matter', 'earli', 'wake', 'today', 'sink', 'laundri'], ['young', 'ladi', 'local', 'chines', 'take', 'order', 'said', 'cute', 'inde', 'piti', 'probabl', 'twice', 'age'], ['inconsider'], ['everyon', 'sad', 'touch', 'rule', 'still', 'get', 'see', 'us', 'get'], ['yeah', 'man', 'brought', 'back', 'market', 'coupl', 'year', 'scarc'], ['not', 'depress', 'stay', 'weekend', 'someon', 'els', 'wait', 'kid'], ['sorri', 'not', 'impress', 'slightest', 'not', 'eat', 'like', 'sadden', 'confus'], ['omg', 'lg', 'touchscreen', 'fone', 'pile', 'shite', 'roll', 'new', 'contract', 'month'], ['cold'], ['saw', 'poni', 'use', 'live', 'front', 'hous', 'develop', 'cush', 'diseas', 'though'], ['confus', 'flippin', 'expens'], ['head', 'park', 'kid', 'hope', 'not', 'rain', 'cloudi'], ['fuck', 'hate', 'strawberri', 'run', 'special', 'k'], ['get', 'clean', 'tue', 'get', 'tooth', 'pull', 'thur', 'got', 'schedul', 'bridg', 'might', 'need', 'root', 'canal', 'ugh'], ['not', 'invit', 'get', 'togeth', 'either', 'playin', 'secur', 'told', 'us', 'quiet'], ['not', 'go', 'abl', 'talk'], ['damnn', 'day', 'came', 'fast', 'cherish', 'moment'], ['michael', 'scholfield', 'dead', 'sorri'], ['luck'], ['final', 'got', 'wash', 'hair', 'feel', 'much', 'better', 'got', 'dri', 'effort'], ['someon', 'fuck', 'birthday', 'sex', 'basic', 'said', 'song', 'nigga', 'selfish', 'listen', 'song', 'care'], ['though', 'cloth', 'collect', 'design', 'togeth', 'visual', 'art', 'not'], ['ha', 'potenti', 'loss', 'finger', 'think', 'get', 'po', 'charg', 'not', 'full', 'proof'], ['found', 'bug', 'driver', 'not', 'handl', 'high', 'packet', 'per', 'second', 'gt'], ['gross', 'hot', 'cotton', 'everywher', 'hello', 'allergi'], ['gut', 'not', 'get', 'ticket', 'pink'], ['sorri', 'definit', 'get', 'weekend'], ['still', 'tire', 'due', 'late', 'night', 'work', 'b', 'earli', 'work', 'bad', 'time'], ['wish', 'could', 'go', 'got', 'work'], ['move', 'block', 'street', 'goodby', 'hardwood', 'floor'], ['look', 'time', 'sunk', 'total', 'shock', 'honest'], ['sore', 'ultim', 'tri', 'figur', 'pay', 'school', 'next', 'semest'], ['miss', 'loverboy', 'much'], ['realli', 'hope', 'see', 'tweet', 'sent', 'much', 'swear', 'tour', 'philippin', 'pleas', 'pray'], ['bad', 'programm', 'compani'], ['soo', 'sad', 'miss', 'san', 'diego'], ['oow', 'look', 'pain', 'poor', 'bb'], ['time', 'get', 'work', 'alreadi', 'start', 'day', 'bad', 'miss', 'screen', 'morn', 'el', 'capitan'], ['done', 'absolut', 'noth', 'day', 'piti', 'not', 'go', 'got', 'work', 'boo'], ['noo', 'want', 'watch', 'comet', 'not', 'want', 'go', 'workk'], ['download', 'fail', 'phone', 'not', 'like', 'phone'], ['not', 'think', 'not', 'peopl', 'nice', 'would', 'anyon', 'think', 'ok', 'say', 'much', 'less', 'make', 'movi'], ['inoo', 'not', 'want', 'go', 'meet', 'kyle', 'obsess', 'not', 'fair'], ['want', 'rain', 'today', 'like', 'full', 'thunderstorm', 'style', 'probabl', 'not'], ['better', 'come', 'back', 'soon', 'lt'], ['day', 'go', 'freedom', 'damn', 'xam'], ['play', 'good', 'big', 'babi'], ['drag', 'hell', 'look', 'freakin', 'scari', 'watch', 'termin', 'realli', 'good'], ['thank'], ['everybodi', 'sick'], ['omg', 'wtf', 'porn', 'site', 'follow'], ['school', 'bore', 'want', 'go', 'home'], ['hey', 'socialmediatv', 'new', 'record', 'show', 'viewabl', 'later', 'thank', 'social', 'media', 'tv', 'live', 'gt'], ['got', 'mcdonald', 'surpis', 'not', 'popular', 'drunk', 'food', 'option', 'suck', 'diner', 'not', 'anymor'], ['oh', 'god', 'sad', 'day'], ['known', 'someth', 'would', 'go', 'wrong', 'van', 'problem', 'oh', 'pleas', 'tell', 'not', 'cost', 'us', 'arm', 'leg'], ['aww', 'teach', 'son', 'one', 'manner', 'mani', 'boy', 'lack'], ['tri', 'height', 'small', 'car', 'not', 'much', 'fun', 'special', 'bumbpi', 'countri', 'road', 'haha'], ['hug', 'not', 'abl', 'shag', 'crush', 'anymor', 'x'], ['comp', 'delet', 'half', 'app'], ['thirti', 'minut', 'turn', 'three', 'hour', 'oop'], ['miss', 'one', 'would', 'anyth', 'spend', 'min', 'one', 'use', 'say', 'tell'], ['poke', 'run', 'away', 'want', 'sugar'], ['know', 'suck'], ['sadden', 'husker', 'internet'], ['argh', 'sorri', 'thorn', 'side', 'sinc', 'got', 'rude', 'mouthi', 'etc'], ['saw', 'bird', 'slowli', 'die', 'right', 'next'], ['fell', 'go', 'hous', 'not', 'fun'], ['bsg', 'might', 'made', 'cri'], ['decid', 'studi', 'finger', 'throat', 'make', 'gage', 'nois', 'hate', 'mfs'], ['omg', 'got', 'sleep', 'neighbor', 'build', 'deck', 'amp', 'start', 'tire', 'feel', 'like', 'took', 'benadryl'], ['gym', 'day', 'hope', 'enjoy', 'last', 'friday', 'twenti'], ['sad', 'everyon', 'leav'], ['not', 'happi', 'fact', 'back', 'hurt', 'today'], ['bore', 'work', 'ridicul', 'saturday', 'go', 'suck', 'class', 'morn'], ['sheesh'], ['ichigo', 'good', 'ping', 'amp', 'poop', 'outsid', 'not', 'use', 'fact', 'not', 'sister', 'lone', 'puppi'], ['fail', 'class', 'algebra', 'damn', 'shit', 'hard'], ['hate', 'sick', 'especi', 'one', 'pamper'], ['mcfonald', 'roulett', 'lose', 'forgot', 'mygril', 'snack', 'wrap'], ['sorri', 'littl', 'disturb', 'sapinsidetrack', 'palo', 'alto', 'went', 'debug', 'session', 'line', 'unmut'], ['realli', 'get', 'sick', 'ugh', 'fuckin', 'nurs', 'home', 'lay', 'bed', 'might', 'go', 'run', 'later', 'watch', 'movi', 'austin', 'sara', 'amp', 'sami', 'left'], ['peopl', 'follow', 'peopl', 'follow', 'pleas', 'x'], ['not', 'trap', 'work', 'day'], ['pinkpop', 'weekend', 'amp', 'got', 'ticket', 'mean', 'bruce', 'springsteen', 'oh', 'well', 'wweekkeenndd'], ['may', 'gray', 'coldplay', 'nice'], ['yay', 'train', 'late', 'start', 'min', 'late', 'arriv', 'london', 'first', 'place'], ['want', 'good', 'breakfast', 'school', 'wiggiti', 'whack'], ['nice', 'bea', 'bum', 'not', 'make', 'tri', 'get', 'togeth', 'near', 'futur'], ['feel', 'like', 'dye', 'right'], ['sit', 'bed', 'not', 'want', 'go', 'work'], ['guess', 'got', 'wow', 'imposs'], ['never', 'thought', 'would', 'say', 'miss', 'job', 'commut', 'cubicl', 'free', 'food', 'amp', 'coffe', 'downtown', 'quit'], ['cheer', 'wish', 'font', 'play'], ['twitter', 'look', 'funni', 'someon', 'help'], ['ugh', 'tri', 'respond', 'messag', 'miss', 'town', 'could'], ['not', 'feel', 'well', 'got', 'dentist', 'appoint', 'later'], ['need', 'wash', 'cat', 'uncool'], ['damn', 'rhiniti', 'boohoo', 'poor', 'nose'], ['meet', 'yay', 'work'], ['back', 'work', 'migrain', 'linger', 'not', 'wait', 'weekend'], ['ugh', 'soo', 'much', 'work', 'today', 'tri', 'make', 'train', 'game', 'look', 'like', 'hour', 'sunday', 'offic'], ['not', 'ticket', 'boyfriend', 'not', 'might', 'rain', 'lt', 'though'], ['damn', 'lot', 'messag', 'sweet', 'quot', 'gt', 'yeah', 'sayang'], ['know', 'neck', 'jack', 'forc', 'pay', 'park', 'not', 'turn', 'head', 'parallel', 'park', 'free', 'space'], ['day', 'go', 'well', 'far', 'meet', 'though'], ['miss', 'guy'], ['outlook', 'not', 'good'], ['studi', 'bullshit', 'econ', 'test'], ['bore', 'bff', 'not', 'want', 'hang'], ['instead', 'lay', 'degre', 'got', 'give', 'fourth', 'grader', 'hour', 'fml'], ['dream', 'brought', 'king', 'island', 'pretti', 'sweet', 'bum', 'poughkeepsi', 'hour'], ['not', 'want', 'exam', 'next', 'week'], ['realli', 'disappoint', 'not', 'make', 'bloomington', 'launch', 'parti', 'tonight', 'around', 'check'], ['realli', 'not', 'right', 'sick', 'newt', 'freezer', 'awe', 'x'], ['not', 'singl', 'one', 'lol', 'would', 'say', 'creativ', 'bright', 'fun', 'avatar', 'depth', 'ff'], ['tire', 'sick', 'time'], ['dog', 'rosco', 'die', 'yestarday', 'sad'], ['suck'], ['go', 'hate', 'long', 'drive', 'want', 'get', 'paper', 'work'], ['still', 'devast', 'manchest', 'unit', 'lose', 'ucl', 'final'], ['oh', 'darn', 'lost', 'anoth', 'follow'], ['crazi', 'debt', 'issu', 'mayb', 'mess', 'close', 'old', 'account', 'not', 'realli', 'sure', 'look', 'like', 'may', 'cover', 'aargh'], ['dang', 'miss', 'goodnight'], ['ugh', 'definit', 'go', 'sick', 'come', 'go', 'suck'], ['omg', 'right', 'hear', 'us', 'block', 'annoy', 'wake', 'deaf'], ['sit', 'marshal', 'center', 'must', 'realli', 'not', 'want', 'go', 'time', 'lost', 'wallet', 'n', 'id', 'not', 'go'], ['not', 'make', 'sad', 'agre', 'though', 'need', 'sa', 'magic', 'lyric'], ['not', 'wait', 'novemb', 'jobro', 'concert', 'examin'], ['wifflebal', 'damn'], ['femal', 'robin', 'flew', 'window', 'watch', 'die', 'bush', 'think', 'go', 'cri'], ['go', 'courthous', 'pay', 'tag', 'amp', 'tax', 'go', 'expens'], ['shut', 'fool', 'dontlik', 'fact', 'keep', 'abandon'], ['wish', 'could', 'one', 'go', 'confer', 'bahama', 'next', 'week'], ['sent', 'home', 'yest', 'work', 'today', 'feel', 'like', 'hell', 'burn', 'high', 'temp', 'got', 'hubbi'], ['lost', 'bowl', 'suck'], ['work', 'miss', 'home', 'news'], ['sound', 'like', 'great', 'idea', 'wish', 'could', 'make'], ['stood', 'outsiden', 'got', 'worst', 'butterfli', 'everr'], ['haha', 'nice', 'know', 'not', 'alon', 'work', 'bbc', 'not', 'see'], ['cancel', 'run', 'favour', 'stay', 'wish', 'moni', 'pubul', 'though'], ['alway', 'hungri', 'time', 'not', 'even', 'feel', 'like', 'eat', 'not', 'throat', 'sore', 'sick'], ['hour', 'sun', 'turn', 'blancmang', 'suck', 'pale'], ['tri', 'figur', 'right'], ['read', 'sim', 'genet', 'sim', 'forum', 'appar', 'hair', 'dye', 'pass', 'offspr', 'disappoint'], ['sorri', 'hear', 'make', 'sad'], ['chemistri', 'not', 'fun'], ['miss', 'brandon', 'want', 'talk', 'anthoni', 'sadsho'], ['wish', 'could', 'listen', 'canada', 'websit', 'not', 'let'], ['need', 'hug', 'dnt', 'feel', 'good'], ['feel', 'cousin', 'monkey'], ['rare', 'sleep', 'not', 'help', 'hehe'], ['poor', 'pirat', 'last', 'wisdom', 'tooth', 'look', 'realli', 'peaki'], ['might', 'not', 'enough', 'money', 'colleg'], ['hot', 'today', 'not', 'like', 'hate', 'new', 'timet', 'bad', 'week'], ['oh', 'sorri', 'hear'], ['sunburn'], ['deal', 'overact', 'right'], ['fuuck', 'not', 'know', 'andi', 'get', 'youu'], ['watch', 'ard', 'earn', 'money', 'dissapear'], ['hate', 'park', 'car', 'get', 'hit'], ['huggl', 'not', 'see', 'repli', 'right', 'away', 'boss', 'hover', 'today', 'feel', 'pissi', 'life'], ['enjoy', 'week', 'work', 'back', 'next', 'week'], ['eye', 'doctor', 'amp', 'bring', 'triniti', 'mom', 'fell', 'stair', 'today', 'amp', 'broke', 'toe', 'ugh'], ['steve', 'make', 'fruit', 'smoothi', 'day', 'amp', 'berri', 'delici', 'made', 'mine', 'today', 'amp', 'berri', 'berri', 'bad'], ['poor', 'babi', 'need', 'alo', 'nope', 'sorri', 'hint'], ['oddo', 'grandfath', 'pass', 'away', 'sleep'], ['pretti', 'awesom', 'part', 'person', 'bike', 'behind', 'said', 'hello', 'left', 'recogn'], ['white', 'shoe', 'make', 'cring', 'white', 'shoe', 'give', 'paus'], ['damn', 'not', 'show', 'peopl', 'conserv', 'blackjack'], ['watch', 'wayi', 'much', 'bever', 'hill', 'today', 'not', 'proud', 'fact', 'tv', 'fail'], ['oh', 'silenc', 'verona', 'want', 'go', 'jaja', 'enjoyyitverymuch', 'bring', 'photho', 'danni', 'dougi'], ['lil', 'sister', 'chares', 'best', 'friend', 'pass', 'today'], ['know', 'right', 'lead', 'foot'], ['mouth', 'hurt', 'stupid', 'retain'], ['joe', 'kevin', 'pic', 'new', 'pair', 'pjs', 'pmsl', 'could', 'die', 'lmfaoo', 'miss', 'boy'], ['hm', 'not', 'good', 'medium', 'much', 'respond', 'previous', 'post', 'day', 'ago', 'amp', 'convers'], ['yes', 'readi', 'go', 'got', 'ugh', 'soo', 'pretti', 'outsid'], ['great', 'camp', 'wish', 'could'], ['ooh', 'jealous', 'yoghurt', 'carrot'], ['want', 'someon', 'spend', 'summer', 'even', 'whilst', 'nice', 'relax', 'mood'], ['know', 'mean', 'rain', 'suck'], ['not', 'make', 'phone', 'call', 'hate', 'anxieti', 'crap', 'someon', 'cure'], ['got', 'copi', 'yesterday', 'although', 'right', 'dig', 'scala', 'not', 'read', 'yet'], ['want', 'go', 'back', 'school', 'sigh', 'poor'], ['miss', 'jmichell', 'told', 'treat', 'like', 'step', 'child', 'smh'], ['realiti', 'must', 'surviv', 'not', 'kill', 'make', 'stronger', 'lore'], ['expect', 'warm', 'usual', 'stuck', 'wear', 'sun', 'dress', 'cold', 'day'], ['not', 'guy', 'retard'], ['good', 'hear', 'time', 'weekend', 'work', 'though'], ['oh', 'miss', 'piano'], ['love', 'lt', 'host', 'lmao'], ['need', 'hug', 'cuz', 'garbag', 'truck', 'men', 'keep', 'drive', 'next', 'whistl', 'work', 'hard', 'graduat'], ['got', 'today', 'also', 'miss', 'friend'], ['not', 'know', 'heck', 'space', 'time', 'bgt', 'bore'], ['still', 'full', 'buffet', 'palm', 'stomach', 'actual', 'hurt', 'ugh', 'gluttoni', 'bite'], ['hate', 'go', 'onlin', 'look', 'balanc', 'bank', 'alway', 'lot', 'lower', 'need'], ['way', 'griffin', 'stapl', 'remov', 'head', 'fun'], ['need', 'hug', 'pitch', 'lacklust', 'shortstop', 'not', 'field', 'amp', 'big', 'papi', 'not', 'get', 'mendoza', 'line'], ['headach'], ['hurt', 'left', 'knee', 'somehow', 'last', 'night', 'hurt', 'walk'], ['want', 'cooki'], ['still', 'deal', 'quit', 'bit', 'pain', 'jump', 'soon', 'lay', 'frustrat', 'thank', 'ask'], ['busi', 'day', 'today', 'banburi', 'fair', 'fashion', 'show', 'tonight', 'move', 'apart', 'tomorrow', 'start', 'pack', 'yet'], ['ex', 'boyfriend', 'year', 'broke', 'month', 'ago', 'engag', 'gf', 'week', 'sad', 'embarrass', 'hug'], ['fantast', 'day', 'amaz', 'girl', 'wish', 'sara', 'not', 'go', 'home', 'fb'], ['money', 'problem', 'bad', 'day'], ['wind', 'crampin', 'style', 'section', 'yard', 'not', 'get', 'water', 'would', 'move', 'sprinkler', 'surround', 'mud'], ['slow', 'get', 'tix'], ['morn', 'rode', 'behind', 'guy', 'bird', 'cage', 'contain', 'plastic', 'tyrannosaurus', 'rex', 'attach', 'bicycl', 'could', 'not', 'get', 'photo'], ['lucki', 'still', 'work', 'anoth', 'hour'], ['oohh', 'well', 'could', 'alway', 'borrow', 'burn', 'buddi', 'lol'], ['ahh', 'soo', 'happi', 'ashley', 'tisdal', 'germani', 'not', 'oberhausen', 'show', 'tv', 'clock'], ['whew', 'move', 'freezer', 'cooler', 'lot', 'work', 'expect', 'miss', 'htc', 'roundtabl'], ['time'], ['happi', 'chines', 'total', 'disappoint', 'food', 'usual', 'good', 'fail'], ['sad', 'david', 'leav', 'tomoro', 'week'], ['heart', 'burn'], ['wish', 'could', 'afford', 'attend', 'benefit'], ['wassup', 'bad', 'day', 'not', 'good'], ['link', 'not', 'work'], ['internet', 'pain', 'slow', 'today'], ['whooaa', 'got', 'overwheolm', 'itus', 'attack', 'eat'], ['sad', 'david', 'tennant', 'left', 'not', 'particular', 'want', 'job', 'anyway'], ['not', 'not', 'know', 'reason'], ['bit', 'devast', 'lost', 'entir', 'document', 'folder', 'home', 'comput'], ['first', 'time', 'week', 'play', 'wow', 'get', 'stuck', 'quot', 'authent', 'quot'], ['appar', 'not', 'get', 'anymor', 'sad'], ['lose', 'gut', 'lol', 'serious', 'gain', 'lil', 'not', 'like', 'look'], ['oh', 'wow', 'thank', 'info'], ['great', 'final', 'meet', 'last', 'night', 'wish', 'time', 'talk', 'not', 'go', 'coffe', 'gtgs', 'though', 'day', 'job'], ['get', 'migran', 'leav', 'either', 'arthriti', 'gout'], ['webcam', 'still', 'not', 'work', 'evil', 'stuff'], ['argh'], ['kid', 'sick', 'not', 'not', 'go', 'like', 'crazi', 'stalker'], ['possibl', 'go', 'tonight', 'anyth', 'lancast', 'miss', 'baltimor'], ['need', 'hug', 'junior', 'cert', 'week', 'total', 'stress'], ['know', 'lame'], ['aww', 'hope', 'feel', 'better', 'soon'], ['sadden', 'youtub', 'chang', 'like', 'everi', 'youtub', 'kid', 'use', 'differ'], ['aww', 'wish', 'sun', 'get', 'tan', 'walk', 'go', 'mee', 'go', 'mee'], ['cricket', 'beer', 'sunshin', 'good', 'well', 'apart', 'beer', 'tablet'], ['lazi', 'day', 'awesom', 'realli', 'go'], ['rope', 'witdraw', 'full', 'effect', 'one', 'tie', 'teach', 'demo', 'one', 'play', 'worst', 'one', 'play'], ['rachael', 'make', 'want', 'cri'], ['sorri', 'not', 'reach', 'either', 'url'], ['not', 'feel', 'well', 'today', 'ugh', 'not', 'go', 'home'], ['oh', 'hella', 'forgot', 'say', 'offici', 'good', 'morn', 'like', 'hear', 'go', 'good', 'morrn', 'twittervill', 'lol'], ['yeah', 'not', 'realiz', 'bad', 'till'], ['not', 'give', 'blood', 'within', 'year', 'get', 'tattoo', 'not', 'gut'], ['go', 'hate', 'around', 'babi'], ['head', 'huwwt'], ['straighten', 'anoth', 'pound', 'though', 'seem', 'pricey'], ['ugh', 'realli', 'hot', 'today', 'alreadi', 'not', 'even', 'noon', 'yet', 'want', 'ice', 'water'], ['done', 'alreadi', 'one', 'proof', 'noth', 'fair', 'world'], ['finish', 'read', 'chuck', 'palahniuk', 'quot', 'pygmi', 'quot', 'kind', 'hate', 'realli', 'disappoint', 'pretti', 'high', 'hope', 'one'], ['yeah', 'weather', 'ruin', 'plan', 'go', 'beach', 'well'], ['ok', 'one', 'hour', 'still', 'wait', 'lose', 'patienc'], ['mail', 'someth', 'got', 'not', 'probli', 'mean', 'not', 'get'], ['guy', 'figur', 'saturday', 'realli', 'want', 'go', 'mom', 'sick', 'take', 'hospit', 'tampa'], ['hate', 'headrush'], ['luck', 'goin', 'forum', 'person', 'earth', 'not', 'goin'], ['realli', 'wish', 'someon', 'would', 'make', 'groupchat', 'theme', 'adium', 'suit', 'irc', 'ymous', 'way', 'low', 'contrast'], ['troubl', 'sync', 'iphon', 'work', 'exchang', 'email', 'help'], ['hang', 'san', 'fran', 'airport', 'got', 'hour', 'wait', 'go', 'way', 'sfo', 'wifi', 'garbag'], ['sunburn', 'knee'], ['sigh', 'not', 'sound', 'happi'], ['mood', 'shrimp', 'scampi', 'not', 'vermouth'], ['today', 'not', 'go', 'relax', 'like', 'hope'], ['got', 'haircut', 'felt', 'like', 'guy', 'quot', 'last', 'samuri', 'quot', 'forc', 'ponytail', 'cut'], ['ate', 'much', 'not', 'want', 'work'], ['yes', 'think', 'unless', 'chang', 'sent', 'happi', 'mother', 'day', 'text', 'never', 'respond', 'back'], ['got', 'tire', 'kitchen', 'uninhabit', 'swept', 'mop', 'floor', 'dri', 'work', 'top'], ['wish', 'could', 'enjoy', 'girl', 'day'], ['made', 'sure', 'got', 'credit', 'end', 'sure', 'forgot', 'peopl', 'though'], ['not', 'know', 'not'], ['never', 'order', 'chip', 'due', 'unhealthi', 'get', 'burrito', 'chipotl', 'qdoba', 'not', 'feel', 'right', 'without'], ['total', 'need', 'go', 'doctor', 'bitch', 'still', 'hurtin', 'like', 'hell', 'shall', 'return'], ['slam', 'finger', 'car', 'dor', 'fml', 'ow'], ['enjoy', 'weather', 'go', 'work', 'last', 'shift'], ['stressin', 'suppos', 'clean', 'room', 'feel', 'like', 'crap'], ['feel', 'like', 'continu', 'long', 'take'], ['not', 'believ', 'spend', 'lunch', 'break', 'insid', 'desk'], ['suffer', 'hayfev', 'drowsi', 'much', 'piriton', 'head', 'bed', 'air', 'purifi'], ['back', 'lunch', 'pour', 'rain', 'ugh', 'ohh', 'well', 'least', 'get', 'death', 'cab', 'cuti', 'mood'], ['let', 'know', 'goe', 'pray', 'ummph', 'still', 'not', 'believ'], ['finish', 'mikado', 'shut', 'lol'], ['would', 'know', 'pack', 'make', 'poor', 'lauren'], ['sushi', 'joint', 'close', 'still', 'nice', 'lunch', 'angel'], ['wish'], ['say', 'imposs', 'plurk', 'work', 'system', 'administr', 'close', 'access', 'firew'], ['feel', 'super', 'sick'], ['lt', 'googl', 'wish', 'would', 'spend', 'bit', 'time', 'ad', 'bit', 'chrome', 'though'], ['twitter', 'slow'], ['finish', 'noodl', 'done', 'dishwash', 'realli', 'realli', 'warm', 'not', 'like'], ['hate', 'pain'], ['last', 'day', 'favorit', 'quit', 'sad'], ['updat', 'tweeti', 'open', 'browser', 'still', 'broken'], ['ozzi', 'back', 'vet', 'not', 'feel', 'well', 'look', 'sad', 'possibl', 'uti', 'result', 'tomorrow'], ['wtf', 'kind', 'best', 'friend', 'still', 'not', 'met', 'hubbi', 'depress'], ['sit', 'martin', 'class', 'youtub', 'stupid', 'realli', 'want', 'popsicl', 'jealous', 'sara'], ['zoita', 'cardio', 'apt', 'doc', 'say', 'not', 'close', 'need', 'surgeri', 'close'], ['mad', 'not', 'ughh'], ['hungri', 'not', 'leav', 'lunch'], ['man', 'sinus', 'r', 'realli', 'buggin', 'morn'], ['interest', 'even', 'amongst', 'homeless', 'peopl', 'venic', 'beach', 'last', 'night', 'wish', 'camera', 'model', 'releas'], ['kind', 'headach'], ['slow', 'answer'], ['wish', 'coulda'], ['yuotub', 'link', 'deni', 'work'], ['ouch', 'stomachac', 'ate', 'lot'], ['california', 'sunni', 'not', 'make', 'kind', 'sad'], ['anyth', 'help'], ['not', 'sleep', 'amp'], ['go', 'miss', 'guy', 'much', 'thank', 'make', 'year', 'senior', 'school', 'amaz'], ['itsuck', 'everyon', 'one', 'want', 'text', 'text'], ['inoo', 'sed', 'ino', 'feel', 'coz', 'love', 'kyle', 'feel', 'like', 'saddo', 'true', 'ha', 'want', 'see', 'tuesday'], ['ok', 'one', 'orang', 'still', 'open', 'whew', 'scare', 'sorri', 'one', 'close'], ['youtub', 'made', 'fail', 'right', 'mayb', 'hate'], ['oasi', 'ribena', 'toughest', 'decis', 'everr'], ['year', 'pretti', 'sure', 'not', 'readi'], ['yarn', 'arriv', 'monday', 'not', 'even', 'know', 'shipment', 'noth', 'dye'], ['gettin', 'readi', 'trip', 'back', 'not', 'want', 'leav'], ['not', 'profession'], ['yeah', 'imagin', 'not', 'nice', 'much', 'longer', 'shift'], ['bore', 'firday', 'even', 'noth'], ['time', 'nerd'], ['ouch', 'better', 'get', 'use', 'think', 'prime', 'marriag', 'year'], ['say', 'quot', 'close', 'quot', 'not', 'mean', 'quot', 'come', 'quot', 'ffs', 'peopl', 'also', 'rip', 'polli'], ['must', 'brought', 'bad', 'weather', 'state'], ['goddamnit', 'live', 'age', 'constant', 'communic', 'not', 'anyon', 'return', 'text'], ['vacuum', 'entir', 'hous', 'three', 'time', 'screw', 'vacuum'], ['tri', 'teriyaki', 'cooki', 'though', 'got', 'non', 'win', 'great'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['cours', 'evil', 'day', 'job', 'want', 'stay', 'longer', 'need', 'win', 'lotteri'], ['wish', 'could', 'want', 'stay', 'play', 'guy', 'enjoy', 'block', 'parti'], ['jona', 'demi', 'miss', 'niick', 'soul', 'asasgdygyasdgi'], ['could', 'lost', 'dog', 'poor', 'girl'], ['panchito', 'burfday', 'parti', 'tonight', 'wish', 'kiddo'], ['damn', 'got', 'math', 'test', 'today'], ['motherfuck', 'qw'], ['feel', 'bad', 'littl', 'sister', 'put', 'lot', 'money', 'saab', 'took', 'full', 'coverag', 'last', 'week', 'total', 'yesterday'], ['unfortun', 'not', 'purpos', 'itun', 'shuffl', 'follow', 'dreadzon'], ['haha', 'yea', 'feel', 'like', 'taken', 'wrong', 'direct', 'use', 'cool', 'place', 'mess'], ['epsilon', 'greater', 'zero', 'miss', 'mommi'], ['unfortun', 'miss', 'girl', 'radio', 'tonight', 'midst', 'night', 'write', 'session'], ['drive', 'nut'], ['shit', 'friend', 'state', 'not', 'know', 'help', 'noth', 'say', 'seem', 'help', 'wish', 'knew', 'say'], ['oh', 'yeah', 'mom', 'told', 'thought', 'meant', 'twitter', 'id', 'amp', 'confus', 'suck', 'sick'], ['ommg', 'gurll', 'not', 'go', 'sad'], ['not', 'believ', 'find', 'not', 'peopl', 'contact', 'famili', 'first', 'sad'], ['sometim', 'come', 'back', 'car', 'thing', 'suck', 'feel', 'anxious', 'yucki'], ['good', 'luck', 'servic', 'tomorrow', 'wish', 'could', 'see', 'guy', 'vacat'], ['anyon', 'pleas', 'say', 'hello', 'feel', 'lone'], ['realli', 'think', 'stay', 'till', 'tomorrow', 'back', 'philli', 'want', 'stay', 'bad'], ['aw', 'toy', 'stori', 'come', 'next', 'year'], ['cut', 'hand', 'open'], ['ha', 'not', 'know', 'stand', 'anyth', 'rough', 'today', 'hurt', 'talk'], ['far', 'want', 'go', 'home'], ['molli', 'keep', 'punch', 'cuz', 'see', 'yellow', 'car', 'go', 'cover', 'bruis', 'not', 'like', 'game'], ['headach', 'heat'], ['way', 'lake', 'geneva', 'miss', 'laura'], ['go', 'one', 'upset', 'daughter', 'rat', 'took', 'sudden', 'turn', 'wors', 'not', 'make'], ['not', 'feel', 'good', 'today'], ['dude', 'lol', 'chris', 'brown', 'live', 'far', 'apart', 'afraid', 'fli'], ['get', 'nice', 'food', 'mam', 'bay', 'like', 'room', 'tonight', 'b', 'not', 'mingin', 'burger', 'kitchen'], ['teeshirt', 'faar', 'small', 'like', 'much', 'stop', 'wear'], ['awessome', 'cut', 'hurr', 'give', 'massag', 'orr', 'alki', 'foodtour', 'yeaah', 'amp', 'pray', 'cousin'], ['yes', 'not', 'understand', 'mean', 'know', 'hollywood', 'thing', 'call', 'love'], ['miss', 'friggin', 'hair', 'appt'], ['good', 'dayi', 'shop', 'not', 'get', 'want', 'though', 'best', 'friend', 'come', 'home', 'xd', 'ili', 'shannii', 'x'], ['want', 'soldier', 'come', 'home', 'not', 'hear', 'anymor', 'kill'], ['problem', 'flash', 'not', 'gpu', 'acceler', 'atom', 'not', 'play', 'youtub', 'hd', 'hulu', 'hd', 'fullscreen', 'big', 'deal', 'plex'], ['hillsong', 'tom', 'night', 'dad', 'birthday', 'wish', 'could', 'see', 'birthday', 'though'], ['aww', 'wish', 'safe', 'gone', 'n', 'hug', 'must', 'hard', 'say', 'goodby'], ['degre', 'centigrad', 'much', 'hotter', 'degre', 'centigrad'], ['not', 'good', 'funer', 'cri', 'way', 'contagi'], ['want', 'soldier', 'come', 'home', 'not', 'hear', 'anymor', 'kill'], ['littl', 'bit', 'upset', 'peopl'], ['pretti', 'sure', 'sat', 'wrong', 'train', 'go', 'wrong', 'way', 'bah'], ['handwrit', 'not', 'everyon', 'make', 'fun', 'sit', 'myseld', 'lrc'], ['bed', 'sick', 'heavi', 'fever', 'went', 'dr', 'part', 'reason', 'watch', 'aladdin', 'still', 'not', 'fed'], ['not', 'get', 'feel', 'fine', 'yesterday', 'ball', 'sick', 'hate', 'flu'], ['fml', 'spill', 'entir', 'diet', 'coke', 'lap', 'yay'], ['done', 'plant', 'sun', 'shine', 'soon'], ['feel', 'sick', 'probabl', 'summer', 'flu'], ['ughh', 'miley', 'creatur', 'song', 'infest', 'brain'], ['oh', 'dear', 'sunburn', 'back'], ['yeah', 'need', 'sick'], ['frustrat', 'pictur', 'not', 'load'], ['wheater', 'austria', 'bad', 'whole', 'weekend', 'sorri'], ['miss', 'cousin', 'much'], ['could', 'not', 'respond', 'cuz', 'max'], ['hate', 'cat', 'pee'], ['confus', 'weather', 'realli', 'go', 'sunni', 'realli', 'go', 'rain'], ['creas', 'nike', 'ohh', 'well'], ['arrghh', 'stupid', 'eczema', 'go', 'soon', 'sort'], ['hate', 'life'], ['hate', 'khaki', 'pant', 'project', 'todayi'], ['know', 'law', 'rebel', 'small', 'thing'], ['send', 'messag', 'greg', 'time', 'answer', 'ok', 'still', 'love', 'amp', 'goog', 'luck', 'move', 'eri'], ['runni', 'nose', 'not', 'breath', 'terribl', 'feel'], ['iphon', 'today', 'want', 'see', 'morn', 'virginia', 'beach', 'not', 'think', 'get'], ['oh', 'go', 'break', 'up', 'guy', 'move'], ['sorri', 'not', 'like', 'girl', 'way'], ['soo', 'not', 'funni', 'move', 'comput', 'comput', 'render', 'draw', 'come', 'revit', 'autocad', 'never', 'bad'], ['fuck', 'clean', 'whole', 'asshol', 'come', 'home', 'amp', 'go', 'make', 'mess', 'mom', 'not', 'even', 'get', 'see'], ['beauti', 'day', 'ocracok', 'hope', 'thunderstorm', 'stay', 'away', 'not', 'look', 'good'], ['john', 'make', 'wear', 'mask', 'glove', 'work', 'sick', 'say', 'not', 'want', 'catch', 'swine', 'flu'], ['lmao', 'boss', 'ross', 'not', 'come', 'love', 'man', 'truth'], ['cruis', 'quot', 'serious', 'eat', 'ny', 'quot', 'not', 'bode', 'well', 'futur', 'miss', 'nyc', 'gastronom', 'tour'], ['hut', 'face', 'hammer', 'earlier', 'accid', 'obvious', 'hurt'], ['bore', 'lone', 'work'], ['stratus', 'go', 'bye', 'bye', 'today', 'love', 'car', 'high', 'school', 'fb'], ['ran', 'worm', 'skate', 'poor', 'wormi', 'glad', 'back'], ['gas', 'plus', 'money', 'desper', 'word', 'day'], ['balanc', 'unfortun', 'not', 'abl', 'find', 'card', 'limit', 'high', 'enough', 'transfer', 'whole', 'thing'], ['final', 'ef', 'internet', 'effin', 'need', 'updat', 'wifi', 'sg', 'mall', 'not', 'know', 'miss', 'dada', 'craigi'], ['sorri', 'hear'], ['thank', 'god', 'elton', 'allow', 'see', 'new', 'tw', 'trailer', 'sinc', 'work', 'block', 'youtub', 'lj'], ['apolog', 'not', 'fix', 'hurt', 'feel', 'kev', 'anyway', 'get', 'next', 'time', 'c'], ['most', 'sick', 'went', 'bed', 'woke', 'feel', 'most', 'dead'], ['la', 'unifi', 'summer', 'school', 'drastic', 'cut', 'due', 'ca', 'budget', 'cut', 'sad'], ['bore', 'work'], ['ooc', 'sorri', 'keep', 'miss'], ['not', 'find', 'go', 'sleepless', 'night', 'tonight'], ['good', 'hang', 'dad', 'look', 'job', 'still'], ['want', 'roc', 'imi', 'buu'], ['moment', 'foward', 'go', 'spend', 'money', 'wise', 'dress', 'shoe', 'shop', 'everi', 'week', 'pig', 'fav', 'rest'], ['hate', 'everyth', 'seafood', 'happen', 'serv', 'lobster', 'chow', 'hall', 'nooww', 'got', 'headach', 'ugh', 'smh'], ['gosh', 'anoh', 'cloudi', 'day', 'wish', 'would', 'go', 'away', 'rain'], ['weather', 'hous', 'paint', 'go', 'drag', 'till', 'next', 'week'], ['reealli', 'wish', 'could', 'not', 'n', 'goin', 'late'], ['bad', 'need', 'stop', 'think'], ['deathmatch', 'not', 'game', 'plus', 'not', 'realli', 'good', 'game', 'lol'], ['stress', 'fro', 'work', 'drink'], ['littl', 'felt', 'thing', 'look', 'like', 'incestu', 'product', 'two', 'love'], ['tri', 'soo', 'hard', 'work', 'home', 'today', 'fail', 'not', 'fault', 'though'], ['condol'], ['yeah', 'yesterday', 'found', 'hous', 'want', 'sold', 'bank', 'ef', 'car', 'accid'], ['know', 'drizzl', 'way', 'work', 'hope', 'warm', 'weekend'], ['realli', 'wish', 'could', 'go'], ['miss', 'never', 'want', 'come'], ['got', 'hospit', 'jimmi', 'realli', 'pleas', 'send', 'good', 'thought', 'realli', 'worri'], ['depend', 'want', 'becom', 'poor'], ['miss', 'hope', 'well', 'send', 'big', 'hug'], ['ok', 'home', 'made', 'pizza', 'tonight', 'horror', 'run', 'anchovi'], ['lol', 'dammit', 'well', 'next', 'time'], ['screw', 'phone', 'broken', 'not', 'bother', 'text'], ['got', 'go', 'doctor', 'morn', 'feel', 'sick', 'right', 'bare', 'talk', 'still', 'yell', 'across', 'hous', 'lol'], ['kickbox', 'class', 'today', 'pretti', 'bum', 'still', 'go', 'work', 'hard'], ['not', 'feel'], ['ugh', 'miss', 'potus', 'five', 'guy', 'block', 'hous', 'block', 'job'], ['wear', 'exact', 'cloth', 'use', 'wear', 'canada', 'beani', 'touqu', 'ahh', 'bring', 'back', 'memori', 'miss', 'snow'], ['go', 'miss', 'much', 'cri', 'right'], ['fourteen', 'hour', 'later', 'still', 'worst', 'allergi', 'life', 'shoot', 'engag', 'session', 'field', 'last', 'night'], ['got', 'back', 'bbq', 'got', 'sunburn', 'leg', 'well', 'sore'], ['wah', 'go', 'miss', 'bowi', 'peopl', 'esp', 'alyanna', 'bondoc', 'lt', 'cesar', 'lt', 'not', 'know', 'surviv', 'without', 'sosa'], ['power', 'cut', 'went'], ['would', 'done', 'legless', 'stillborn', 'spaniel', 'idea', 'sad', 'later', 'strawberri', 'dead', 'puppi'], ['hous', 'bust', 'hous', 'smell', 'like', 'bowl', 'alley', 'maad', 'gross', 'hous', 'need', 'new', 'roof', 'basement'], ['beneath', 'show', 'got', 'cancel', 'bummer', 'guess', 'not', 'see', 'til', 'cornerston', 'goign'], ['get', 'boy', 'doc', 'persist', 'cough', 'not', 'good'], ['lunch', 'not', 'alreadi', 'hungri'], ['thank'], ['need', 'share', 'love', 'us', 'still', 'rock', 'gear'], ['aw', 'onlin', 'portugues', 'test'], ['must', 'fool', 'twitterland', 'not', 'get', 'retweet', 'sadsvill'], ['jealous', 'right', 'hate', 'new', 'england', 'weather'], ['fight', 'migrain', 'medic', 'almost', 'work'], ['man', 'french', 'open', 'week', 'not', 'opportun', 'catch', 'singl', 'match'], ['yeah', 'not', 'suck', 'work', 'nano', 'take', 'music', 'sad'], ['wish', 'could', 'seen', 'nephew', 'graduat', 'kindergarten'], ['way', 'home', 'dood', 'not', 'think', 'crappi', 'vodafon', 'gprs', 'handl'], ['bad', 'luck'], ['f', 'work', 'want', 'somebodi', 'come'], ['love', 'fli', 'live', 'chat', 'not', 'like', 'sick'], ['bushidokan', 'class', 'got', 'cancel', 'sign', 'karat', 'someplac', 'els'], ['jon', 'last', 'yr', 'interest', 'quot', 'question', 'agil', 'quot', 'agil', 'session', 'not', 'see', 'yr', 'schedul'], ['wat', 'good', 'miss', 'alreadi'], ['come', 'everyon', 'seem', 'make', 'much', 'money'], ['not', 'feel', 'good', 'sick', 'stomach'], ['redskin', 'releas', 'jon', 'jansen', 'guy', 'put', 'ton', 'sweat', 'bruis', 'team', 'miss'], ['got', 'back', 'arizona', 'yesterday', 'move', 'furnitur', 'stuff', 'arizona', 'hous', 'ship', 'redwood', 'citi', 'sad'], ['head', 'starbuck', 'go', 'take', 'bus', 'paradis', 'starbuck', 'miss', 'minut'], ['good', 'day'], ['meet', 'lincoln', 'squar', 'bummer', 'free', 'park'], ['lil', 'sad', 'look', 'like', 'nomor', 'brooklyn', 'wtf'], ['feel', 'sudden', 'like', 'stomach', 'not', 'readi', 'resum', 'peristalsi', 'event', 'two', 'night', 'prior'], ['quot', 'catch', 'quot', 'dvd', 'rent', 'yesterday', 'crack', 'figur', 'minut', 'movi'], ['oh', 'accord', 'laineygossip', 'taylena', 'fame', 'gosh', 'poor', 'two', 'heartbreak', 'row'], ['listen', 'album', 'youtub', 'awesom', 'not', 'buy'], ['poor', 'poor', 'mouth'], ['weird', 'mayb', 'updat', 'not', 'sent', 'phone', 'haha'], ['go', 'work', 'one', 'suck', 'miss', 'happi', 'hour', 'sonic'], ['not', 'believ', 'almost', 'got', 'put', 'rescu', 'group', 'went', 'got'], ['snap', 'break'], ['worri', 'sam', 'want', 'know', 'okay'], ['gratz', 'tix', 'suck', 'poor', 'though', 'tri', 'get', 'pj', 'harvey', 'tix', 'debat'], ['total', 'want', 'white', 'chocol', 'macadamia', 'cooki', 'field', 'mall', 'soo', 'far', 'away', 'bleh', 'think', 'make'], ['abl', 'creat', 'itun', 'account', 'longer', 'redeem', 'kris', 'allen', 'album', 'note', 'said', 'got', 'cancel'], ['yeah', 'think', 'touch', 'someth', 'mike', 'germ', 'sore', 'throat', 'dammit', 'knew', 'not', 'gone'], ['realli', 'mad', 'forget', 'may', 'deadlin', 'mile', 'award', 'trip', 'south', 'america'], ['wat', 'stress', 'week', 'jus', 'hope', 'everyth', 'fall', 'place'], ['wonder', 'clumsi', 'late'], ['aww', 'thatss', 'well', 'sad', 'x'], ['mean', 'portfolio', 'sad', 'luck', 'appli', 'place', 'far'], ['piec', 'photo', 'quilt', 'boe', 'employe', 'hung', 'huntington', 'beach', 'sad', 'mani', 'peopl', 'quilt', 'pic', 'laid'], ['york', 'v', 'lanc', 'telli', 'not', 'go', 'well', 'yorkshir'], ['piss', 'annoy', 'date', 'stamp', 'pictur', 'wish', 'would', 'rememb', 'turn'], ['think', 'open', 'macmaz', 'sourc', 'not', 'time', 'work', 'anymor'], ['ruin', 'lunch', 'eat', 'half', 'bag', 'cheddar', 'feel', 'sick'], ['hate', 'midget', 'smfh', 'dream', 'fightin', 'ln', 'boston', 'market', 'turbul', 'kept', 'head', 'bunt'], ['wish', 'pitchfork', 'would', 'shutup', 'primavera', 'make', 'miss', 'spain'], ['offic', 'make', 'comput', 'feel', 'better'], ['work', 'sick', 'ok', 'mall'], ['say', 'goodby', 'year', 'awesom', 'help', 'fit', 'team', 'verita'], ['yeah', 'sad'], ['today', 'aba', 'full', 'emot', 'tear', 'asd', 'autism', 'day', 'harder', 'other', 'hard', 'not', 'interven', 'poor', 'babi'], ['miss', 'coffe'], ['okay', 'sum', 'reason', 'not', 'lettin', 'vote'], ['makin', 'tea', 'stressin'], ['jus', 'got', 'back', 'run', 'sunset', 'blvd', 'cuzin', 'tri', 'kill', 'leg', 'still', 'movin', 'sittin'], ['not', 'forget', 'nash', 'disappoint', 'sun', 'fan'], ['ugh', 'anoth', 'quot', 'day', 'today', 'quot', 'utter', 'word', 'last', 'week', 'miss', 'yr', 'old', 'birthday', 'amp', 'even', 'ical'], ['truck', 'bit', 'dust', 'not', 'know', 'make', 'mustang', 'game', 'tomorrow'], ['wish', 'knew', 'someon', 'could', 'hook', 'us', 'friend', 'told', 'got', 'crappi', 'seat', 'show', 'chi'], ['yea', 'someon', 'get', 'best'], ['trouser', 'damp'], ['cop', 'tell', 'tori', 'dad', 'may', 'never', 'find', 'remain'], ['wish', 'go', 'internet', 'week'], ['said', 'mention', 'bear', 'fun', 'bear', 'like', 'peanut', 'butter'], ['well', 'sound', 'delici', 'lay', 'patio', 'tom', 'san', 'pool', 'enjoy', 'burger'], ['also', 'hang', 'right', 'bore', 'hahaha', 'not', 'work', 'today', 'differ', 'hour', 'money', 'lol', 'whatev'], ['found', 'schoolmat', 'die', 'heart', 'attack', 'morn', 'bare', 'miss', 'balli'], ['turn', 'thing', 'felt', 'forgiv', 'remould', 'cut'], ['wish', 'noww', 'grr'], ['hi', 'guy', 'da', 'usael', 'notmuch', 'realli', 'lt', 'sad'], ['haha', 'would', 'cute', 'nobodi', 'ever', 'come', 'visit', 'god', 'damn', 'lake', 'geneva', 'far', 'civilizati'], ['might', 'end', 'like', 'poor', 'bus', 'driver', 'kind', 'weird', 'wish', 'today'], ['would', 'far', 'away'], ['still', 'melt', 'hous', 'shade', 'not', 'fair'], ['one', 'interest', 'special', 'popcorn', 'stale', 'wast', 'go', 'find', 'homeless', 'person', 'give'], ['slim', 'edc', 'lineup'], ['siickk', 'dun', 'feel', 'good'], ['lunch', 'boringg', 'drive', 'school', 'today', 'ugh', 'hope', 'better', 'dodd'], ['jet', 'blue', 'okay', 'guess', 'cancel', 'flight', 'not', 'lot', 'backup', 'plane', 'first', 'class'], ['ugh', 'fricken', 'internet', 'like', 'work', 'without', 'want', 'back', 'colleg', 'connect'], ['eesh', 'sorri', 'hear', 'not', 'go', 'make', 'travel', 'michigan', 'fun'], ['need', 'motiv', 'life', 'oh', 'love', 'would', 'nice'], ['harrump', 'gag', 'beer', 'noon', 'want', 'play'], ['soo', 'sunburnt', 'mum', 'earlier', 'wait', 'get', 'fell', 'asleep', 'trampolin', 'hour', 'sun'], ['ugh', 'bad'], ['realli', 'not', 'woth', 'f', 'ck', 'not', 'anythin', 'right', 'wrong'], ['post', 'guitar', 'hero', 'ass', 'kick'], ['becoz', 'leg', 'sprain', 'nta', 'ble', 'proper', 'wrkout', 'worri', 'shud', 'dis', 'hapen', 'wen', 'satrt', 'diet'], ['hi', 'everybodi', 'sorri', 'long', 'listen', 'iwa', 'busi'], ['happen', 'three', 'week', 'ago', 'serial', 'card', 'fraudster', 'loos'], ['phone', 'broken', 'amp', 'lazi', 'go', 'verizon', 'store', 'get', 'new', 'one', 'oh', 'well', 'guess', 'phone', 'awhil', 'aha'], ['want', 'hang', 'play', 'not', 'fiddl', 'faddl', 'workload'], ['think', 'wrong', 'stuf', 'breath', 'feel', 'like', 'sore', 'throat'], ['gosh', 'miss', 'singer', 'theater', 'miss', 'learn', 'music', 'act', 'exercis', 'n', 'especi', 'miss', 'onstag'], ['oh', 'noe', 'tv', 'broken', 'red', 'standbi', 'light', 'anyth', 'check', 'plug', 'fuse', 'insid'], ['omg', 'sorri', 'hear', 'realli', 'need', 'talk', 'someon', 'alway', 'shoulder', 'lean'], ['poop', 'pennsylvania', 'rest', 'stop', 'hate', 'use', 'public', 'toilet'], ['oh', 'god', 'yeah', 'forgot'], ['go', 'suck', 'sober', 'one', 'tonight'], ['well', 'mayb', 'someon', 'care'], ['headach', 'not', 'go', 'away'], ['spent', 'hour', 'morn', 'go', 'yearbook', 'see', 'senior', 'start', 'harleton', 'speech', 'bore'], ['got', 'new', 'brew', 'buddi', 'kitchen', 'go', 'smell'], ['lt', 'lt', 'chose', 'wrong', 'career'], ['sorri', 'not', 'best', 'day', 'neither', 'though', 'work', 'tonight'], ['feel', 'bad', 'profil', 'pic'], ['hate', 'work', 'sunni', 'boohoo'], ['laugh', 'today', 'hope', 'thing'], ['not', 'avail', 'area', 'would'], ['sad', 'robot', 'song', 'librari'], ['want', 'go', 'outsid', 'play', 'sunshin', 'sit', 'front', 'comput', 'day', 'least', 'lunch', 'patio'], ['not', 'like', 'chang', 'feel', 'like', 'googl', 'send', 'email', 'tell', 'thing', 'gunna', 'phone'], ['hi', 'pretti', 'man', 'not', 'upload', 'pic', 'reason', 'wrote', 'wish', 'find', 'women'], ['want', 'bad', 'go', 'mcfli', 'concert'], ['clean', 'find', 'stuff', 'sell', 'poor'], ['sleep', 'interupt', 'damn', 'univers', 'say', 'get', 'intil', 'thougth', 'would', 'sleep'], ['tonight', 'parti', 'girl', 'minus', 'vita'], ['hollyoak', 'curs', 'justin', 'strike', 'date', 'burton', 'end', 'screw', 'poor', 'sod'], ['hate', 'go', 'miss', 'tweet', 'weekend'], ['mii', 'shit', 'mii', 'dude'], ['forgot', 'charg', 'cell', 'last', 'night', 'dead'], ['write', 'essay', 'colleg', 'write', 'bore'], ['want', 'longboard', 'rain', 'ughh'], ['oh', 'use', 'intern', 'sig', 'extern', 'damn', 'fb'], ['yess', 'flash', 'shitti', 'tonight'], ['not', 'feel', 'good', 'today'], ['miss', 'puppi'], ['not', 'know', 'go', 'love', 'skinni', 'jean'], ['yes', 'go', 'sophmor', 'colleg', 'geez', 'not', 'get', 'job', 'everyon', 'think', 'fifteen'], ['terribl', 'cartoon', 'suppos', 'mexican'], ['want', 'bad', 'go', 'mcfli', 'concert', 'anybodi', 'go'], ['rofl', 'problem', 'two', 'hand'], ['look', 'much', 'better', 'short', 'hair'], ['woke', 'feel', 'damn', 'lazi', 'time', 'work', 'damnit'], ['ah', 'rememb', 'day', 'would', 'sleep', 'noon', 'well', 'guess', 'today', 'god', 'feel', 'like', 'loser'], ['feel', 'need', 'advil'], ['lol', 'stay', 'craig', 'got', 'footi', 'molli', 'miss', 'good', 'weather', 'buggi', 'either'], ['watchin', 'justin'], ['not', 'funni', 'profil', 'ass', 'like', 'wtf', 'still', 'kind', 'heat', 'ugh'], ['ohh', 'ouch', 'dude', 'got', 'drunk', 'last', 'night', 'not', 'get', 'context', 'sorri', 'dude'], ['goodby', 'picnic', 'classmat', 'today', 'weather', 'fuck', 'beautifuul'], ['proof', 'heat', 'good', 'day', 'wish', 'not', 'spent', 'bed'], ['school', 'go', 'miss', 'bunch', 'peopl'], ['not', 'sure', 'tweet', 'busi', 'simpl', 'thing', 'difficult'], ['god', 'creat', 'man', 'also', 'believ', 'creat', 'million', 'peopl', 'get', 'ya', 'tit', 'laff'], ['forgot', 'answer', 'kindl', 'question', 'yesterday', 'honest', 'not', 'use', 'much', 'two', 'paperback', 'book', 'want', 'read', 'first'], ['electron', 'key', 'stop', 'work', 'keyhol', 'not', 'get', 'car', 'much', 'technolog'], ['got', 'sunburn', 'arm', 'better', 'news', 'new', 'guitar', 'hero', 'metallica', 'game', 'came', 'beyond', 'happi'], ['also', 'wast', 'time', 'til', 'cab', 'get', 'spamspamspam', 'also', 'keith', 'motorbik', 'nick', 'well', 'shit'], ['hate', 'crowd'], ['weekend', 'sunni', 'got', 'anoth', 'punctur'], ['feel', 'urself', 'much', 'not', 'say', 'hi', 'likey'], ['ouch', 'sorri'], ['road', 'hour', 'ahead', 'beauti', 'girl', 'behind'], ['sad', 'neighbor', 'cut', 'tree', 'around', 'hous', 'look', 'pretti', 'seem', 'healthi', 'tragic'], ['not', 'think', 'friend', 'like', 'anymor', 'via', 'zenjar'], ['ohno', 'icki'], ['throat', 'hurt'], ['know', 'excit', 'not', 'go', 'earlierr', 'afternoon', 'love', 'tooz', 'lt'], ['problem', 'send', 'imag', 'twitterberri', 'mine', 'not', 'want', 'work', 'xx'], ['warren', 'hannah', 'dead', 'oh', 'godd', 'seriousslyy', 'tragidi'], ['anyon', 'super', 'nintendo', 'control', 'want', 'sell', 'mine', 'broke'], ['suck', 'think', 'account', 'mad', 'moni', 'middleschool', 'cafeteria', 'manag'], ['old', 'dead', 'gone'], ['guy', 'dead', 'not', 'load'], ['someon', 'would', 'give', 'speech', 'love', 'one', 'hospit', 'stupid', 'comm', 'class'], ['would', 'love', 'zoo', 'p', 'not', 'think', 'sunday', 'sometim', 'want'], ['sorri', 'readi', 'leav'], ['bad', 'day', 'gyah', 'car', 'teeth', 'miser', 'forgot', 'pack', 'lunch', 'get', 'new', 'car'], ['thought', 'would', 'check', 'home', 'minut', 'ago', 'download', 'updat', 'home', 'not', 'bother', 'soni'], ['problem', 'blackberri', 'ugh', 'need', 'anoth', 'charg', 'batteri', 'least'], ['hate', 'dentist'], ['haha', 'suck', 'actual', 'mine', 'wors', 'mine', 'ft', 'math', 'eww'], ['aim', 'not', 'work', 'due', 'network', 'problem'], ['tall', 'up', 'down', 'leg', 'pain'], ['beauti', 'bike', 'not', 'run', 'car', 'hit', 'run', 'biketo'], ['oh', 'gosh', 'hollyoak', 'sad', 'tonit'], ['way', 'mani', 'peopl', 'cri', 'school', 'picnic', 'decid', 'want', 'go', 'back', 'go', 'public', 'confus', 'sad'], ['carol', 'vorderman', 'cancel', 'interivew', 'proof'], ['bit', 'tongu', 'soo', 'swollen'], ['ugh', 'back', 'reno'], ['slight', 'disturb', 'hollyoak', 'tonight', 'realli', 'not', 'think', 'someth', 'shown'], ['got', 'notifi', 'podcast', 'accept', 'itun', 'cours', 'realiz', 'miss', 'format', 'fix'], ['work', 'graduat', 'shame'], ['wait', 'long', 'buy', 'pink', 'ticket', 'go', 'nose', 'bleed', 'sad', 'take', 'binocular'], ['spent', 'hour', 'tri', 'get', 'newborn', 'bird', 'front', 'garden', 'fli', 'poor', 'babi', 'success'], ['lif', 'wat', 'hate'], ['feel', 'effect', 'spring', 'sinus', 'kill'], ['sorri', 'bad', 'week', 'feel', 'like', 'could', 'get', 'good', 'sleep', 'would', 'much', 'better', 'fog'], ['def', 'see', 'ya', 'tonight', 'must', 'get', 'right', 'photo', 'not', 'get', 'yesterday', 'lol', 'thank', 'pleas', 'not', 'forget'], ['endodontist', 'abl', 'without', 'remov', 'hope', 'ceram', 'crown', 'not', 'shatter', 'time', 'later'], ['today', 'nice', 'posit', 'fun', 'day', 'sever', 'week', 'bum', 'day'], ['one', 'love', 'brittani', 'forgot', 'flower'], ['photoshop', 'not', 'let', 'save', 'anyth', 'due', 'disk', 'error', 'blend', 'took', 'hour'], ['realli', 'not', 'feelin', 'well'], ['aww', 'bb', 'sound', 'lone', 'want', 'drive', 'snuggl'], ['think', 'june', 'gloom', 'arriv'], ['think', 'would', 'die', 'play', 'pushit', 'miss', 'came', 'last', 'time', 'isi', 'tour'], ['sorri', 'not', 'get', 'see'], ['hi', 'angela', 'check', 'email', 'need', 'one', 'thing', 'sorri', 'day'], ['today', 'go', 'slower', 'time', 'drag'], ['urghh', 'go', 'project', 'not', 'want', 'wast', 'valuabl', 'weekend', 'time'], ['follow', 'follow', 'nice'], ['doubt', 'boo', 'alway', 'leav', 'behind', 'awesom', 'roadtrip'], ['poor', 'thing'], ['anyon', 'yucki', 'new', 'throwback', 'pepsi', 'mountain', 'dew', 'yet', 'plan', 'keep', 'around', 'not', 'drink'], ['still', 'not', 'care', 'quot', 'milk', 'quot', 'thought', 'bore'], ['want', 'dm', 'back', 'could', 'not', 'cuz', 'not', 'follow', 'thankss', 'anyway', 'mayb', 'ill', 'see', 'ya', 'around'], ['buy', 'lunch', 'get', 'pay', 'cut', 'next', 'month'], ['almost', 'readi', 'new', 'beta', 'found', 'showstop', 'bug', 'pleas', 'standbi'], ['ran', 'accela', 'unit', 'test', 'first', 'time', 'year', 'fail'], ['yeah', 'thought', 'littl', 'warn', 'guy', 'not', 'miss', 'shift', 'break', 'sure'], ['say', 'quot', 'video', 'quot', 'wtf'], ['sad', 'tea', 'oatmeal', 'cold'], ['lame', 'said', 'hello'], ['sorri'], ['dido', 'quot', 'us', 'littl', 'god', 'quot', 'quot', 'let', 'stop', 'fill', 'quot', 'make', 'panic'], ['yeah', 'feel', 'anyth', 'rememb', 'look', 'loopt', 'phone', 'nigga', 'coughin'], ['thank', 'gnite', 'thank', 'photo', 'sim', 'heart', 'broken'], ['finish', 'new', 'moon', 'woo', 'want', 'next', 'one'], ['danni', 'cut', 'beauti', 'curl'], ['saw', 'half', 'rro', 'staff', 'walk', 'not', 'see'], ['sad', 'right', 'becuz', 'ladi'], ['time', 'leav', 'passiv', 'agress', 'note', 'owner', 'not', 'dog', 'fault', 'shitti', 'owner'], ['lone', 'day', 'baguio'], ['feel', 'better'], ['know', 'feel'], ['hahah', 'not', 'valley', 'cool', 'valley', 'texa', 'valley', 'grand', 'valley', 'ahhaha', 'wish', 'live', 'california', 'valley'], ['much', 'buy', 'awesom', 'new', 'phone', 'soni', 'ericsson', 'berri', 'like', 'everyon', 'els'], ['got', 'dread', 'call', 'babysitt', 'littl', 'h', 'bump', 'head', 'sitter', 'say', 'fine', 'goos', 'egg', 'go', 'fast'], ['boo', 'listen'], ['want', 'rain', 'go', 'away', 'much', 'late'], ['aww', 'sorri', 'home', 'hope', 'ok', 'love', 'ya', 'wifey', 'lt', 'xx'], ['get', 'nerv', 'not', 'chang', 'pic'], ['wish', 'not', 'close'], ['wow', 'kind', 'bother', 'jon', 'deposit', 'appar', 'keep', 'get', 'fuck', 'time', 'deposit', 'hard'], ['imposs', 'watch', 'full', 'flash', 'video', 'mac'], ['realli', 'ill', 'not', 'well', 'week', 'got', 'bad', 'viral', 'infect'], ['want', 'dog', 'cat', 'someth', 'want', 'someth', 'unconditon', 'love', 'not', 'materialist', 'famili', 'memeb'], ['dollhous', 'save', 'come', 'back', 'anoth', 'season', 'bad', 'scrub', 'not'], ['love', 'use', 'remot', 'access', 'use', 'desktop', 'laptop', 'back', 'emerg'], ['go', 'tmobil', 'need', 'new', 'phone', 'not', 'work', 'anymor'], ['poor', 'kitti', 'noth', 'done', 'hope', 'least', 'abl', 'find', 'good', 'home'], ['not', 'make', 'smite', 'yeah', 'yeah', 'realli', 'cuti'], ['know', 'list', 'miss', 'conflict', 'plan', 'go'], ['man', 'not', 'know', 'wtf', 'talkin'], ['incred', 'worri', 'stanley'], ['gut', 'hollyoak', 'xx'], ['ha', 'found', 'new', 'cocktail', 'danc', 'wench', 'cranberri', 'juic', 'spice', 'rum', 'sound', 'nice', 'not', 'cranberri', 'juic'], ['hey', 'socialmediatv', 'ugh', 'way', 'video', 'gt', 'blah', 'pout', 'social', 'media', 'tv', 'live', 'gt'], ['not', 'sit', 'weird', 'pc', 'know', 'go', 'hit', 'deck', 'get'], ['miss', 'someon', 'haayi'], ['pleas', 'send', 'youtub', 'link', 'erin', 'watch', 'cook', 'not', 'get', 'see', 'cowboy'], ['content', 'content', 'content', 'gah', 'stori', 'life', 'right', 'thank', 'remind', 'tweet'], ['dnt', 'get', 'go', 'play', 'lasertag', 'besti', 'old', 'dead', 'gone'], ['bloodi', 'sunburn'], ['oh', 'opera', 'not', 'googl', 'friend', 'weep'], ['start', 'spoil', 'pug', 'sinc', 'brother', 'max', 'pass', 'away', 'tuesday', 'miss'], ['tummi', 'hurt', 'oh', 'noe'], ['sad', 'casu', 'everyon', 'go', 'seper', 'way', 'never', 'go', 'see', 'friend'], ['annoy', 'overwhelm'], ['realli', 'sick'], ['never', 'answer', 'back'], ['smh', 'play', 'dress', 'lol', 'not', 'see', 'vid', 'though', 'not', 'work'], ['potluck', 'daniell', 'take', 'veggi', 'tray', 'miss'], ['wow', 'slept', 'till', 'good', 'job'], ['game', 'bad', 'leav', 'hi'], ['special', 'alreadi', 'burned', 'wore', 'mum', 'shoe', 'well', 'blister', 'suck', 'ball'], ['go', 'buy', 'deck', 'sleev', 'card', 'page', 'man', 'page', 'expens', 'stupid', 'organ', 'collect'], ['california', 'budget', 'deficit', 'billion', 'mean', 'big', 'problem', 'lot', 'cut', 'includ', 'state', 'park'], ['burn', 'tongu', 'workk'], ['lupo', 'bit', 'far', 'methink', 'love', 'hour', 'way', 'provid', 'love', 'provid'], ['site', 'first', 'date', 'macri', 'deli', 'close', 'lunch', 'favorit', 'local', 'greek', 'spot', 'trojan', 'hors', 'instead'], ['soo', 'hungri', 'right', 'not', 'lunch', 'time'], ['pool', 'orlando', 'got', 'new', 'kick', 'go', 'seaworld', 'tommrow', 'miss', 'best', 'friend'], ['jus', 'skin', 'knee', 'wat', 'hurt', 'lyke', 'hell', 'though', 'alway', 'tha', 'littl', 'one', 'hurt', 'tha'], ['sad', 'come', 'pooch', 'hall', 'game', 'not', 'accept', 'friend', 'request', 'facebook', 'yet'], ['oh', 'sick', 'feel', 'kind', 'sick', 'hate', 'overcast', 'weather'], ['sorri', 'hear', 'dude', 'prob', 'much'], ['go', 'arthroscopi', 'repair', 'knee'], ['yeah', 'stomach', 'bug', 'someth', 'fever', 'etc', 'not', 'fun'], ['woke', 'came', 'realize', 'put', 'much', 'want', 'need', 'drop', 'friend', 'dammit'], ['anoth', 'interview', 'pleas', 'somebodi', 'hire', 'late'], ['sigh', 'metal', 'friend', 'keep', 'plan', 'stuff', 'sunday', 'afternoon', 'work', 'feel', 'like', 'lose', 'touch'], ['depress', 'help'], ['oh', 'male', 'stripper', 'lmao'], ['low', 'point', 'poor', 'pigeon', 'outsid', 'build', 'not', 'capabl', 'fli', 'wander', 'sidewalk', 'sad'], ['weird', 'trigger', 'definit', 'ask', 'monday', 'dude', 'shitti'], ['sorri', 'seen', 'strang', 'seem', 'happen', 'iphon', 'perhap', 'problem', 'twitterif'], ['soo', 'lucki', 'fianc', 'away', 'marin', 'not', 'even', 'seen', 'yet'], ['not', 'look', 'forward', 'drive', 'storm'], ['not', 'like', 'sick', 'guidanc', 'counsellor', 'suppos', 'take', 'kid', 'school', 'bowl', 'amp', 'pizza'], ['yeah', 'sorri', 'busi', 'last', 'night', 'ill', 'tri', 'go', 'next', 'week'], ['hey', 'link', 'not', 'work'], ['shit', 'back', 'home', 'tallcre', 'rez', 'not', 'see', 'boyfriend'], ['cri', 'whilst', 'watch', 'hollyoak', 'need', 'life', 'lol'], ['somebodi', 'accident', 'sleep', 'hour', 'instead', 'not', 'hang', 'work', 'blow', 'sorri'], ['mask', 'mo', 'chari', 'not', 'send', 'one', 'amp', 'not', 'bother', 'make', 'one', 'wear', 'boy', 'cloth'], ['genius', 'look', 'good', 'bret', 'lov', 'cancel', 'concert', 'franc', 'readi', 'men'], ['poor', 'goos'], ['head', 'throb', 'lack', 'sleep', 'still', 'mucho', 'work', 'not', 'feel', 'like', 'friday'], ['work', 'boo'], ['ate', 'mani', 'kiss'], ['soo', 'sleepi', 'last', 'day', 'school'], ['return', 'sideway', 'fuck', 'med', 'bill'], ['aw', 'stink', 'sorri'], ['readi', 'sadden', 'depress', 'dull', 'upset', 'dread', 'weekend'], ['ohh', 'like', 'frustrat', 'hand', 'iphon', 'last', 'week', 'upgrad', 'could', 'not', 'unlock'], ['miss', 'kitchen', 'team'], ['darn', 'bacon'], ['month', 'old', 'african', 'grey', 'parrot', 'sad', 'sale', 'reptil', 'forum', 'uk'], ['sit', 'bore', 'ass', 'litteratur', 'listen', 'jack', 'johnson', 'miss', 'gf', 'soo', 'much'], ['terribl', 'headach', 'need', 'relief'], ['waa', 'octo', 'drive', 'not', 'go'], ['soo', 'tire', 'wish', 'time', 'nap', 'work'], ['urghh', 'make', 'cri'], ['agre', 'marri', 'yrs', 'move', 'blah'], ['ah', 'shit', 'chest', 'hurt'], ['fuck', 'traffic', 'go', 'late'], ['make', 'sick'], ['hate', 'broken', 'wrist', 'pe', 'next', 'ugh'], ['go', 'get', 'found', 'stayin', 'til'], ['got', 'deadlin', 'meet', 'tgif'], ['ii', 'want', 'go', 'home', 'thee', 'weekend', 'ii', 'gas', 'sukk'], ['great', 'lunch', 'babi', 'bull', 'time', 'work', 'til'], ['still', 'hope', 'job', 'strep', 'look', 'like', 'not', 'look', 'around', 'place', 'next', 'coupl', 'day'], ['think', 'miss'], ['bore', 'chem', 'n', 'super', 'hungri', 'ugh'], ['cancel', 'javaon'], ['saw', 'stalkerish', 'elev', 'brooki', 'eat', 'moracca', 'go'], ['bore', 'tire', 'got', 'headach'], ['pictur', 'made', 'cri', 'lol'], ['say', 'miss', 'cousin', 'bad'], ['not', 'repli', 'none', 'fan', 'not', 'know', 'trust'], ['fun', 'show', 'tonight', 'wish', 'could'], ['could', 'not', 'get', 'time', 'vega', 'trip', 'still', 'look', 'like', 'noob'], ['heart', 'goe'], ['make', 'wors', 'friend', 'parti', 'tonight', 'stuck', 'not', 'seen', 'month'], ['burn', 'cd', 'fuck', 'outa', 'blank', 'disc'], ['hey', 'sweeti', 'cnt', 'go', 'fri', 'thnks', 'much'], ['love', 'sunshin', 'wish', 'poor', 'richi', 'would', 'feel', 'better'], ['psych', 'better', 'neuro', 'least', 'better', 'part', 'town', 'miss'], ['fuckin', 'tire', 'not', 'get', 'home', 'till', 'work', 'bjs'], ['yay', 'nice', 'weather', 'boo', 'cici', 'not', 'weekend'], ['dream', 'not', 'like'], ['think', 'someth', 'okay', 'goodluck', 'ako'], ['god', 'need', 'revis', 'today', 'lazi'], ['got', 'go', 'shop', 'wife', 'tesco', 'knew', 'day', 'go', 'well'], ['stupid', 'idiot', 'ran', 'stop', 'sing', 'almost', 'kill', 'car'], ['also', 'tire'], ['laptop', 'poop', 'new', 'harddriv', 'need', 'use', 'dh', 'old', 'pc', 'mayb', 'offlin', 'damn', 'bsod', 'happen', 'mani', 'time', 'safe', 'mode'], ['lonestar', 'pitcher', 'not', 'still', 'recov', 'last', 'weekend', 'bout', 'irrespons', 'gluten', 'consumpt'], ['save', 'not', 'buy', 'couch', 'go', 'toward', 'pay', 'visit', 'er', 'uti'], ['rose', 'citi', 'siren', 'uber', 'cool', 'last', 'night', 'wish', 'could', 'stay', 'longer'], ['wonder', 'happen', 'sun', 'damn', 'may', 'grey'], ['feel', 'nostalg', 'sad', 'happi', 'not', 'feel', 'not', 'time', 'feel', 'love'], ['sprinkl', 'outsid', 'hope', 'not', 'rain', 'game'], ['fume', 'ebay', 'purchas', 'gone', 'bad', 'outta', 'noth', 'show', 'amp'], ['miss', 'earring', 'lol', 'let', 'know', 'close'], ['wish', 'sun', 'would', 'shine', 'not'], ['ill', 'attempt', 'rememb', 'lot', 'noth', 'go'], ['cri', 'eye', 'watch', 'girl', 'last', 'period', 'hahah'], ['leavin', 'racist', 'start', 'cryin'], ['bother', 'celeb', 'eh', 'almost', 'like', 'talk'], ['wish', 'realiz', 'wife', 'not', 'held', 'onto', 'debit', 'card', 'took', 'long', 'walk', 'get', 'lunch', 'not', 'grr'], ['hungri', 'not', 'eat', 'anyth', 'right', 'tongu', 'hurt', 'bad'], ['not', 'funni'], ['everyon', 'anoth', 'hater'], ['psh', 'not', 'cool', 'enough', 'go'], ['aww', 'friend', 'call', 'said', 'got', 'better', 'job', 'not', 'work', 'anymor'], ['daisi', 'got', 'attack', 'anoth', 'doggi', 'park'], ['webcam', 'hoepfner', 'burgfest', 'karlsruh', 'automat', 'reload', 'fail'], ['need', 'rest', 'weekend', 'work', 'instead'], ['work', 'damn', 'financi', 'project', 'definit', 'not', 'fun', 'weekend', 'want', 'spend', 'wit', 'baabi', 'waah'], ['happen', 'often', 'hate', 'everi', 'time', 'move', 'usernam', 'thought', 'would', 'love', 'move', 'soon'], ['yep', 'go', 'better'], ['xbox', 'broke', 'hope', 'enjoy', 'play', 'forward'], ['cantt', 'grandpar'], ['downsid', 'get', 'tdl', 'day', 'earli', 'not', 'time', 'read', 'til', 'next', 'week', 'anyway', 'still', 'hurrah', 'clutch', 'close'], ['tie', 'shoe', 'could', 'not', 'figur'], ['oh', 'fuck', 'return', 'supermarket', 'doom', 'find', 'noth', 'drink'], ['never', 'made', 'gym', 'blowout', 'san', 'thong', 'wear', 'compani', 'phew', 'bummer', 'miss', 'workout'], ['glorious', 'week', 'best', 'holiday', 'ever', 'think', 'not', 'want', 'go', 'home', 'morn'], ['hangin', 'fam', 'head', 'hurtin'], ['sorri'], ['present', 'senior', 'board', 'fml'], ['wish', 'stuck', 'pile', 'box', 'sore', 'back', 'load', 'tesco', 'blue', 'shopper', 'bag', 'fill', 'kitchen'], ['crap', 'near', 'forgot', 'pin', 'not', 'tri', 'learn', 'anyth', 'new', 'futur', 'lest', 'push', 'vital', 'inform'], ['school', 'victoria', 'amp', 'bryan', 'school', 'soon', 'sadd'], ['got', 'right', 'bad', 'headach'], ['love', 'mini'], ['contempl', 'get', 'hair', 'cut', 'sever', 'anxieti'], ['know', 'got', 'wait', 'earl', 'think', 'late', 'wrong'], ['got', 'home', 'work', 'feet', 'kill'], ['hiyaa', 'tour', 'realli', 'disappoint', 'could', 'not', 'make', 'hope', 'dandi', 'xx'], ['addin', 'last', 'comment', 'spose', 'go', 'see', 'jona', 'brother', 'movi', 'guess', 'could', 'not', 'go', 'aswel', 'cos', 'sick'], ['work', 'realli', 'slow', 'beauti', 'day', 'friday'], ['bugger', 'forgot', 'still', 'wash', 'machin'], ['want', 'play', 'tonight', 'pout', 'pout', 'side', 'face'], ['jus', 'sittin', 'da', 'libray', 'stupid', 'comput', 'not', 'let', 'order', 'mac', 'foundat'], ['swolen', 'shitt', 'boo', 'hoo'], ['not', 'get', 'excit', 'bbi', 'hear', 'thunder', 'roll'], ['yes', 'strang', 'infect', 'bodi', 'caus', 'sicker', 'need', 'fever'], ['noth', 'like', 'get', 'work', 'find', 'cover', 'extra', 'shift', 'week', 'look', 'like', 'anoth', 'hr', 'work', 'week'], ['not', 'want', 'get', 'dress', 'adult', 'today'], ['tri', 'find', 'friend', 'not', 'luck'], ['not', 'thrill', 'marathon', 'sunday', 'assign', 'street', 'less'], ['accidentali', 'slam', 'finger', 'trunk'], ['dad', 'tell', 'travel', 'alon', 'not', 'problem', 'done', 'bore'], ['damn', 'hot', 'weather', 'freez', 'oz', 'moment', 'miss', 'summer'], ['disloc', 'pain', 'disloc', 'toe', 'remind', 'today', 'thank', 'toe', 'still', 'feel', 'weird'], ['damn', 'guy', 'not', 'hope', 'win', 'though'], ['know', 'wut', 'devi', 'dev', 'sure', 'suck', 'havin', 'id', 'weekend', 'r', 'gone', 'miser', 'week', 'drink', 'plz'], ['could', 'make', 'philadelphia', 'year', 'would', 'sad', 'not'], ['tri', 'find', 'friend', 'not', 'luck'], ['head', 'yale', 'grandmoth', 'car', 'accid'], ['two', 'load', 'move', 'crew', 'done', 'start', 'done', 'day', 'bad', 'ac', 'not', 'work', 'new', 'place', 'oh', 'life'], ['broken', 'leg', 'comment', 'pleas'], ['oop', 'not'], ['gah', 'money', 'least', 'not', 'bakugan'], ['macbook', 'die', 'switch', 'iphon'], ['would', 'love', 'plan'], ['hmm', 'not', 'birthday', 'cake', 'hoo'], ['miss', 'yoouu'], ['watchin', 'tyra', 'bore', 'like', 'alway', 'stomach', 'hurt'], ['work', 'today', 'tomorrow', 'dan', 'parti', 'yay'], ['ultimatum', 'ultimatum', 'matter', 'dress', 'suck'], ['car', 'shop', 'kaci', 'yay'], ['pretti', 'mom', 'go', 'home', 'hour', 'fix', 'leav', 'aww', 'go', 'texa', 'month'], ['mani', 'test', 'todayi', 'not', 'feel', 'confid', 'anyy'], ['afraid', 'go', 'say'], ['yeah', 'super', 'crap', 'today', 'stupid', 'write', 'ugh'], ['look', 'forward', 'mandarin', 'album', 'hope', 'come', 'singapor'], ['transfer', 'photo', 'annoy', 'want', 'watch'], ['killer', 'come', 'td', 'banknorth', 'boston', 'not', 'go', 'everyon', 'els', 'go', 'though', 'ticket', 'sale', 'sat'], ['give', 'year', 'old', 'golden', 'retriev', 'away', 'anoth', 'famili', 'today', 'sad'], ['not', 'fan', 'bulmer', 'magner', 'pear', 'awesom', 'want', 'slush', 'puppi', 'though', 'hurryup', 'classi', 'omgimpati'], ['simpli', 'want', 'go', 'ny'], ['one', 'welcom', 'new'], ['miss'], ['switch', 'cellphon', 'huaa', 'not', 'sleep', 'buzz', 'bebe'], ['feel', 'like', 'crap'], ['friend', 'love', 'spot', 'want', 'go'], ['traumat', 'sadden', 'babi', 'squirel', 'found', 'abandon', 'sidewalk'], ['omg', 'aw', 'wow', 'pyr', 'figur', 'open', 'doorknob', 'one', 'day', 'crush', 'jaw'], ['bummer', 'macbook', 'bug', 'mac', 'head', 'want', 'lend', 'help', 'hand'], ['still', 'hate', 'whole', 'twitter', 'repli', 'thing', 'feel', 'like', 'miss', 'bit', 'fixrepli'], ['quit', 'like', 'basebal', 'bball', 'oh', 'odd', 'gridiron', 'match', 'tini', 'tini', 'part', 'world', 'popul', 'call', 'footbal'], ['look', 'soo', 'pretti', 'love', 'dang', 'wish', 'ny', 'could', 'c', 'thang'], ['yeah', 'stop', 'make', 'fun', 'got', 'get', 'new', 'one'], ['love', 'one', 'leav', 'sunday', 'sad'], ['not', 'good', 'day'], ['email', 'link', 'pretti', 'sad', 'uh', 'rip', 'jessi', 'kitti'], ['need', 'get', 'away', 'wish', 'money', 'go', 'travel', 'bit', 'miss', 'east', 'coast', 'friend'], ['upload', 'pcd', 'onto', 'itun', 'xd', 'use', 'certian', 'event', 'caus', 'lt', 'sad'], ['dude', 'miss', 'way', 'name', 'mix', 'quot', 'damn', 'man', 'save', 'quot', 'hahaha'], ['dog', 'dug', 'hole', 'backyard', 'well', 'iwa', 'sleep', 'ground'], ['urgh', 'feel', 'like', 'crap', 'today', 'bad', 'headach', 'tire', 'blood', 'sugar', 'high'], ['wish', 'go', 'place', 'brandwkshop', 'see', 'got', 'scott', 'bedburi', 'poor'], ['follow', 'went', 'would', 'follow', 'back', 'not', 'anyth', 'till', 'get', 'interwebnet', 'want', 'follow', 'interest'], ['work', 'man', 'bad', 'job', 'whole', 'team', 'want', 'leav', 'believ', 'would', 'make', 'money', 'not'], ['anoth', 'qi', 'miss', 'next'], ['bout', 'get', 'readi', 'work', 'ugh', 'hate', 'workin', 'friday'], ['bore', 'wait', 'class', 'start', 'sigh', 'midterm', 'next', 'week', 'gt', 'lt'], ['jen', 'not', 'talk', 'like', 'day'], ['feel', 'like', 'want', 'cri', 'not', 'get', 'empti', 'feel', 'stomach', 'throat', 'start', 'hurt'], ['geometri', 'damn', 'bore', 'wast', 'time', 'minut', 'left'], ['friday', 'not', 'treat', 'well', 'far'], ['daddi', 'hospit', 'not', 'like'], ['thing', 'fun', 'itouch'], ['sort', 'twitter', 'frustrat', 'not', 'talk', 'someon', 'respond', 'slowli', 'issu', 'capac', 'challeng'], ['gaahh', 'want', 'stream', 'back'], ['fell', 'sidewalk', 'harvard', 'squar', 'stupid', 'cobbleston', 'hand', 'hurt'], ['luci', 'upset', 'tummi', 'sore', 'leg'], ['internet', 'stop', 'work', 'right', 'middl', 'quantum', 'leap', 'grr'], ['miss', 'quot', 'quot'], ['not', 'teas', 'desper', 'need', 'adjust'], ['perfect', 'outsid', 'work'], ['miss', 'good', 'old', 'day'], ['dust', 'amp', 'vacuum', 'apart', 'think', 'need', 'anoth', 'new', 'entir', 'apart', 'smoki', 'bought', 'one', 'kmart'], ['bore', 'mind'], ['jet', 'repair'], ['finish', 'twilight', 'wish', 'not'], ['know', 'not', 'go', 'sad', 'need', 'come', 'back', 'mi', 'soon', 'possibl', 'haha'], ['ooh', 'hangov'], ['buri', 'web', 'chang', 'go', 'make', 'lunch', 'not', 'chanc', 'later', 'much'], ['long', 'day', 'offic', 'tire', 'week'], ['got', 'fair', 'flat', 'rout', 'avail', 'problem', 'longer', 'fulli', 'function', 'bike', 'ride'], ['damn', 'paid', 'like', 'first', 'slight', 'stoopid', 'show', 'charg', 'pop', 'make', 'sad'], ['steak', 'burrito', 'bowl', 'right', 'wish', 'not', 'lazi', 'go', 'downtown'], ['still', 'repli', 'simfing', 'problem', 'irap', 'parodi', 'video', 'get', 'respons', 'sorri', 'guy'], ['not', 'like', 'kde', 'sinc', 'ver', 'like', 'vista', 'fail'], ['omg', 'hollyoak', 'well', 'dramat'], ['tummi', 'hurt'], ['tri', 'audioboo', 'record', 'distort', 'due', 'high', 'volum', 'ob'], ['think', 'day', 'thing', 'get', 'work', 'ahh', 'not', 'want', 'go'], ['would', 'realli', 'like', 'not', 'work', 'instead', 'take', 'nap'], ['bad'], ['still', 'not', 'sick', 'sick'], ['alreadi', 'know', 'go', 'miss', 'josh', 'next', 'week', 'mom', 'need', 'surgeri', 'work', 'suck', 'not', 'good', 'day', 'oh', 'tum', 'tum', 'hurt'], ['miss', 'cauzinhoo', 'alreadi'], ['hate', 'weather', 'want', 'bake'], ['serious', 'need', 'live', 'somewher', 'fabul', 'queer', 'miss', 'around', 'gay', 'peopl'], ['mast', 'ladki', 'patata', 'hai', 'chal', 'jisk', 'sath', 'bhi', 'jay', 'khush', 'miss', 'love', 'twpp'], ['tummi', 'hurt'], ['updat', 'old', 'miss', 'orang', 'nano'], ['lost', 'dc', 'hat'], ['got', 'anoth', 'got', 'laid', 'lot', 'peopl', 'becom', 'unemploy'], ['dad', 'tri', 'forc', 'learn', 'drive', 'not', 'like', 'thing', 'not', 'good', 'public'], ['ever', 'told', 'absolut', 'hate', 'write', 'email', 'status', 'pdate', 'fine', 'email'], ['wish', 'could', 'offer', 'hug', 'right', 'bad'], ['lost', 'count', 'sorri', 'let'], ['wow', 'realli', 'not', 'know', 'serious', 'well', 'suck', 'texa', 'must', 'chock', 'full', 'asbesto'], ['work', 'around', 'hous', 'boo'], ['ever', 'happen', 'creat', 'music', 'collabor', 'fun', 'without', 'quot', 'get', 'quot', 'question', 'mind', 'pleas'], ['realli', 'get', 'rid', 'sad'], ['lmao', 'get', 'alot', 'haha'], ['unless', 'absolut', 'gorgeous', 'would', 'rather', 'men', 'stay', 'cover', 'seen', 'sight', 'today', 'put', 'food', 'ukpub'], ['piss', 'someon', 'took', 'wallet'], ['realli', 'miss', 'sebastian'], ['anoth', 'lake', 'park', 'kid', 'go', 'tulan', 'not', 'uniqu', 'anymor'], ['throat', 'infect', 'come', 'strong', 'think', 'tast', 'blood'], ['work', 'say', 'bye', 'goshi', 'sunday', 'leav', 'poland', 'month'], ['time', 'like', 'lost', 'one'], ['not', 'think', 'vote', 'anymor', 'tri'], ['hell', 'youtub', 'not', 'work', 'nno'], ['oh', 'god', 'watch', 'clair', 'escap', 'realli', 'quit', 'sad'], ['go', 'withdrawl', 'miss', 'someon'], ['found', 'not', 'tweet', 'phone', 'scotland', 'differ', 'network', 'go', 'upload', 'photo', 'twitpic', 'sorri'], ['eh', 'shut', 'freeway', 'omw', 'job', 'interview', 'guess', 'go', 'late'], ['oh', 'hope', 'feel', 'better', 'soon', 'hug', 'flu', 'earlier', 'month'], ['facebook', 'use', 'myspac', 'twitter', 'hard', 'check', 'facebook'], ['total', 'forgot', 'soccer', 'today', 'ugh', 'today', 'actual', 'good'], ['listen', 'without', 'tortur', 'sad'], ['get', 'sick', 'ugh', 'lose', 'voic', 'noo'], ['trueli', 'sad', 'news', 'hear', 'creat', 'equal', 'sad', 'know', 'neighbor', 'prejudic', 'peopl'], ['bummer', 'not', 'got', 'one', 'yet', 'wait', 'year', 'grr'], ['decid', 'not', 'want', 'see', 'sweeti', 'not'], ['almost', 'die', 'laptop', 'screen', 'set', 'bright', 'reinstal', 'window', 'vista', 'got', 'headach', 'insanedefault'], ['full', 'subway', 'bomb', 'wait', 'shift', 'start'], ['quitsmokingdiari', 'week', 'tomorrow', 'sinc', 'give', 'yaayi', 'not', 'want', 'talk'], ['bout', 'tuh', 'head', 'find', 'sum', 'wher', 'tuh', 'go', 'chill'], ['wish', 'hang', 'kobe', 'right'], ['math', 'not', 'fun', 'oh', 'well', 'get', 'cook', 'soon', 'get', 'home'], ['guess', 'go', 'tri', 'nap', 'thing', 'sinc', 'kid', 'not', 'cooper', 'yet', 'week', 'sure', 'not', 'differ'], ['poor', 'babi', 'got', 'first', 'booboo', 'caus', 'lol'], ['pull', 'interest', 'meet', 'urgent', 'support', 'request'], ['ah', 'sorri', 'hear', 'trip', 'cancel'], ['mit', 'bookstor', 'best', 'book', 'select', 'one', 'bookstor', 'coupon', 'discount'], ['not', 'care', 'struggl'], ['dumb', 'reason', 'dresser', 'sticki', 'top', 'anoth', 'reason', 'famili', 'histori', 'book', 'got', 'attach', 'back', 'jack'], ['say', 'ignor', 'frown'], ['miss', 'boo', 'anoth', 'note', 'soreadi', 'game', 'come', 'grill', 'anyon'], ['still', 'lot', 'time', 'stupid', 'contract', 'month', 'chang', 'provid'], ['would', 'like', 'go', 'back', 'bed', 'horribl', 'headach', 'pound', 'behind', 'eye', 'skull'], ['thank', 'clair', 'not', 'watch', 'yet'], ['know', 'not', 'say', 'fuck', 'horni', 'hell'], ['know', 'feel', 'littl', 'depress'], ['sorri'], ['feel', 'like', 'cri', 'one', 'diamond', 'earring', 'fell', 'ear', 'loos', 'not', 'find', 'forev'], ['kwanghock', 'hao', 'da', 'za', 'ji', 'pa', 'miss', 'food', 'much'], ['feel', 'sick', 'much', 'chees', 'toast'], ['nice', 'day', 'look', 'like', 'go', 'get', 'excit', 'take', 'photo', 'get', 'home'], ['hotti', 'pooh', 'oo', 'bet', 'sounda', 'magic', 'hh', 'come', 'home', 'hour'], ['oh', 'fan', 'broke', 'noo', 'great', 'swelter', 'heat', 'like', 'hot', 'laptop', 'warm', 'well'], ['sorri'], ['call', 'sold', 'bummer', 'next', 'time'], ['sad'], ['got', 'done', 'disc', 'found', 'two', 'disc', 'last', 'two', 'day', 'solid', 'wish', 'would', 'treat', 'koozi', 'better', 'not', 'throw', 'around'], ['eat', 'roommat', 'cereal', 'sorri', 'bro'], ['wish', 'weekend', 'go', 'sol'], ['tri', 'energi', 'drink', 'report', 'back', 'guy', 'sweat', 'worst', 'cramp', 'want', 'lie'], ['beauti', 'mn', 'day', 'stuck', 'insid', 'play', 'zelda', 'got', 'play', 'least', 'hrs', 'today'], ['know', 'inlov', 'actual'], ['well', 'daughter', 'said', 'miss', 'go', 'soo', 'fast'], ['ohh', 'miss', 'brunch'], ['oh', 'god', 'liter', 'drove', 'rain', 'hard', 'could', 'not', 'see', 'front', 'shake'], ['oop', 'forgot', 'barbecu', 'work', 'today', 'not', 'need', 'pack', 'lunch'], ['nice', 'ahd', 'work', 'today'], ['loll', 'cba', 'get', 'sun', 'stuff', 'forgot', 'back', 'leg', 'would', 'not', 'gwt', 'tan', 'lol', 'hurt', 'soo', 'bad', 'right'], ['dude', 'sorri', 'never', 'got', 'number', 'fail', 'rememb'], ['jelz', 'want', 'hous', 'gt'], ['nc', 'tonight', 'june', 'go', 'miss', 'nyc', 'get', 'readi', 'birthday', 'luau', 'bbq', 'juli'], ['ohh', 'would', 'def', 'give', 'tht', 'kenyatta', 'cam', 'not', 'mine', 'sri', 'want', 'tht', 'pic'], ['horribl', 'day'], ['sad', 'true'], ['instal', 'new', 'modem', 'meant', 'run', 'time', 'faster', 'old', 'one', 'slower', 'hell', 'gah', 'slow', 'internet', 'kill'], ['never', 'eat', 'broadway', 'pizza', 'feelin', 'ill'], ['pool', 'today', 'stupid', 'weather'], ['rosco', 'smooth', 'sailin', 'one', 'tell', 'song', 'rap', 'friend', 'fail'], ['love', 'littl', 'brother', 'friend', 'come'], ['not', 'think', 'neti', 'pot', 'work', 'mayb', 'wrong'], ['not', 'believ', 'nice', 'weather', 'day', 'stuck', 'door', 'day'], ['new', 'landlord', 'call', 'not', 'move', 'tomorrow', 'morn', 'way', 'rain', 'parad'], ['wish', 'could', 'enjoy', 'weekend', 'xx'], ['pack', 'fun', 'good', 'thing', 'new', 'unit', 'keep', 'go', 'still', 'fun'], ['play', 'munchkin', 'today', 'talk', 'cake', 'get', 'readi', 'yard', 'sale', 'tomorrow', 'not', 'look', 'forward'], ['cours', 'not', 'come', 'bois'], ['littl', 'slow', 'tri', 'one', 'ben', 'amp', 'jerri', 'mission', 'marzipan', 'bit', 'letdown'], ['tell', 'not', 'miss', 'boge'], ['thank', 'not', 'care', 'look', 'face'], ['ow', 'shoulder', 'muscl', 'not', 'rememb', 'name', 'p', 'hurt', 'not', 'even', 'know'], ['suck'], ['tire', 'whyy', 'make', 'stop', 'merm', 'not', 'go', 'fun', 'tonight'], ['parent', 'got', 'f', 'start'], ['dad', 'fever', 'sinc', 'last', 'nite', 'need', 'bottl', 'blood', 'go', 'tomorrow'], ['not', 'know', 'even', 'amp', 'r', 'e', 'n', 'g', 'work', 'tomorrow', 'suck'], ['great', 'say', 'old'], ['work', 'buddi', 'left', 'earli', 'today', 'lone', 'keep', 'lookin', 'time', 'bare', 'min', 'later', 'last', 'time'], ['took', 'forum', 'access', 'away', 'fail'], ['laptop', 'go', 'die', 'not', 'work'], ['guitar', 'not', 'herew', 'yet', 'feel', 'like', 'lost', 'limb'], ['home', 'sick'], ['guitar', 'not', 'yet', 'feel', 'like', 'lost', 'limb'], ['mayb', 'go', 'one', 'day', 'thank', 'swine'], ['mobil', 'not', 'like'], ['omg', 'sad', 'jus', 'took', 'gossip', 'girl', 'done'], ['man', 'wake', 'suck', 'go', 'work', 'like', 'min', 'later'], ['miss'], ['not', 'wait', 'start', 'weekend', 'sick', 'work', 'fresh', 'herb'], ['sick'], ['sleep', 'depriv', 'hot', 'sleep'], ['hope', 'son', 'okay'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['way', 'dad', 'sista', 'deb'], ['hate', 'take', 'antibiot', 'think', 'need', 'get', 'boo'], ['laptop', 'broke', 'want', 'help', 'girl', 'take', 'best', 'buy', 'weekend', 'pleas', 'ill', 'feed'], ['sniff', 'feel', 'left', 'grin'], ['home', 'sick', 'point', 'weekend', 'ruin'], ['vote', 'sinc', 'like', 'four', 'day', 'ago', 'think', 'told', 'friend', 'vote', 'million', 'time', 'win', 'love'], ['one', 'watch', 'peep', 'actual', 'focus', 'final', 'alreadi'], ['would', 'yes', 'not', 'wait', 'bb', 'love', 'heard', 'not', 'show', 'hr', 'live', 'stream', 'year', 'though'], ['banana', 'cup', 'healthi', 'breakfast'], ['aww', 'could', 'would', 'gbi'], ['life', 'not', 'fair', 'gt', 'feel'], ['worst', 'day'], ['saw', 'show', 'week', 'ago', 'hate', 'say', 'not', 'impress', 'fun', 'good', 'though'], ['new', 'rip', 'hot', 'pink', 'polaroid'], ['although', 'know', 'would', 'never', 'okay', 'homebirth', 'moot', 'point', 'sinc', 'done', 'babi'], ['not', 'good', 'news', 'time', 'incred', 'hard', 'decis'], ['start', 'tomorrow', 'go', 'book', 'sam', 'forgot'], ['math', 'class', 'ugh', 'rather', 'class', 'act', 'damn', 'quiz', 'got', 'act', 'fast'], ['pansi', 'wtf', 'codeh'], ['dish', 'train', 'newcastl', 'leav', 'nontweetinggirlfriend', 'behind', 'week', 'alway', 'bit', 'sad'], ['get', 'impati', 'turnaround', 'time', 'repair', 'broken', 'arriv', 'new', 'espresso', 'machin', 'fb'], ['awe', 'not', 'know', 'cat', 'got', 'skin', 'cancer'], ['still', 'not', 'get', 'vanilla', 'frosti', 'yet'], ['vote', 'everi', 'day'], ['wonder', 'know', 'shallow', 'airi', 'amp', 'dumb', 'tweet', 'make', 'sound', 'guess', 'not', 'would', 'probabl', 'stop'], ['ohh', 'get'], ['borrow', 'mom', 'lenovo', 'laptop', 'trackpad', 'batteri', 'life', 'suck', 'ball', 'quarter', 'serious', 'miss', 'macbook', 'pro'], ['realli', 'want', 'milkshak', 'money'], ['want', 'go', 'tonight', 'not', 'get', 'home'], ['wonder', 'dat', 'n', 'church', 'sumtim', 'nt', 'knowng', 'certain', 'sung', 'seem', 'like', 'erbdi', 'know', 'quick', 'feel', 'bad', 'cnt', 'sing', 'along'], ['could', 'talk', 'probabl', 'not', 'though'], ['inde', 'much', 'fail'], ['want', 'meet', 'jeff', 'hardi', 'beth', 'britt', 'bad', 'soo', 'annoy', 'x', 'x'], ['java', 'not', 'work', 'hmph', 'not', 'upload', 'photo', 'facebook'], ['url', 'previous', 'post', 'timer', 'job', 'would', 'remov', 'space', 'mess', 'url'], ['visit', 'grandpar', 'manhattan', 'drop', 'sister', 'week', 'wish', 'excus', 'tire', 'today'], ['yeah', 'wast', 'time', 'fail'], ['tire', 'amp', 'readi', 'bed', 'realli', 'mood', 'salt', 'amp', 'pepper', 'chicken', 'wing', 'amp', 'noodl', 'money', 'chines'], ['sound', 'like', 'nice', 'relax', 'afternoon', 'mow', 'lawn', 'walk', 'dog'], ['damn', 'dude', 'dia', 'e', 'eu', 'tenho', 'curso', 'na', 'drc', 'flash', 'expert'], ['thing', 'hate', 'playoff', 'pen', 'hockey', 'much', 'ticket', 'want', 'go', 'game', 'ticket'], ['oh', 'great', 'tampa', 'peopl', 'anybodi', 'area', 'know', 'someon', 'work', 'jain', 'societi', 'tampa', 'bay', 'none', 'phone', 'work'], ['vote', 'person', 'myspac', 'keep', 'talk', 'fake', 'lt', 'help', 'thru', 'hrdest', 'time', 'life', 'x'], ['read', 'someth', 'happi'], ['alicia', 'tonight', 'idkk', 'ughh'], ['ohio', 'lover', 'tattoo', 'got', 'design', 'shirt', 'haha', 'lost', 'shirt'], ['sad', 'sit', 'home', 'could', 'go', 'partyy'], ['tri', 'not', 'want', 'listen', 'not', 'know', 'anymor', 'feel', 'like', 'not', 'care', 'anymor'], ['twitterfail', 'fuck', 'hard', 'right', 'annoy'], ['ahh', 'sad'], ['made', 'sad'], ['waah', 'asshat', 'cvs', 'yesterday', 'shortchang', 'paid', 'chip'], ['finger', 'hurt', 'infect'], ['stop', 'follow', 'not', 'cool', 'enough'], ['take', 'forev', 'upload'], ['told', 'tri', 'said', 'late', 'girl', 'took', 'get', 'readi', 'want', 'meet'], ['hate', 'weather', 'live', 'ure', 'whole', 'life', 'get', 'use', 'alway', 'raini'], ['tri', 'az', 'brook', 'omg', 'not', 'even', 'outsid', 'less', 'minut', 'get', 'neck', 'burn'], ['noo', 'miami', 'want', 'lay', 'rain', 'stop'], ['hate', 'sound', 'not', 'like', 'shut'], ['major', 'crampl'], ['miss', 'place', 'miss', 'wegman', 'even', 'whole', 'food', 'wegman'], ['vote', 'mr', 'twitter', 'univers', 'bit', 'stuck'], ['thank', 'rub', 'jerk', 'guy', 'go', 'weekend'], ['damn', 'sad', 'not', 'heard', 'new', 'one', 'yet', 'sound', 'like', 'spare', 'tragedi'], ['want', 'see', 'tonight', 'one', 'go', 'whhyy'], ['evalu', 'not', 'like', 'part', 'job'], ['pitman', 'south', 'look', 'like', 'busi', 'bad'], ['hope', 'pill', 'someth', 'cuz', 'go', 'go', 'nut'], ['music', 'trailer', 'terribl', 'go', 'cheesi', 'handbag', 'hous', 'expect', 'dnb', 'hard', 'hous'], ['phone', 'call', 'yet', 'minut', 'pluck', 'courag', 'wish', 'phone', 'would', 'ring'], ['denial', 'move', 'van', 'park', 'block', 'away'], ['much', 'work', 'littl', 'time'], ['need', 'burp', 'nausea'], ['want', 'go', 'not', 'sure', 'show', 'great'], ['well', 'least', 'good', 'tast', 'art', 'cabinet', 'much'], ['dude', 'tri', 'would', 'not', 'load'], ['know', 'want', 'come', 'keep', 'compani', 'whilst', 'mum', 'friend', 'night', 'nice', 'even'], ['feel', 'realli', 'bad', 'femal', 'racoon', 'abus', 'racoon', 'husband', 'alway', 'black', 'one', 'help'], ['season', 'sorri', 'notic', 'previous', 'updat', 'sis', 'not', 'go', 'happi'], ['say', 'mlia', 'instead', 'fml', 'hope', 'find', 'soon'], ['oh', 'miss', 'truck', 'could', 'whole', 'place', 'move'], ['mourn', 'miss', 'homesskool', 'fair', 'today'], ['sorri', 'could', 'not', 'get', 'project', 'work', 'windoz', 'laptop', 'ton', 'folk', 'came', 'afterward', 'saw', 'run'], ['lucki', 'drizzl', 'mommi', 'say', 'puddl', 'big', 'enough', 'swim', 'dog', 'park', 'today'], ['nanaimo', 'miss', 'son', 'alreadi', 'not', 'even', 'left', 'yet'], ['ha', 'give', 'spymast', 'chanc', 'curious', 'miss'], ['ah', 'serious', 'not', 'even', 'work', 'children', 'still', 'sick', 'groundhog', 'friday', 'got', 'wors'], ['total', 'worth', 'great', 'movi', 'cool', 'glass', 'miss', 'ya', 'miss', 'miss', 'new', 'york'], ['feel', 'almost', 'empti', 'insid', 'today', 'not', 'good', 'feel'], ['miss', 'sixx'], ['may', 'tell', 'cos', 'never', 'repli'], ['sad', 'kind', 'mess', 'get', 'weekend'], ['lucki', 'week', 'summer'], ['sorri', 'could', 'not', 'get', 'projector', 'work', 'windoz', 'laptop', 'ton', 'peopl', 'came', 'afterward', 'saw', 'live'], ['teratoma', 'caviti', 'experienc', 'bald'], ['allerg', 'bunni', 'allerg', 'fur', 'suck', 'not', 'cosmic', 'ironi', 'furri', 'allerg', 'fur'], ['sale', 'sign', 'front', 'hous'], ['gor', 'soo', 'bore', 'man', 'not', 'think', 'could', 'get', 'bore'], ['got', 'back', 'absolut', 'exhaust', 'hour', 'work'], ['much', 'surpris', 'use', 'credit', 'card', 'crack', 'dawn', 'serious', 'onlin', 'gambl', 'one', 'problem', 'not'], ['sick', 'sick', 'sore', 'throat', 'flu'], ['new', 'pictur', 'not', 'work'], ['lost', 'luggag', 'sorri', 'hear', 'check', 'select', 'travel', 'luggag'], ['feel', 'like', 'throw'], ['haha', 'calm', 'get', 'shade', 'still', 'sick', 'though', 'probabl', 'knockout'], ['spill', 'chocol', 'milk', 'car'], ['happi', 'belat', 'birthday', 'hun', 'net', 'broke', 'first', 'chanc', 'get', 'onlin', 'luff', 'yoo', 'xx'], ['feel', 'bad', 'kid', 'sick'], ['car', 'not', 'start'], ['sad', 'could', 'hang', 'feel', 'less', 'apathet'], ['still', 'tri', 'get', 'better', 'get', 'mommaz', 'hous', 'ahh', 'hate', 'feelin'], ['get', 'axkit', 'run', 'ubuntu', 'make', 'head', 'explod'], ['red', 'rock', 'lunch', 'colin', 'could', 'not', 'come', 'ipa', 'junior', 'fresh', 'made', 'yum', 'yum', 'yum'], ['mean', 'peopl', 'suck'], ['almost', 'got', 'giant', 'car', 'accid'], ['miss'], ['much', 'stuff', 'car', 'feel', 'mpg', 'go', 'toilet'], ['better', 'come', 'time', 'count', 'els', 'bam'], ['muhaha', 'martha', 'lt', 'fun', 'see', 'uu', 'next', 'mnth'], ['head', 'hospitol', 'pull', 'golf', 'tourni', 'place', 'think', 'someth', 'yeah'], ['sometim', 'game', 'cruel', 'not', 'real', 'like', 'last', 'night', 'wheel', 'fortun'], ['terribl', 'littl', 'beast', 'garden', 'small', 'simpli', 'collect', 'buy', 'poison', 'food', 'pellet'], ['lol', 'part', 'florida', 'trial', 'come', 'screech', 'halt', 'summer', 'fun', 'weekend'], ['hairdy', 'patch', 'test', 'smear', 'white', 'duvet', 'cover', 'fuck', 'cunt', 'lt'], ['hey', 'wife', 'die', 'realli', 'confus', 'not', 'myspac', 'littl', 'read', 'twit'], ['blatent', 'fault', 'shove', 'bag', 'said', 'felt', 'much', 'trick', 'xx'], ['go', 'work', 'great', 'day', 'atleast', 'get', 'commin', 'wahoo'], ['ugh', 'not', 'know', 'even', 'care', 'nicol', 'richi', 'c', 'miss', 'tv', 'last', 'nite', 'despit', 'twitter'], ['mm', 'pizza', 'dinner', 'yum', 'burnt', 'mouth', 'though'], ['respect', 'travi', 'clark', 'gone', 'notch'], ['anyon', 'ticket', 'mtv', 'movi', 'award', 'guy', 'scam'], ['want', 'sad', 'work', 'today', 'normal', 'not', 'work', 'friday', 'either'], ['willi', 'pout', 'grandma', 'not', 'put', 'treat', 'food'], ['bet', 'man', 'wish', 'coulda', 'went', 'whr', 'not', 'even', 'go', 'home', 'weekend', 'nyt', 'life', 'suck'], ['sneez', 'three', 'time', 'quick', 'success', 'three', 'not', 'four', 'record'], ['troubl', 'view', 'well', 'tube', 'reason'], ['realli', 'sad', 'nephew', 'keep', 'busi', 'sort', 'item', 'bwm'], ['got', 'say', 'littl', 'jealous'], ['problem', 'not', 'get', 'site', 'work'], ['oh', 'god', 'break', 'much', 'plaster', 'like', 'wall', 'thank'], ['not', 'say', 'realli', 'miss', 'red', 'porsch', 'sold', 'yrs', 'ago'], ['way', 'get', 'crate', 'bella', 'dolc', 'sad', 'cuz', 'go', 'tto', 'richmond'], ['allianz', 'interview', 'went', 'well', 'got', 'reject', 'mod', 'though', 'go', 'long', 'weekend', 'hear', 'allianz', 'monday'], ['chanc', 'see', 'race', 'germani', 'unfortun', 'hard', 'tv', 'amp', 'news', 'coverag', 'cycl', 'anymor'], ['harlem', 'jealous', 'right', 'miss', 'live', 'nyc'], ['vote', 'could', 'not'], ['morn', 'forcast', 'radio', 'part', 'most', 'cloudi', 'stay', 'insid', 'happi', 'friday'], ['not', 'feel', 'bad', 'got', 'foad', 'promot'], ['sad', 'day', 'found', 'first', 'scratch', 'car'], ['friend', 'go', 'jealous'], ['oh', 'long', 'not', 'rememb'], ['week', 'aw'], ['aw', 'man', 'half', 'term', 'not', 'long', 'enough', 'lol'], ['omg', 'sorri', 'anyth', 'help'], ['botan', 'garden', 'beauti', 'forgot', 'extra', 'memori', 'card', 'pictur', 'today'], ['keep', 'bump', 'mous', 'comput', 'not', 'go', 'sleep', 'internet', 'access', 'file', 'work', 'slowest', 'friday', 'eevveerr'], ['lucki', 'still', 'want', 'blue', 'one'], ['wat', 'racism', 'australia', 'not', 'nice'], ['move', 'offic', 'go', 'miss', 'hollywood'], ['understand', 'yah', 'leav', 'monday', 'gone', 'chi'], ['day', 'without', 'sleep', 'migrain', 'thought', 'life', 'meant', 'relax'], ['scienc', 'bore'], ['dear', 'presid', 'pleas', 'talk', 'us', 'plan', 'dadt', 'right', 'look', 'like', 'liar'], ['leav', 'not', 'miss', 'much', 'tweetbeak', 'lt'], ['hm', 'ever', 'realiz', 'incred', 'tokio', 'hotel', 'becom', 'make', 'sad'], ['list', 'state', 'park', 'pa', 'consider', 'close', 'nice', 'one'], ['post', 'offic', 'not', 'get', 'packag', 'yet', 'may', 'wait', 'tomorrow'], ['saw', 'someth', 'real', 'sad', 'lunch', 'dog', 'two', 'broken', 'back', 'leg'], ['okay', 'got', 'card', 'phone', 'fuck', 'moment', 'pleas', 'use', 'email', 'reach', 'sorri'], ['back', 'home', 'moment', 'speak', 'aunt', 'telephon', 'darius', 'neight', 'backround', 'miss', 'littl', 'hors'], ['think', 'wireless', 'router', 'die'], ['immedi', 'regret', 'decis', 'come', 'offic', 'today', 'miss', 'bed'], ['lost', 'luggag', 'sorri', 'hear', 'check', 'select', 'travel', 'luggag'], ['bad', 'day', 'histori', 'test', 'tommorrow', 'want', 'go', 'sun', 'play'], ['problem', 'not', 'finish', 'log', 'mass', 'hour', 'week', 'not', 'paid', 'pop'], ['seem', 'like', 'never', 'go', 'stop', 'never', 'get', 'want'], ['watch', 'prison', 'break', 'special', 'sad', 'end'], ['sorri', 'hear'], ['new', 'teca', 'driver', 'licens', 'design', 'ugli'], ['get', 'hair', 'short', 'hope', 'everyth', 'go', 'well', 'friend', 'current', 'get', 'surgeri'], ['spent', 'last', 'hour', 'sign', 'yearbook', 'miss', 'guy'], ['put', 'real', 'pic', 'go', 'miss', 'avatar'], ['goin', 'mall', 'go', 'see', 'movi', 'ghost', 'gfs', 'past', 'hope', 'good', 'top', 'goin', 'alon', 'ilook', 'cute', 'feel', 'good'], ['tmobil', 'hummer', 'wish', 'batteri', 'life', 'iphon'], ['not', 'get', 'rwitter', 'phone', 'phone', 'suck'], ['thank', 'much', 'ff', 'one', 'today'], ['woo', 'see', 'glasgow', 'come', 'septemb', 'agess', 'away'], ['way', 'hey', 'peopl', 'lol', 'tgif', 'hope', 'day', 'mine', 'aight', 'feel', 'like', 'kind', 'suck', 'got', 'plan', 'wknd'], ['know', 'sorri'], ['lost', 'luggag', 'sorri', 'hear', 'check', 'select', 'travel', 'luggag'], ['book', 'read', 'movi', 'watch', 'n', 'stuff', 'bore'], ['miss', 'give', 'away', 'ttc', 'code'], ['dumbfac', 'not', 'wknd', 'want', 'see', 'ya'], ['best', 'evar', 'amp', 'first', 'not', 'awnser', 'question', 'xoxo'], ['not', 'make', 'feel', 'like', 'use'], ['miley', 'tri', 'vote', 'not', 'let', 'vote', 'reason', 'ill', 'tri', 'back', 'littl', 'later', 'lt'], ['wish', 'still', 'cornwal', 'miss', 'aunti', 'dog'], ['lol', 'wrong', 'workin', 'right', 'sowwi'], ['alway', 'excit', 'new', 'chapter', 'life', 'not', 'expect', 'emot'], ['miss', 'one', 'diamond', 'earring', 'make', 'sad'], ['peep', 'got', 'onto', 'game', 'site', 'never', 'see'], ['ok', 'wtf', 'someth', 'menu', 'window', 'not', 'sell', 'want', 'bubbl', 'tea'], ['miss'], ['aww', 'keep', 'send'], ['oohh', 'sorri', 'sad', 'never', 'notic', 'dollar', 'sign', 'oxteach'], ['damn', 'damn', 'blast', 'lmhr', 'tomorrow', 'sam', 'run', 'could', 'see', 'could', 'join', 'next', 'week'], ['boor', 'nowher', 'go'], ['ugli', 'betti', 'soo', 'sad'], ['boognish', 'wish', 'clemmi', 'would', 'nice'], ['research', 'guilt', 'spent', 'day', 'feel', 'sorri', 'cold', 'need', 'spend', 'signific', 'time', 'code', 'weekend'], ['hate', 'snood', 'lol', 'sorri', 'not', 'know', 'peopl', 'play'], ['show', 'fluid', 'decreas', 'slight', 'not', 'look', 'like', 'let', 'bed', 'anytim', 'soon', 'follow', 'next', 'week'], ['follow', 'sad'], ['wait', 'get', 'home', 'watch', 'new', 'moon', 'trailer', 'clip', 'stupid', 'work', 'internet', 'access', 'restrict'], ['never', 'mind', 'close', 'sorri', 'miley'], ['hey', 'scare', 'last', 'night', 'sever', 'bad', 'nightmar'], ['mcm', 'still', 'next', 'main', 'event', 'happi', 'get', 'back', 'run', 'soon', 'still', 'day'], ['quot', 'quot', 'babi', 'phat', 'phat', 'farm', 'applebottom', 'amp', 'fubu', 'come', 'pretti', 'weak', 'doubl'], ['miss', 'red', 'rock', 'sad', 'coupl', 'day'], ['fantast', 'week', 'london', 'atroci', 'hour', 'journey', 'home'], ['alright', 'thank', 'pal', 'bore', 'witless', 'bore', 'hell', 'realli', 'want', 'go', 'somewher'], ['nic', 'idea', 'go', 'money', 'gone'], ['wow', 'way', 'discourag', 'not', 'know', 'anymor', 'fml'], ['tri', 'best', 'hope', 'not', 'get', 'laid'], ['dam', 'miss', 'hollyoak'], ['think', 'twitter', 'not', 'like'], ['jus', 'found', 'final', 'lint', 'thingi', 'dryer', 'lol', 'bent', 'outta', 'shape', 'mad'], ['ah', 'not', 'work', 'want', 'say', 'love', 'beach', 'girl', 'guy', 'ace', 'england', 'love', 'xx'], ['go', 'not', 'crap', 'anymor'], ['ok', 'need', 'hurri', 'come', 'wtf', 'want', 'go', 'hoomme'], ['definit', 'miss', 'listen', 'spill', 'canva', 'miss', 'see', 'live', 'well', 'quot', 'stitch', 'oover', 'oover', 'oh', 'quot'], ['dissapoint', 'everi', 'damag', 'ugli', 'love', 'bug'], ['feel', 'crappi', 'today'], ['peopl', 'smoke', 'pot', 'f', 'stupid', 'instant', 'turn', 'drug', 'general', 'serious'], ['prom', 'tonight', 'bad', 'not', 'go'], ['way', 'nottingham', 'icof', 'tonight', 'gig', 'umtil', 'download', 'fail'], ['bad', 'day', 'work', 'involv', 'minor', 'accid', 'everyth', 'ok', 'far', 'cut', 'immedi'], ['know', 'definit', 'go', 'tri', 'see', 'weekend'], ['squar', 'b', 'sad', 'not', 'well', 'squar', 'crochet', 'bee', 'poli', 'fibe'], ['squar', 'b', 'sad', 'not', 'well', 'squar', 'crochet', 'bee', 'poli', 'fibe'], ['squar', 'b', 'sad', 'not', 'well', 'squar', 'crochet', 'bee', 'poli', 'fibe'], ['ps', 'raing'], ['not', 'figur', 'repli', 'tumblr', 'sorri', 'not', 'get', 'nyc', 'not', 'go', 'event'], ['listen', 'bust', 'miss'], ['not', 'happi', 'camper', 'not', 'good', 'day'], ['sister', 'graduat', 'amp', 'not', 'afford', 'buy', 'anyth'], ['delay', 'midnight', 'bloodi', 'thomson'], ['worri', 'arabell', 'tweet', 'pleas', 'text'], ['suppos', 'visit', 'austin', 'not', 'feel', 'well', 'sinc', 'vaca', 'would', 'said', 'hello', 'sure'], ['run', 'errand', 'geeta', 'feel', 'like', 'plagu'], ['miss', 'matt', 'today'], ['ahh', 'poor', 'feet'], ['ha', 'got', 'anoth', 'followfriday', 'take', 'oh', 'list', 'thank', 'lot', 'ya', 'jerk'], ['bad', 'day'], ['music', 'mann', 'inbox', 'still', 'empti'], ['wish', 'friend', 'could', 'spend', 'night'], ['trade', 'weather', 'gloomi', 'today', 'la'], ['feel', 'actual', 'heartbreak', 'last', 'night', 'x'], ['unlik', 'pos', 'oakland', 'hate'], ['broke', 'vase', 'not', 'even', 'get', 'chanc', 'use'], ['well', 'let', 'us', 'bless', 'togeth', 'yes', 'feel', 'better', 'would', 'sick', 'though', 'littl', 'spare'], ['oh', 'beg', 'add', 'nite', 'dublin', 'octob', 'pleeasse'], ['tire', 'last', 'group', 'day', 'perform', 'interest', 'one'], ['not', 'got', 'text', 'back', 'sod', 'look', 'fabul'], ['would', 'vote', 'miley', 'live', 'ireland', 'fine', 'good', 'luck', 'bye', 'irish', 'sorcha', 'xx'], ['sigh', 'last', 'day', 'work', 'sadifi', 'heartpart'], ['miss', 'math', 'trade'], ['wish', 'play', 'prom'], ['oh', 'oprah', 'jump', 'front'], ['oo', 'yuk', 'not', 'good', 'retch', 'tweet'], ['pour', 'right'], ['wish', 'could', 'go', 'town', 'weekend'], ['got', 'poor', 'thing', 'not', 'go', 'choic', 'much', 'longer', 'though'], ['not', 'listen', 'music', 'work', 'probabl', 'could', 'tri', 'start', 'hunt', 'new', 'job', 'monday'], ['aww', 'fun', 'take', 'someth'], ['way', 'work', 'go', 'miss', 'general', 'hospit'], ['hunrgi', 'right', 'heel', 'kill', 'hard', 'walk'], ['twitter', 'c', 'r', 'c', 'k'], ['realli', 'not', 'like', 'weather'], ['excit', 'see', 'forev', 'lil', 'gettin', 'marri', 'ps', 'realli', 'get', 'tattoo', 'lol'], ['thank', 'god', 'overcast', 'ivori', 'tri', 'get', 'mom', 'take', 'lunch', 'egh', 'not', 'look', 'like', 'go', 'work'], ['go', 'come', 'venu', 'said', 'could', 'not', 'afford', 'open', 'cancel', 'wish'], ['shower', 'head', 'broke', 'shower', 'shot', 'straight', 'get', 'welt', 'later'], ['kh', 'thing', 'weeaboo', 'still', 'prefer', 'english', 'impati', 'haha'], ['would', 'get', 'troubl', 'not', 'follow', 'logic', 'sorri'], ['speedbump', 'suck', 'got', 'piss'], ['feel', 'loop', 'twitter', 'desktop', 'not', 'listen', 'week', 'read', 'engadget', 'age'], ['dude', 'butt', 'itch', 'not', 'scratch', 'peopl', 'r'], ['sorri', 'parent', 'come', 'around', 'go', 'eat', 'richardson', 'raain', 'cheeck'], ['worri', 'bri', 'bronchiti', 'sinus', 'infect', 'poor', 'babi'], ['break', 'daili', 'build', 'broke', 'daili', 'plan', 'well'], ['ooh', 'ouch', 'love', 'weather', 'damn', 'cover', 'sugar', 'x'], ['thank', 'though', 'tri', 'posit', 'wine', 'may', 'not', 'help', 'lol', 'wish', 'could', 'make', 'gig'], ['watch', 'one', 'day', 'middl', 'play', 'realli', 'not', 'hold'], ['feel', 'great', 'still', 'miss'], ['hi', 'net', 'yayi', 'short', 'time', 'though'], ['ahh', 'sqeaki', 'clean', 'fresh', 'even', 'though', 'wear', 'dirti', 'cloth', 'love', 'two', 'half', 'men', 'amaz'], ['charbotgreen', 'suspend', 'quot', 'unusu', 'activ', 'quot'], ['boreedd'], ['noth', 'make', 'last', 'time', 'check', 'jar', 'curri', 'sauc', 'pepper', 'insid', 'disappoint'], ['would', 'love', 'nicki', 'poo', 'bri', 'amp', 'howi', 'amp', 'aj', 'wish', 'happi', 'birthday', 'pleas', 'pleas', 'pleas', 'pleas', 'please', 'guy'], ['think', 'although', 'think', 'ignor', 'not', 'good', 'day'], ['ahahaha', 'happen', 'time', 'poor', 'angela'], ['sneez', 'hurt', 'back'], ['damn', 'real', 'sorri', 'hear'], ['aww', 'miss', 'not', 'ate'], ['know', 'shit', 'tri', 'sort', 'portfolio', 'not', 'know', 'put'], ['aww', 'sorri', 'honey', 'stink'], ['peopl', 'come', 'kill', 'mous', 'monday', 'mix', 'emot', 'mean', 'live', 'desk', 'drawer'], ['yeahh', 'ryland', 'amaz', 'xd', 'not', 'get', 'hug', 'boo', 'suarez', 'seem', 'bit', 'think', 'would', 'woken'], ['not', 'want', 'go', 'cri', 'way', 'home'], ['eaten', 'feel', 'extrem', 'bloat', 'not', 'fun', 'part'], ['say', 'find', 'hard', 'sell', 'etsi', 'sometim', 'discourag'], ['outlook', 'not', 'good'], ['itchi', 'boob'], ['dude', 'hear', 'ya', 'two', 'week', 'tomorrow', 'feel', 'old'], ['realli', 'hyperventil', 'hair', 'yes', 'certain'], ['brother', 'irrit', 'not', 'take', 'amp', 'wear', 'cloth', 'without', 'ask', 'want', 'punch', 'violent', 'shit'], ['upset', 'fact', 'last', 'year'], ['sorri', 'not', 'make'], ['look', 'nice', 'never', 'knew', 'vhs', 'short', 'life', 'span', 'hope', 'fav', 'vhs', 'not', 'dead'], ['part', 'start', 'feel', 'effect', 'tan'], ['twitter', 'not', 'let', 'updat', 'onlin', 'updat', 'box', 'not', 'work'], ['wait', 'amp', 'cramp'], ['ok', 'day', 'jo', 'bit', 'bruis'], ['mee', 'listen', 'sad', 'music', 'miss', 'ps'], ['wrote', 'leadership', 'essay', 'founder', 'expans', 'not', 'went', 'well', 'tri', 'break', 'america', 'lot', 'money', 'burn'], ['yep', 'b', 'automat', 'fall', 'someon', 'person', 'smthng', 'like', 'way', 'suck'], ['sorri'], ['lmao', 'shush', 'ill', 'come', 'joy', 'multipl', 'mouth', 'ulcer', 'think', 'come', 'back', 'heal'], ['sad', 'not', 'know', 'life', 'everyth', 'done', 'sinc', 'age', 'toward', 'healthcar', 'nurs'], ['good', 'day', 'sir', 'hungri'], ['peopl', 'make', 'not', 'like', 'yucki', 'thngs', 'not', 'cut', 'deal', 'w', 'hr', 'tear', 'kill'], ['ayi', 'fml', 'noth', 'perfect'], ['yea', 'feel', 'like', 'bein', 'ignor'], ['start', 'work', 'miss', 'like', 'not', 'see', 'till', 'tuesday'], ['sorri', 'realli', 'suck'], ['thing', 'suck', 'holiday', 'worri', 'pet', 'cat', 'tgthr', 'quot', 'cat', 'resort', 'quot', 'jonesi', 'not', 'much', 'compani'], ['miss', 'much'], ['appl', 'expect', 'launch', 'new', 'iphon', 'summer', 'hi', 'name', 'judi', 'addict', 'appl', 'product'], ['twit', 'twit', 'twitter', 'tri', 'quot', 'legal', 'quot', 'watch', 'movi', 'onlin', 'not', 'happen'], ['aww', 'would', 'virtual', 'high', 'five', 'make', 'better'], ['write', 'exam', 'saturday', 'illeg', 'weekend'], ['not', 'want', 'spanish', 'today'], ['know', 'not', 'say', 'fuck', 'horni', 'hell'], ['home', 'not', 'feel', 'like', 'go', 'work', 'tomorrow'], ['wtf', 'tweet', 'not', 'post', 'super', 'excit', 'weekend', 'lt'], ['oh', 'noe', 'hope', 'feel', 'better', 'soon', 'head', 'sympath'], ['fulli', 'obsess', 'burrito', 'enchilado', 'style', 'mom', 'not', 'want', 'go', 'though'], ['got', 'sad'], ['wish', 'not', 'go', 'work', 'tonight'], ['readi', 'eastend', 'go', 'good', 'one', 'last', 'bgt', 'semi', 'final', 'final', 'tomorrow', 'night', 'though', 'excit', 'stuff'], ['yes', 'final', 'tech', 'mean', 'noth', 'sinc', 'current', 'unemploy'], ['biggest', 'food', 'pit', 'ever', 'miss', 'across', 'school'], ['fire', 'call', 'today', 'miss'], ['go', 'go', 'brother', 'show', 'still', 'feel', 'like', 'poo'], ['anyon', 'els', 'bad', 'friday', 'not', 'fun', 'day', 'today'], ['trickeri', 'exasper', 'see', 'gay', 'pride', 'hijack', 'polit', 'bigger', 'uglier', 'anyth', 'meant'], ['tri', 'open', 'file', 'virtual', 'system', 'dryer', 'offic'], ['poor', 'toni', 'come', 'play', 'scrabbl', 'facebook'], ['fristi', 'think'], ['hey', 'sorri', 'not', 'get', 'touch', 'sooner', 'not', 'go', 'bologna', 'way'], ['want', 'danc', 'not', 'realli', 'listen', 'song', 'sinc', 'left', 'make', 'miss'], ['oh', 'phew', 'scare', 'not', 'access', 'mexico'], ['today', 'sad', 'cat', 'year', 'stop', 'eat', 'sick'], ['hey', 'left', 'nippl', 'never', 'respond', 'bacc'], ['parent', 'wacht', 'tv', 'terribl', 'noth', 'els', 'sad'], ['sad', 'camera', 'hand', 'geek', 'squad', 'week'], ['hm', 'seem', 'blog', 'mark', 'phish', 'site'], ['thank', 'know', 'happen', 'awhil'], ['lost', 'favorit', 'pen', 'good', 'thing', 'back'], ['internet', 'train', 'aw'], ['omginorit', 'would', 'fanci', 'tophat', 'time', 'realli', 'bad', 'not', 'grow', 'handlebar', 'moustach'], ['leav', 'work', 'go', 'crystal', 'search', 'licens', 'pick', 'bia', 'head', 'vega', 'ugh', 'tire', 'alreadi'], ['feel', 'soo', 'close', 'hard', 'not', 'not', 'point', 'ugh'], ['damn'], ['tire', 'gloomi', 'happeen', 'ro', 'summer'], ['wash', 'dish', 'hard'], ['tire', 'beyond', 'reason', 'would', 'rather', 'anyth', 'els', 'tire'], ['cri', 'like', 'fukn', 'babi', 'today', 'durin', 'da', 'senior', 'miss', 'senior', 'friend'], ['hurt', 'foot', 'gym', 'class'], ['not', 'like'], ['bye', 'bye', 'edinburgh', 'not', 'want', 'leav'], ['kind', 'piss', 'realli', 'want', 'go', 'see', 'drag', 'hell', 'christina', 'garrit', 'work', 'till', 'go'], ['helloo', 'tom', 'gig', 'tonight', 'sorri', 'not', 'sure', 'show', 'miss', 'uk', 'hi', 'hi', 'hi', 'hi', 'hi', 'xx'], ['pretti', 'good', 'especi', 'free', 'hot', 'waitress', 'think', 'back', 'work', 'unfortun'], ['denomin', 'librari', 'everyth', 'block'], ['ouch', 'acid', 'reflux', 'hurt'], ['justin', 'blanket', 'would', 'black', 'lint', 'white', 'skirt'], ['not', 'run', 'annapoli', 'half', 'marathon', 'weekend', 'fail', 'meet', 'register', 'deadlin', 'amp', 'complet', 'fill'], ['nightmar', 'last', 'night', 'cri', 'think', 'scar', 'life'], ['miss', 'go', 'irvin', 'liz', 'reminisc', 'adventur'], ['pain', 'sound', 'world', 'cri', 'someon', 'love', 'wors', 'not', 'even', 'hold', 'say', 'sorri'], ['not', 'miss', 'mine', 'everybodi', 'els', 'east', 'coast'], ['go', 'laundri', 'hotel', 'miss', 'though', 'ignor', 'even', 'check'], ['coincid', 'friend', 'cancel', 'movi', 'date'], ['miami', 'right', 'not', 'see', 'hand', 'deliveri', 'near', 'futur', 'unfortun'], ['woke', 'not', 'want', 'go', 'work'], ['done', 'geolog', 'realli', 'miss', 'favorit', 'sister', 'especi', 'not', 'go', 'banquet', 'tonight'], ['depress', 'right', 'not', 'know'], ['srri', 'not', 'go', 'paintbal', 'tonight', 'good', 'movi'], ['give', 'day', 'old', 'babi', 'poor', 'thing'], ['shit'], ['holi', 'wow', 'think', 'could', 'slept', 'day', 'soo', 'tire'], ['recent', 'experi', 'anyth', 'go', 'fear', 'might', 'go', 'indian', 'food', 'not', 'good', 'peopl', 'not', 'good'], ['well', 'complet', 'lame', 'sorri', 'dude'], ['yayayyayayay', 'toy', 'stori', 'come', 'june', 'though'], ['damn', 'not', 'go', 'follow', 'son'], ['pic', 'not', 'work', 'twitter'], ['sad', 'coz', 'hyd', 'theka', 'not', 'beer'], ['wish', 'could', 'share', 'problem', 'someon'], ['yeah', 'freakin', 'suck'], ['never', 'call', 'anymor', 'good', 'ross', 'town', 'might', 'go', 'show'], ['see', 'not'], ['glad', 'friday', 'week', 'schol', 'left', 'glad', 'almost', 'summer', 'though'], ['somebodi', 'buy', 'plane', 'ticket', 'home', 'miss', 'girl'], ['fee', 'pain', 'ladi', 'ga', 'ga', 'drive', 'insan', 'oh', 'dear', 'god', 'song', 'head'], ['elliott', 'claim', 'steak', 'shake', 'excit', 'anymor'], ['fb', 'hate', 'tri', 'amp', 'support', 'local', 'bookstor', 'amp', 'never', 'need'], ['need', 'memor', 'julius', 'caesar', 'line'], ['yet', 'start', 'paper', 'due', 'tonight', 'motiv'], ['figur', 'start', 'rain', 'freed', 'work'], ['well', 'man', 'truck', 'mani', 'mile', 'away'], ['ugh', 'boom', 'boom', 'pow', 'stuck', 'head', 'hate', 'song'], ['glad', 'hear', 'though', 'miss', 'watch', 'outsid', 'igloo', 'day'], ['poor', 'babi', 'dog', 'chachi', 'surgeri', 'todayi'], ['still', 'lose', 'follow', 'peopl', 'hate', 'world', 'hate', 'mayb', 'read'], ['food', 'mah', 'hous'], ['quot', 'want', 'go', 'prom', 'one', 'day', 'quot', 'wish', 'go', 'prom', 'even', 'though', 'not', 'myfriend', 'happi'], ['hate', 'not', 'bring', 'ipod', 'school'], ['followillfriday', 'suck', 'teach', 'peopl', 'nice', 'fucker', 'drool', 'notion'], ['oh', 'god', 'everyon', 'die', 'main', 'justin', 'depress'], ['heyi', 'not', 'feel', 'good', 'cuz', 'wat', 'happen', 'yesterday', 'car', 'accdentt'], ['babi', 'shut'], ['not', 'heavi', 'rain', 'wk'], ['almost', 'grandma', 'internet', 'never', 'catch', 'twitter'], ['got', 'heart', 'rip', 'love', 'guy'], ['quick', 'catch', 'miss', 'neighbour', 'poor', 'libbi'], ['sad', 'not', 'see', 'basshunt', 'metroplex', 'weekend'], ['far', 'sick', 'sing', 'got', 'post', 'nasal', 'drip', 'sore', 'throat', 'sent', 'sorri', 'not', 'email'], ['wish', 'atl'], ['aw', 'crap', 'ipod', 'thin', 'gray', 'line', 'across', 'screen', 'not', 'drop', 'take', 'good', 'care', 'long', 'die'], ['last', 'night', 'suck', 'mani', 'bad', 'dream', 'spider', 'rogu', 'octupi'], ['fml', 'not', 'car', 'prohibit', 'find', 'job'], ['bore'], ['bad', 'mood'], ['sucki', 'sucki', 'homework'], ['bad', 'day'], ['ugh', 'still', 'sick', 'calgari', 'cold', 'last', 'forev'], ['alway', 'headach'], ['still', 'stupid', 'philli', 'trip', 'sad', 'day'], ['still', 'feelin', 'like', 'blah', 'hour'], ['tri', 'resco', 'mobileform', 'toolkit', 'sampl', 'trial', 'messag', 'ruin', 'everyth', 'sampl', 'bug', 'run', 'slow', 'poor', 'impress'], ['figur', 'strong', 'guy', 'suppos', 'put', 'heavi', 'thing', 'top', 'shelv', 'ouch'], ['still', 'think', 'fkc', 'meal', 'miss', 'yesterday'], ['join', 'club', 'dougi', 'cold', 'x'], ['pour', 'outsid', 'clean', 'locker', 'bookbag', 'heavi', 'back', 'arm', 'kill'], ['oh', 'damn', 'realli', 'suck'], ['gone', 'miss', 'kay', 'way', 'alreadi'], ['twitter', 'slow', 'today'], ['feelin', 'lone', 'spendin', 'last', 'hour', 'friend'], ['yeah', 'got', 'admir', 'someon', 'take', 'job', 'satisfact', 'nth', 'degre'], ['want', 'karaok', 'get', 'go', 'work', 'lame'], ['oh', 'mann', 'likey', 'sad', 'not', 'bein', 'auction', 'twpp', 'tonight'], ['came', 'home', 'think', 'mayb', 'someth', 'good', 'eat', 'appar', 'not'], ['want', 'go', 'extra', 'show', 'realli', 'bad'], ['hate', 'go', 'work', 'night', 'micro', 'least', 'get', 'work'], ['poor', 'week'], ['gah', 'suppos', 'studi', 'sneez', 'get', 'even', 'tire'], ['goodby', 'innoc'], ['sad', 'say', 'fat', 'tear'], ['lmao', 'not', 'fake', 'pari', 'anymor', 'look', 'bio', 'way', 'not', 'log', 'onto', 'forum'], ['drs', 'bever', 'scare', 'crap'], ['uh', 'oh'], ['start', 'shit', 'leav', 'shit', 'decis'], ['last', 'free', 'friday'], ['draw', 'pictur', 'show', 'much', 'miss', 'anyon', 'blame', 'hes', 'hour', 'away', 'frm'], ['brazil', 'loov', 'miss', 'may', 'perfect', 'day'], ['dread', 'week', 'groceri', 'shop'], ['hey', 'not', 'spoken', 'london', 'bff', 'wish', 'vote', 'brodi', 'soon', 'ill', 'tell', 'vote'], ['got', 'bit', 'car', 'accid', 'poor', 'patrick'], ['get', 'dalla', 'concert', 'tix', 'sold'], ['beauti', 'nice', 'day', 'stuck', 'insid'], ['oh', 'yes', 'quit', 'nice', 'liep', 'zojuist', 'vast', 'start', 'paint', 'glove'], ['grizzli', 'bear', 'concert', 'tonight', 'not', 'wait', 'cold', 'though'], ['suggest', 'loan', 'defer'], ['anybodi', 'beer', 'right', 'hate', 'drink', 'alon', 'mrs', 'oot', 'hand', 'mrs', 'oot'], ['never', 'sent', 'carri', 'asshol', 'asshol', 'miss'], ['damn', 'internet', 'jus', 'cut', 'bout', 'shoot', 'sum', 'guy', 'eye'], ['noo', 'miss', 'soo', 'much', 'gaah'], ['hm', 'tweetdeck', 'lost', 'old', 'repli'], ['pray', 'famili', 'beav', 'sorri', 'loss'], ['urgh', 'slept', 'work', 'still', 'done', 'revis', 'snappi', 'today', 'total', 'fat', 'day'], ['headaach'], ['iva', 'alreadi', 'miss', 'yoo', 'sweet', 'xx'], ['yeah', 'not', 'sound', 'good'], ['crappi', 'music', 'radio'], ['way', 'fun'], ['meeaann', 'peopl', 'make', 'mistak', 'ok', 'lol'], ['arriv', 'cargo', 'red', 'toronto', 'postpon', 'til', 'tomorrow', 'afternoon', 'go', 'miss', 'lil', 'bro', 'wait'], ['organ', 'chemistri', 'ah', 'confus'], ['not', 'feel', 'well'], ['get', 'new', 'cellphon', 'wednesday', 'lg', 'voyag', 'soo', 'sweet', 'not', 'wait', 'long', 'though'], ['not', 'much', 'sugar', 'b', 'tast', 'lord', 'put', 'ya', 'not', 'fun', 'way'], ['thunder', 'amp', 'lightn', 'scaredededed'], ['sad', 'not', 'listen', 'sob'], ['know', 'make', 'us', 'watch', 'award', 'sunday', 'want', 'shower', 'water'], ['sorri', 'one', 'hell', 'day', 'flood'], ['wait', 'friend', 'call', 'email', 'bleh', 'feel', 'unlov'], ['wonder', 'mother', 'natur', 'make', 'life', 'miser'], ['love', 'dessert', 'use', 'live', 'live', 'tx', 'not', 'visit'], ['tire', 'tweeter'], ['screw', 'guy', 'prom', 'pictur'], ['rais', 'price', 'work', 'mean', 'peopl', 'tip', 'less', 'yay'], ['want', 'cri'], ['left', 'sad', 'wait', 'mom', 'come', 'home', 'want', 'papa', 'john', 'dinner'], ['gosh', 'watchin', 'cosmet', 'surgeri', 'nightmar', 'itv', 'aw'], ['saw', 'dark', 'burgundi', 'scion', 'xb', 'dark', 'shade', 'make', 'look', 'like', 'minivan', 'shawdow', 'line', 'curv', 'lost'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['oo', 'good', 'luck', 'dunde', 'tonight', 'not', 'cos', 'ton', 'uni', 'work'], ['soo', 'deffo', 'miss', 'music', 'channel'], ['great', 'check', 'get', 'work', 'block', 'sim', 'work'], ['friday', 'feel', 'bore', 'time', 'fun', 'today', 'not', 'much', 'mood', 'either'], ['stupid', 'job', 'not', 'know'], ['nice', 'natali', 'taught', 'jameson', 'quot', 'quot'], ['research', 'ecolog', 'friend', 'carrier', 'bag', 'not', 'cheap', 'eco', 'friend'], ['pixi', 'number', 'give', 'energi', 'rush', 'play', 'festiv', 'close', 'june', 'work', 'not', 'go'], ['noo', 'favorit', 'cowork', 'got', 'new', 'job', 'marc', 'jacob', 'show', 'not', 'fair', 'not', 'want', 'go'], ['depress'], ['kind', 'turn', 'buy', 'dig', 'deeper', 'hole', 'etc'], ['new', 'dress', 'look', 'sort'], ['unfair', 'want', 'go'], ['whew', 'final', 'done', 'edit', 'friendster', 'account', 'haha', 'oh', 'geez', 'hungri'], ['walk', 'past', 'school', 'went', 'junior', 'high', 'torn'], ['stuck', 'css', 'hell', 'help', 'framework', 'unless', 'tool', 'alreadi', 'use', 'framework'], ['pff', 'not', 'triumph', 'cuz', 'gone', 'nap', 'lmao'], ['soo', 'not', 'want', 'work', 'tomorrow', 'half', 'day', 'though', 'hope', 'sun', 'stay', 'go', 'go', 'get', 'shower', 'tweet'], ['gettin', 'fuel', 'bad', 'one', 'read'], ['babi', 'adventur', 'hour', 'car', 'lake', 'ann', 'mi', 'admit', 'cri', 'littl', 'truck', 'pull'], ['not', 'day'], ['damn', 'burn', 'leg', 'x'], ['yea', 'babi', 'go', 'miss', 'much'], ['crash', 'wi', 'mayfield'], ['long', 'day', 'still', 'mow', 'lawn'], ['hate', 'sick', 'make', 'soup'], ['heard', 'seem', 'overreact'], ['think', 'tamera', 'show', 'cw', 'abc', 'fam', 'not', 'appreci', 'like'], ['home', 'recov', 'major', 'liver', 'surgeri', 'alot', 'pain'], ['screw', 'sat', 'us'], ['omg', 'amp', 'ms', 'pantri', 'call', 'name', 'ignor', 'day', 'drive', 'complet', 'insan', 'mani', 'calori'], ['feel', 'like', 'dork', 'use', 'wrong', 'ping', 'group'], ['sometim', 'knowledg', 'not', 'good', 'thing'], ['sun', 'not', 'cool'], ['luck', 'either', 'nut', 'hope', 'see'], ['not', 'feelin', 'well', 'feel', 'soo', 'hate', 'bein', 'sick', 'summer'], ['hour', 'left', 'teenag', 'ill', 'sleepin', 'hour', 'depress'], ['think', 'niec', 'got', 'sicke', 'lame'], ['man', 'realli', 'sorri'], ['finish', 'play', 'mahjong', 'lost', 'mag', 'weisheng'], ['want', 'go', 'basshunt', 'concert', 'tonight', 'want'], ['burnt', 'hand', 'cooker', 'hurt'], ['not', 'find', 'origin', 'ex', 'model', 'version', 'not', 'much'], ['let', 'today', 'last', 'day', 'yippe', 'jackson', 'tyler', 'morri', 'alway', 'love', 'never', 'forgotten'], ['oh', 'wish', 'chick', 'fila', 'defin', 'jealous'], ['think', 'niec', 'got', 'sicke', 'lame'], ['told', 'dan', 'not', 'say', 'anyth', 'anymor', 'super', 'sad'], ['freakin', 'hot', 'humid', 'today'], ['miss', 'boo'], ['ugh', 'got', 'work', 'think', 'dang', 'taxi', 'peopl', 'not', 'say', 'well', 'fault'], ['eat', 'wich', 'yumm', 'not', 'think', 'sinc', 'season', 'end'], ['weather', 'gross', 'outsid', 'put', 'bad', 'mood'], ['sad', 'day', 'beer', 'drink', 'movi', 'goer', 'speakeasi', 'theater'], ['not', 'good', 'mood', 'mama', 'away', 'sis', 'not', 'talk', 'either', 'boy', 'not', 'see', 'weekend', 'plan'], ['man', 'fuck', 'test', 'play', 'cod', 'day', 'till', 'summer'], ['much', 'outsid', 'killen', 'eye'], ['wish', 'would', 'say', 'unfollow'], ['aww', 'miss', 'twitpic'], ['gut', 'say', 'replac', 'applianc', 'instead', 'repair', 'want', 'smart', 'tri', 'repair', 'replac', 'right', 'choic'], ['want', 'soo', 'bad', 'hate', 'miss', 'gumbo', 'shoot', 'tommorrow', 'gumbo'], ['oh', 'dear', 'serious', 'one', 'prevent', 'bite', 'itchi', 'distract', 'edit', 'sigh'], ['not', 'die', 'lunch', 'date', 'rocio', 'come', 'plus', 'new', 'shoe', 'ugh'], ['mad', 'hell', 'someon', 'stole', 'pink', 'amp', 'black', 'leapord', 'print', 'pump', 'want', 'wear', 'today', 'god', 'glori', 'bless', 'abund'], ['yea', 'go', 'need', 'put', 'blunt'], ['know', 'money', 'pedicur'], ['work', 'depress', 'hell', 'want', 'someon', 'fukin', 'come', 'holiday', 'august'], ['yep', 'tail', 'leg'], ['go', 'work', 'marri', 'wud', 'never', 'see'], ['well', 'aunt', 'dog', 'die', 'understand', 'devast', 'probabl', 'head', 'soon', 'support'], ['gah', 'jitteri', 'upset', 'absolut', 'reason'], ['rest', 'peac', 'marshal'], ['need', 'buy', 'iphon', 'good', 'app', 'work', 'though'], ['write', 'yearbook', 'make', 'want', 'cri'], ['thank', 'man', 'sort', 'ever', 'rememb'], ['cold', 'lost', 'wallet'], ['not', 'like', 'episod', 'though', 'sad'], ['yeah', 'feel', 'sad', 'though'], ['damn', 'sorri', 'hear', 'tina'], ['pretti', 'bad', 'qualiti', 'probabl', 'worst', 'pic', 'post', 'till', 'date'], ['assfuck', 'quot', 'sorri', 'quot', 'roll', 'okay', 'gave', 'sucker'], ['thingsmummysaid', 'result', 'broken', 'condom'], ['amaz', 'brand', 'new', 'pari', 'neb', 'broke', 'go', 'figur', 'weekend', 'look', 'like', 'not', 'get', 'anoth', 'one', 'next', 'week', 'sigh'], ['not', 'fair', 'not', 'vote', 'say', 'vote', 'close', 'vote', 'everyday', 'could', 'vote', 'like'], ['unhappi', 'news', 'plan', 'experiment', 'iter', 'fusion', 'reactor', 'becom', 'much', 'delay'], ['oh', 'lucki', 'need', 'send', 'mine', 'away', 'get', 'fix'], ['feel', 'lazi', 'watch', 'peopl', 'work', 'roof', 'kat', 'woman'], ['wow', 'trip', 'tampa', 'come', 'end'], ['move', 'anywher', 'long', 'freak', 'dishwash', 'despis', 'dish'], ['umm', 'school', 'subway', 'mom', 'noth', 'planss', 'ruin'], ['know', 'feel', 'head', 'get', 'stuffier', 'stuffier', 'not', 'fun'], ['give', 'sis', 'show', 'crib', 'sunday', 'incred', 'jewelri', 'design', 'gone'], ['phone', 'disconnect', 'internet', 'right', 'middl', 'uber', 'also', 'first', 'tweet', 'insid', 'steam'], ['thank', 'tip', 'otherinbox', 'not', 'work', 'outlook'], ['whope', 'tgif', 'fun', 'job'], ['work', 'starv'], ['total', 'forgot', 'phone', 'home', 'morn'], ['show', 'lunch', 'eat', 'solo', 'noodl'], ['fair', 'upset', 'fact', 'session', 'commenc', 'without', 'sam'], ['demi', 'pretti', 'bang', 'everyth', 'look', 'grown', 'pictur', 'like', 'bang'], ['bucher', 'class', 'cri'], ['happi', 'b', 'school', 'peopl', 'piss', 'sometim'], ['hi', 'anybodi', 'els', 'problem', 'karma', 'site', 'not', 'work'], ['hard', 'time', 'talk', 'new', 'peopl', 'pretti', 'sure', 'not', 'make', 'good', 'impress'], ['everi', 'gas', 'station', 'look', 'postcard', 'luck'], ['backk', 'hungri', 'hell', 'not', 'ate', 'today'], ['suck'], ['ugh', 'noth', 'valley', 'serious', 'got', 'move'], ['think', 'mow', 'lawn', 'not', 'allow', 'done', 'teenag', 'suck', 'well', 'mow'], ['consid', 'lucki', 'not', 'rain', 'age', 'depress'], ['help', 'comput', 'virus', 'place', 'etsi', 'shop', 'vacat', 'mode', 'sort', 'not', 'know'], ['feel', 'way'], ['wish', 'could', 'go', 'see', 'ya', 'warp', 'sure', 'though'], ['feel', 'realli', 'dizzi', 'not', 'soo', 'good'], ['commentari', 'sad', 'sad'], ['use', 'sennheis', 'cx', 'earbud', 'month', 'love', 'not', 'know', 'avail', 'mu', 'though'], ['kid', 'stronger'], ['arthriti', 'realli', 'poor', 'would', 'pain', 'not', 'old', 'mani', 'squat'], ['oo', 'godd', 'vodafon', 'troubl', 'network'], ['start', 'eight', 'morn', 'still', 'go', 'hate', 'alway', 'want', 'friggin', 'password'], ['japanes', 'exchang', 'student', 'cutest', 'thing', 'ever', 'seen', 'serious', 'haha', 'want', 'put', 'pocket', 'amp', 'keep'], ['hospit', 'uncl', 'surguri', 'heart', 'attack'], ['serious', 'problem', 'concentr', 'press', 'releas', 'sleepi', 'eye', 'right'], ['ii', 'not', 'either'], ['park', 'meter', 'comput', 'plus', 'got', 'jip', 'free', 'minut', 'button', 'not', 'work'], ['dream', 'cuddl', 'ladi', 'wake', 'alon', 'not', 'fun'], ['knee', 'hurt', 'bad', 'get', 'suffer', 'work', 'togeth'], ['still', 'not', 'internet', 'home', 'fuck'], ['well', 'kris', 'make', 'sick', 'panda'], ['know', 'june', 'go', 'good', 'go', 'se', 'even', 'come'], ['lure', 'foot', 'massag'], ['wish', 'could', 'twitter', 'book', 'expo', 'recept', 'javitz', 'horribl'], ['reali', 'book', 'side', 'amp', 'not', 'studyin', 'sure'], ['everyon', 'talk', 'goodi', 'want'], ['not', 'like', 'up', 'much', 'today'], ['unfortunet', 'wish', 'mean', 'sometim', 'like', 'twice', 'yr', 'parti', 'not', 'alway'], ['dio', 'acaban', 'de', 'tocar', 'pain', 'pure', 'heart', 'en', 'el', 'primavera', 'sound', 'life', 'not', 'fair'], ['wish', 'wish', 'not', 'eat'], ['aww', 'omg', 'garbo', 'fake', 'play', 'one', 'song', 'haha'], ['someon', 'not', 'feel', 'good'], ['hey', 'brian', 'littrel', 'not', 'realli', 'like', 'kind', 'page', 'rigth', 'kiss', 'loev', 'guy'], ['may', 'come', 'someth', 'almost', 'tissu', 'not', 'good', 'season'], ['aaron', 'play', 'gig', 'life', 'aquat', 'parti', 'outsid', 'austin', 'think', 'mis', 'tt', 'birthday', 'parti', 'sad'], ['ok', 'not', 'realli', 'far', 'yet', 'part', 'wish', 'earlier', 'though', 'like', 'mid', 'day', 'could', 'involv'], ['pass', 'last', 'week', 'sad'], ['ah', 'know', 'microsoft', 'could', 'probbi', 'would', 'want', 'charg', 'way', 'much', 'extra'], ['absolutley', 'gut', 'ill', 'sunni', 'outsid', 'b', 'shit', 'load', 'revis', 'c', 'exam', 'tuesday'], ['hate', 'exam', 'time', 'want', 'life', 'back', 'also', 'want', 'abil', 'revis', 'back', 'ever', 'abil'], ['go', 'minut', 'sunday', 'amp', 'not', 'come', 'hear', 'ya'], ['not', 'know', 'time', 'go', 'fast'], ['serious', 'pain'], ['want', 'go', 'tierd'], ['not', 'alon', 'gut', 'miss', 'convent'], ['lay', 'alon', 'sinc', 'mook', 'soo', 'comfi', 'play', 'pen', 'thought', 'ill', 'first', 'not', 'one', 'cuddl'], ['not', 'look', 'good', 'go', 'burn', 'lampion'], ['stupid', 'freshmen', 'ruin', 'theatr', 'class', 'not', 'get', 'play', 'game', 'rest', 'school', 'year'], ['ok', 'sweet', 'whenev', 'want', 'stuck', 'bed', 'weekend'], ['man', 'weird', 'mom', 'cook', 'give', 'much', 'nutrit', 'also', 'much', 'unladylik', 'gas'], ['yeah', 'realis', 'organis', 'dun', 'let', 'perform', 'drink', 'stage', 'tight', 'malaysian', 'law', 'n', 'rule'], ['know', 'final', 'got', 'compon', 'cabl', 'day', 'instead', 'play', 'fes', 'play', 'oot'], ['oh', 'not', 'sound', 'good', 'better', 'get', 'check'], ['happi', 'friday', 'know', 'get', 'copi', 'bt', 'art', 'mel', 'fake', 'twitter', 'n', 'not', 'find', 'thank'], ['bad', 'day'], ['total', 'forgot', 'dgree', 'show', 'et', 'al', 'ensconc', 'home', 'wine', 'readi', 'bed'], ['french', 'troi', 'nobodi', 'sit', 'next', 'feel', 'littl', 'lone'], ['got', 'text', 'guy', 'not', 'like', 'name', 'guy', 'disapoint'], ['tri', 'use', 'spinelli', 'turn', 'gh', 'not', 'realli', 'work'], ['crap', 'not', 'work', 'saturday', 'amp', 'suppos', 'hang', 'friend', 'amp', 'watch', 'still', 'hang', 'jona'], ['chang', 'car', 'tire', 'cost', 'bomb'], ['wish', 'go', 'st', 'girl', 'tomorrow'], ['hot', 'weather', 'lose', 'clean', 'clean', 'heat', 'suck', 'ball'], ['believ', 'man', 'die', 'car', 'wreck', 'today', 'right', 'road', 'happen', 'still', 'car'], ['want', 'see', 'mama', 'not', 'call', 'back', 'yet'], ['quot', 'quot', 'miley', 'want', 'write', 'not'], ['hang', 'around', 'hous', 'thank', 'god', 'friday', 'nina', 'amp', 'later', 'work', 'global', 'project'], ['migran', 'kid', 'sudden', 'hyper'], ['work', 'agh', 'realli', 'need', 'go', 'day', 'go', 'add', 'schedul'], ['broke', 'ipod'], ['want', 'go', 'music', 'tonight', 'lost', 'voic'], ['wish', 'not', 'abl', 'make', 'work', 'gig', 'today'], ['broke', 'christian', 'bale', 'play', 'batman'], ['stupid', 'ipod', 'take', 'forev', 'load'], ['final', 'school', 'today', 'sit', 'librari', 'long', 'time'], ['realli', 'sorri', 'know', 'wallah', 'feel', 'life', 'shitt'], ['aww', 'hope', 'uve', 'hada', 'good', 'day', 'xx'], ['love', 'fresh', 'garden', 'tomato', 'tini', 'apart', 'patio'], ['fieldnot', 'order', 'still', 'not', 'arriv', 'week', 'still', 'book'], ['grr', 'youtub', 'not', 'let', 'watch', 'chat'], ['went', 'bought', 'bigest', 'redbul', 'could', 'find', 'go', 'long', 'day', 'offic'], ['egh', 'blah', 'boo', 'not', 'know', 'want', 'go', 'work', 'hangov', 'suckk', 'drunk', 'mess'], ['hehe', 'hate', 'cold', 'totali', 'annoy'], ['work', 'realli', 'suck', 'past', 'day', 'amp', 'meet', 'mon', 'got', 'reschedul', 'plain', 'need', 'new', 'job'], ['case', 'ipod', 'touch', 'liter', 'fall', 'apart', 'junk'], ['sad', 'face', 'moment', 'day'], ['lookin', 'spreadsheet', 'long', 'eye', 'cross'], ['bit', 'tire', 'blame', 'rain'], ['wish', 'could', 'gone', 'today', 'know', 'zach', 'look', 'forward'], ['feel', 'eye', 'hour', 'attach', 'screen', 'upload', 'new', 'summer', 'cloth', 'store'], ['havin', 'bad', 'weed', 'first', 'wisdom', 'teeth', 'ran', 'weed', 'might', 'get', 'sick', 'weed'], ['sorri', 'friend', 'swamp', 'deadlin', 'right', 'famili', 'visit', 'boot', 'charad'], ['miss', 'mine', 'not', 'fun'], ['got', 'dailybooth', 'not', 'sure', 'confus'], ['want', 'love'], ['trist'], ['birthday', 'weekend', 'not', 'find', 'ex', 'hid', 'dane', 'cook', 'ticket', 'tomorrow', 'wtf', 'want', 'birthday'], ['graduat', 'high', 'school', 'tonight', 'kind', 'sad'], ['kind', 'may', 'chicken'], ['anoth', 'friend', 'knock', 'pretti', 'soon', 'everyon', 'kid', 'goodby', 'carefre', 'youth'], ['fine', 'bit', 'tire', 'glad', 'weekend'], ['hit', 'christian', 'head', 'metal', 'bat', 'haha', 'sock', 'eye', 'haha', 'miss', 'reckless', 'littl', 'kid'], ['hungri', 'food', 'steal'], ['nice', 'lifelock', 'suit', 'brought', 'experian', 'basic', 'reduc', 'process', 'cost', 'caus', 'peopl', 'not', 'want', 'id', 'theft'], ['know', 'especi', 'sinc', 'summer', 'bore', 'tv', 'time', 'begin'], ['sick', 'wife', 'doubl'], ['noo', 'summer', 'not', 'see', 'charm', 'littl', 'face', 'summer'], ['ughh', 'not', 'feel', 'good'], ['home', 'yay', 'unpack', 'everyth', 'got', 'wash'], ['funni', 'mention', 'full', 'unopen', 'jar', 'cupboard', 'milk'], ['miss', 'need', 'tae', 'catch', 'n'], ['happi', 'googl', 'wave', 'trend', 'not', 'watch', 'video', 'certain', 'flash', 'video', 'block', 'compani', 'network'], ['sorri', 'park', 'space', 'realiz', 'not', 'delet', 'one', 'sentenc', 'copi', 'amp', 'past', 'email'], ['ugh', 'want', 'play', 'dnd', 'know', 'go', 'fail', 'final', 'need', 'studi'], ['oh', 'good', 'get', 'gooseberri', 'night', 'kati', 'not', 'come'], ['omg', 'woke', 'sleep', 'arm', 'ach', 'hurt', 'bad'], ['practic', 'whole', 'bodi', 'burn', 'not', 'bend', 'make', 'sudden', 'movement', 'arm'], ['heart', 'hurt'], ['oh', 'well', 'great', 'see', 'canadian', 'math', 'trade', 'get', 'bigger', 'though'], ['worst', 'kind', 'news'], ['easi', 'tonight', 'still', 'sick'], ['make', 'want', 'cri', 'grown', 'men', 'discuss', 'charact', 'children'], ['wonder', 'thumbnail', 'pictur', 'not', 'show', 'tweetdeck'], ['knew', 'use', 'love', 'show', 'happi', 'weekend'], ['look', 'like', 'rain', 'weekend', 'climb'], ['not', 'breath', 'well', 'turn', 'not', 'crazi', 'inflam', 'lung'], ['found', 'husband', 'grandma', 'fell', 'stair', 'amp', 'hospit', 'sever', 'broken', 'hard'], ['wonder', 'messag', 'not', 'go', 'anywher', 'tri', 'learn', 'tweet', 'amp', 'not', 'turn', 'hot'], ['stuck', 'traffic', 'way', 'costa', 'mesa'], ['not', 'vote', 'frustrad'], ['interest', 'never', 'get', 'etown', 'howev'], ['unfortun', 'stuck', 'work', 'not', 'get', 'said', 'prize'], ['watch', 'ellen', 'love', 'dish', 'tan', 'gorgeous'], ['not', 'want', 'go', 'work'], ['alway', 'get', 'left'], ['use', 'ozzi', 'osbourn', 'pillow', 'mom', 'threw', 'miss', 'thing'], ['problem', 'earphon', 'get', 'not', 'last', 'month', 'matter', 'brand', 'price'], ['got', 'back', 'er', 'cut', 'tri', 'cook', 'nice', 'lunch', 'stich', 'right', 'index', 'finger', 'talk', 'ouchi'], ['oh', 'hope', 'get', 'better', 'show', 'argentina', 'good', 'luck'], ['damnit', 'accident', 'put', 'instead', 'followfriday'], ['feel', 'verey', 'tire', 'madri', 'chasawi'], ['someon', 'bought', 'domain', 'plan', 'buy', 'yesterday', 'damn'], ['tell', 'everyon', 'food', 'worst', 'one', 'understand', 'horror'], ['doctor', 'offic', 'wait', 'sufka', 'see', 'tire', 'sick', 'hope', 'everyon', 'els', 'better', 'friday'], ['close', 'vote', 'best', 'movi', 'hope', 'win', 'daughter', 'lovess', 'sing', 'quot', 'climb', 'quot'], ['not', 'kid', 'sleep'], ['realli', 'go', 'miss'], ['got', 'say'], ['follow', 'realli', 'shop', 'even', 'though', 'not', 'showin', 'love'], ['comp', 'slo', 'w'], ['hate', 'hair', 'hiss', 'tee', 'feel', 'like', 'shuld', 'hang', 'ghetto', 'wid', 'dis', 'style'], ['not', 'seem', 'photo', 'grandma', 'togeth', 'tomorrow', 'heart', 'break'], ['c', 'tech', 'room', 'major', 'downsid', 'lot', 'heat', 'not', 'help', 'hot', 'outsid'], ['fail', 'inspect', 'know', 'pass', 'not', 'bracket', 'sold', 'wors', 'tax'], ['quot', 'never', 'thought', 'would', 'die', 'alon', 'anoth', 'six', 'month', 'unknown', 'quot'], ['sad', 'dead'], ['said', 'good', 'day', 'dream', 'sorri', 'say', 'countri', 'state'], ['look', 'endometriosi', 'oy'], ['want', 'better', 'alreadi'], ['dee', 'mack', 'talk', 'babi', 'almost', 'grown'], ['well', 'rite', 'gt', 'headach'], ['scari', 'hook', 'wire', 'n', 'print', 'sum', 'graph', 'ohh'], ['look', 'like', 'gm', 'bankruptci', 'go', 'happen', 'loss', 'help', 'offset', 'gain', 'earlier', 'year', 'tax', 'wise', 'oh', 'well'], ['one', 'day', 'pray', 'get', 'better'], ['casey', 'gone', 'piddl', 'littl', 'carpet', 'probabl', 'freak', 'new', 'get', 'back'], ['pathet', 'mom', 'best', 'friend', 'hell', 'know', 'talk', 'mom', 'bout', 'everyth', 'everythingg'], ['disappoint', 'not', 'win', 'teh', 'glassez'], ['babysit', 'sun', 'heat', 'get', 'lot', 'freckl'], ['want', 'let', 'know', 'vfc', 'matter', 'happen', 'yes', 'need', 'hug', 'bad', 'live', 'delawar'], ['sorri', 'disappoint'], ['seem', 'disappear', 'life'], ['sar', 'realli', 'got'], ['alon', 'weekend'], ['tire'], ['make', 'babi', 'jeebus', 'cri'], ['ughh', 'sad', 'day'], ['yeah', 'tri', 'go'], ['come', 'atl', 'show', 'jljf', 'swear', 'fun', 'much', 'fun'], ['jump', 'bridg', 'not', 'realli', 'want', 'vote', 'tell', 'fix', 'day', 'need', 'win'], ['hello', 'dark', 'hair', 'well', 'plan', 'today', 'got', 'cancel', 'make', 'better', 'one'], ['wish', 'outsid', 'instead', 'trap', 'offic'], ['shrunk', 'favourit', 'cardigan', 'hubbi', 'said', 'would', 'buy', 'new', 'one', 'practic', 'live', 'gone', 'shall', 'say', 'word'], ['sad', 'thing', 'want', 'work', 'year', 'dream', 'job', 'crush', 'saw', 'crappi', 'still', 'bitter'], ['sore', 'throat'], ['yep', 'anoth', 'hour', 'amp'], ['aahh', 'busi', 'sorri', 'everyon'], ['watch', 'krystl', 'alexi', 'catfight', 'youtub', 'miss', 'dynasti'], ['would', 'like', 'far', 'brazil', 'kiss', 'nice', 'day'], ['florida', 'last', 'weekend', 'rain', 'came', 'back', 'home', 'ri', 'rain', 'terribl'], ['buy', 'yay', 'goe', 'well'], ['not', 'got', 'moment', 'sorri'], ['wonder', 'weekend', 'home', 'good', 'day', 'today', 'friday', 'otalia', 'today', 'tear', 'lot', 'love'], ['need', 'head', 'hurt'], ['phone', 'not', 'work', 'don'], ['offici', 'miss', 'quark', 'huhuhu', 'heart', 'hand', 'partner', 'one', 'danc', 'tonight', 'come', 'home'], ['doctor', 'work', 'hope', 'bitch', 'fun', 'condit', 'show', 'without'], ['miss', 'qualifi', 'think', 'david', 'reutimann', 'lead'], ['day', 'pass', 'slowli', 'day', 'rawr'], ['suck', 'p', 'eleg', 'c', 'jay', 'leno', 'nu', 'va', 'mai', 'avea', 'alt', 'emisiun', 'sau', 'ceva'], ['lt', 'gt', 'wait', 'nati', 'come', 'onlin', 'miss'], ['ahh', 'dave', 'canada', 'not', 'includ', 'okay', 'still', 'love', 'ya', 'let', 'us', 'get'], ['not', 'age', 'sorri', 'twitter', 'tweetdeck', 'broken'], ['cont', 'small', 'children', 'not', 'puppi', 'clech', 'sarcasm', 'annoy', 'bcreativ', 'harrd'], ['wait', 'nati', 'come', 'onlin', 'miss'], ['hey', 'everyth', 'go', 'pleas', 'repli', 'back', 'sometim', 'think', 'hate', 'never', 'repli', 'back'], ['delay', 'flight', 'san', 'diego', 'las', 'vega', 'delay', 'flight', 'feel', 'soo', 'damn', 'depress'], ['wear', 'pair', 'trouser', 'loos', 'last', 'year', 'tight', 'year'], ['littl', 'good', 'luck', 'tam', 'robert', 'not', 'text', 'tabl'], ['poor', 'babi', 'think', 'allergi', 'amyth', 'way', 'senc', 'monday'], ['gourmet', 'pizza', 'bleh', 'pizza', 'suppos', 'greasi', 'filthi', 'not', 'eat', 'pizza', 'prepar', 'chef'], ['kid', 'look', 'incred', 'lay', 'swim', 'lot', 'stuck', 'cold', 'nyc'], ['plan', 'peopl'], ['watch', 'phil', 'special', 'marriag', 'sad', 'ignor', 'peopl'], ['suck', 'school', 'noth'], ['absurd', 'feel', 'like', 'dip', 'pool', 'real', 'quick', 'bad', 'not', 'pool'], ['lol', 'nttn', 'much', 'juss', 'mad', 'rain', 'day', 'add', 'dnt', 'think', 'follow'], ['bah', 'sun', 'new', 'hammock', 'drink', 'beer', 'play', 'guitar', 'sing', 'mosquito', 'chase', 'insid'], ['knee', 'kill'], ['noth', 'except', 'right', 'eassi', 'due', 'monday'], ['chair', 'not', 'comfort'], ['becom', 'mother', 'slave'], ['gleneagl', 'champagn', 'not', 'beat', 'alon', 'tea', 'rubbish', 'housework'], ['ugh', 'not', 'feel', 'like', 'go', 'work', 'today'], ['even', 'tri', 'deep', 'insid', 'kno', 'pain', 'side'], ['mind'], ['got', 'ear', 'sh', 'hurt'], ['appar', 'not', 'good', 'brazillian', 'though'], ['time', 'tick', 'soo', 'sloowlyy'], ['home', 'feet', 'sore'], ['dog', 'offici', 'depress', 'brother', 'dog', 'gone', 'not', 'want', 'go', 'outsid', 'play'], ['soo', 'not', 'happi', 'wattch', 'disney', 'rubbish', 'rubbishh', 'not', 'get', 'jona', 'poster', 'dude', 'not'], ['wate', 'get', 'hair', 'cut', 'prom', 'suck', 'peopl', 'scream', 'instead', 'talk', 'probabl', 'go', 'wate', 'anoth', 'hour'], ['ugh', 'want', 'thing', 'go', 'back', 'normal', 'miss', 'best', 'friend'], ['say', 'goodby', 'parent', 'airport', 'great', 'around'], ['lt', 'train', 'today', 'ehh', 'hard', 'tall', 'hard', 'feel', 'good', 'sunday', 'race', 'day', 'rain', 'lost', 'mud'], ['rain', 'suck', 'much', 'second', 'day', 'row'], ['flickr', 'longer', 'recogn', 'address', 'not', 'log'], ['oh', 'zombiepix', 'not', 'follow', 'anymor', 'need', 'someon', 'cheer'], ['day', 'comput', 'end', 'dang', 'hate', 'not', 'allow', 'comput'], ['sayid', 'could', 'dead'], ['not', 'comfort', 'announc'], ['not', 'good', 'bad', 'thing', 'anoth'], ['sad', 'noth'], ['love', 'dreambear', 'want', 'gay', 'best', 'friend'], ['scrub', 'final', 'beauti', 'perfect', 'not', 'believ', 'go', 'anoth', 'season'], ['mad', 'traffic'], ['okay', 'somepleas', 'save', 'watch', 'ninja', 'warrier', 'eat', 'egg', 'roll', 'last', 'night'], ['bad', 'blogger', 'not', 'blog', 'oop'], ['want', 'crawl', 'desk', 'take', 'nap', 'nvrmind', 'dirti'], ['went', 'sleep', 'power', 'cut', 'noida', 'power', 'back', 'not', 'work'], ['not', 'sexi', 'tube', 'stick', 'stomach', 'thank'], ['bore', 'box'], ['thank', 'awar', 'day', 'festiv', 'band', 'ga', 'not', 'must', 'wait', 'sit', 'concert'], ['new', 'resign', 'cricinfo', 'hate', 'chang'], ['guess', 'old', 'tom', 'anoth', 'mission', 'imposs', 'like', 'tri', 'prove', 'innoc', 'not', 'get', 'hug'], ['pop', 'not', 'know', 'repli', 'tweet', 'phone', 'lol', 'yeah', 'birthday', 'day', 'soo', 'excit'], ['yeah', 'live', 'rez', 'would', 'alreadi', 'dead'], ['love', 'humid', 'right', 'love', 'not', 'last'], ['go', 'tonight', 'never', 'wrote', 'back', 'info', 'sososo', 'sad'], ['tryin', 'upload', 'new', 'pic', 'shit', 'say', 'big'], ['would', 'love', 'way', 'india'], ['freak', 'hors', 'crush', 'dream', 'tear'], ['betta', 'nest', 'think', 'despit', 'heater', 'get', 'chilli', 'night'], ['love', 'sun', 'today', 'not', 'love', 'black', 'suit', 'black', 'top', 'plus', 'get', 'meet', 'back', 'need', 'shop', 'summer'], ['aww', 'sowi', 'shorti'], ['dane', 'cook', 'sport', 'arena', 'tonight', 'wish', 'ticket'], ['entir', 'bodi', 'hurt', 'shower', 'hot', 'tea', 'tv', 'pleas'], ['fuck', 'oh', 'god', 'intern', 'clock', 'realli', 'fuck', 'noo'], ['oh', 'jess', 'hope', 'person', 'ok'], ['sometim', 'twitter', 'make', 'feel', 'like', 'outsid'], ['work', 'still', 'sick', 'realli', 'piss', 'sunday'], ['go', 'cri', 'went', 'bad', 'histori', 'test', 'realli', 'hate', 'histori'], ['not', 'smoke', 'suck', 'suck', 'fuck', 'suck', 'want', 'cig'], ['love', 'daddi', 'not', 'want', 'go', 'hous', 'today'], ['beta', 'expir', 'today', 'back', 'public', 'releas', 'miss', 'alreadi'], ['wow', 'realli', 'missin', 'fam', 'ili', 'today', 'badd'], ['bummer', 'hope', 'not', 'continu', 'long'], ['got', 'go', 'cousin', 'grad', 'parti'], ['miss', 'nipiss', 'pita', 'good', 'thing', 'got', 'euphoria', 'barri', 'would', 'never', 'surviv', 'summer', 'without', 'pita', 'smoothi'], ['new', 'redesign', 'cricinfo', 'hate', 'chang'], ['everyon', 'vote', 'miley', 'cyrus', 'mtv', 'movi', 'award', 'not', 'work', 'frustrad'], ['look', 'like', 'diamond', 'ball'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['oh', 'keep', 'stumbl', 'deathfic', 'without', 'warn', 'not', 'want'], ['pick', 'luna', 'vet', 'look', 'like', 'cri', 'not', 'kid', 'lash', 'wet', 'tear', 'trail', 'poor', 'bebe'], ['beer', 'buzz', 'almost', 'gone', 'world', 'becom', 'complic'], ['want', 'jet', 'mirag', 'could', 'not', 'get', 'hawaii', 'either', 'someday', 'much', 'love'], ['dude', 'hour', 'done', 'work'], ['omg', 'taylor', 'selena', 'broke', 'soo', 'sad', 'aw', 'think', 'actual', 'like', 'selena', 'poor', 'gal'], ['surround', 'student', 'hous', 'barbecu', 'play', 'shit', 'music', 'hard', 'conduc', 'good', 'frame', 'mind'], ['ala', 'move', 'like', 'move', 'actual', 'move', 'ugh', 'wish', 'could', 'go'], ['took', 'time', 'get', 'wall', 'kill', 'lb', 'dummi', 'not', 'drag', 'second'], ['give', 'belov', 'red', 'sox', 'ticket', 'argh', 'meet', 'schedul', 'ca'], ['stop', 'rain', 'fuckingtast'], ['feel', 'headach', 'grow'], ['wishh'], ['not', 'work', 'unfortun'], ['home', 'sick'], ['hous', 'hunt', 'pain', 'hous', 'shift', 'super', 'pain', 'pack', 'never', 'seem', 'end', 'not', 'even', 'imagin', 'unpack'], ['back', 'home', 'hmm', 'realli', 'go', 'miss', 'boo', 'day', 'like', 'wtf'], ['anoth', 'friday', 'night', 'man', 'skint', 'rubbish'], ['hmm', 'see', 'decemberist', 'go', 'raleigh', 'work', 'night', 'cheap', 'seat', 'bolshoi', 'probabl', 'neither'], ['feel', 'realli', 'emot', 'great', 'see', 'pic', 'keep', 'go'], ['good', 'sorri'], ['yes', 'final', 'friday', 'stuck', 'project'], ['quot', 'aarrgghh', 'quot', 'thing', 'decrib', 'feel', 'rite'], ['aww', 'mari', 'wish', 'could', 'come', 'go', 'away'], ['omg', 'maddi', 'holbi', 'dead', 'gut', 'love', 'nadin', 'lewington', 'realli', 'want', 'maddi', 'clifford', 'get', 'togeth'], ['want', 'someon', 'come', 'take', 'pictur', 'one'], ['umm', 'not', 'work', 'guess', 'stuck', 'uglyone'], ['aww', 'daddi', 'got', 'car', 'accid', 'pray', 'lil'], ['gave', 'tumblr', 'api', 'not', 'point', 'privat', 'account'], ['found', 'one', 'cowork', 'actual', 'like', 'leav'], ['leav', 'twitter', 'alon', 'night', 'barcelona', 'back', 'philli', 'tomorrow', 'hope', 'great', 'friday', 'muahh'], ['wish', 'outsid', 'thing', 'go', 'kill', 'work', 'day', 'everyday', 'summer'], ['actual', 'hot', 'today', 'sun', 'got', 'hat', 'everi', 'one', 'got', 'tan', 'except'], ['ugh', 'appar', 'doc', 'author', 'refil', 'tuesday', 'readi', 'pick', 'order', 'status', 'onlin', 'still', 'say', 'wait', 'review'], ['hey', 'forgot'], ['sorri'], ['sorryy', 'milerz', 'not', 'vote', 'would', 'love', 'vote', 'not', 'work', 'sad', 'frustrad'], ['not', 'know', 'sent', 'email', 'use', 'account', 'random', 'stuff', 'not', 'even', 'understand', 'chang', 'password'], ['sad', 'peopl', 'phone', 'dead'], ['leav', 'meet', 'look', 'forward', 'see', 'not', 'done', 'want', 'wish', 'work'], ['way', 'la', 'run', 'littl', 'bit', 'late'], ['best', 'buy', 'amp', 'target', 'still', 'electrik', 'red', 'album', 'loos', 'never', 'even', 'heard', 'girl'], ['husband', 'loos', 'gover', 'job', 'due', 'look', 'new', 'job', 'not', 'find', 'one', 'small', 'town'], ['screw'], ['love', 'day', 'video', 'question', 'not', 'say', 'like'], ['school', 'final', 'test', 'work', 'yes', 'gunna', 'miss', 'alot', 'peopl'], ['wish', 'beach', 'alreadi'], ['lol', 'bother', 'mess', 'metabol', 'drink', 'lot', 'water', 'pretend', 'differ', 'food', 'mm', 'grape'], ['go', 'miss', 'gurl', 'honeymoon'], ['friday', 'tri', 'find', 'someth'], ['not', 'feel', 'good', 'eat', 'food', 'ugh'], ['hype', 'wish', 'could', 'go'], ['ouuchh', 'still', 'hurt', 'barca', 'spank'], ['warn', 'tweet', 'rid', 'bike', 'dangero', 'waa', 'crash'], ['ruddi', 'manageress', 'bad', 'job', 'never', 'find', 'good', 'place', 'beyond', 'cut'], ['sorri', 'saw', 'shock', 'core'], ['god', 'sleepi', 'today', 'bare', 'focus'], ['interest', 'howev', 'low', 'carb', 'next', 'month', 'mean', 'beer'], ['fun', 'time', 'broke', 'usb', 'stick', 'like', 'liter', 'broke'], ['nice', 'visit', 'last', 'night', 'boy', 'voraci', 'stubbl', 'anyon', 'know', 'raw', 'chin', 'haha'], ['wait', 'momma', 'go', 'chase', 'see', 'hell', 'doin', 'money', 'miss', 'wamu'], ['lol', 'aww', 'lol', 'not', 'lol', 'cauz', 'work', 'make', 'one', 'tell', 'love', 'oxoxoteambreezi'], ['damn', 'mani', 'good', 'guy', 'conspiraci', 'steal', 'money'], ['omg', 'broke', 'pizza', 'stress', 'mad'], ['god', 'suffer', 'great', 'hair', 'sit', 'blaze', 'sunshin', 'v', 'v', 'bad', 'sunburn'], ['haha', 'aww', 'ok', 'back', 'bionomi', 'expans', 'ugh', 'joy'], ['would', 'like', 'sit', 'grumpi'], ['know', 'right', 'weak', 'seem', 'like', 'sk', 'think', 'latonya', 'lamesauc', 'call'], ['troubl', 'updat'], ['make', 'cupcak', 'say', 'not', 'kelli', 'bad', 'sister'], ['wish', 'could', 'get', 'nail', 'done', 'stupid', 'job'], ['selfupd', 'clean', 'rubi', 'fix', 'part', 'fail'], ['hate', 'parent'], ['yes', 'still', 'almost', 'gmail', 'storag', 'ceil', 'argh', 'forc', 'delet', 'stuff', 'buy', 'space'], ['threw'], ['twitter', 'spoil', 'fun', 'frustrat', 'slow', 'could', 'not', 'even', 'bid', 'proper'], ['mom', 'woke', 'p', 'mad', 'dream', 'shoe', 'whant', 'go', 'river', 'stupid'], ['work', 'not', 'wait', 'till', 'funer', 'monday'], ['told', 'peopl', 'matter', 'leav', 'alon', 'fuck'], ['great', 'time', 'hampton', 'hope', 'relax', 'not', 'work'], ['ugh', 'not', 'sure', 'patienc', 'remain', 'intellig', 'point', 'day', 'week', 'refactor', 'rewrit', 'packag', 'code'], ['serious', 'need', 'find', 'laptop', 'sometim', 'get', 'hot', 'bbl', 'errand', 'amp', 'price', 'quot', 'comp', 'fix', 'quot', 'not', 'mani', 'place', 'left'], ['someon', 'edit', 'design', 'call', 'plagiar', 'right', 'tire', 'exhaust', 'dissapoint'], ['blind'], ['weekend', 'great', 'saw', 'rest', 'twilight', 'tonight', 'also', 'read', 'fininsh', 'break', 'know', 'could'], ['except', 'fact', 'rain', 'sinc', 'wednesday', 'not', 'suppos', 'stop', 'till', 'monday', 'ew'], ['damn', 'real', 'wtf'], ['never', 'relax', 'weekend', 'allahpundit'], ['oh', 'fun', 'weekend', 'friend', 'gone', 'mother', 'made', 'famili', 'weekend', 'damn'], ['disapoint', 'good', 'evan', 'sound', 'realli', 'bad', 'tune', 'britainsgottal'], ['tri', 'help'], ['good', 'thing', 'comput', 'bad', 'thing', 'block', 'vidjagam', 'site', 'yes', 'even', 'block'], ['kid', 'terribl', 'good', 'evan', 'would', 'call', 'childlin'], ['bubbletweet', 'hate'], ['soo', 'sick', 'hate', 'life'], ['mm', 'speak', 'languag', 'unfortun', 'milit', 'diet', 'serious', 'think', 'tb', 'guess'], ['hate', 'fight'], ['aww', 'must', 'amaz', 'brother'], ['gay', 'marriag', 'not', 'legal', 'everywher'], ['congrat', 'invisalign', 'need', 'get', 'refit', 'mine', 'got', 'lazi', 'stop', 'wear'], ['tri', 'join', 'chat', 'site', 'would', 'not', 'let', 'sign'], ['bgt', 'pier', 'not', 'buzz', 'littl', 'girl', 'sing'], ['lost', 'internet', 'raid', 'os'], ['whew', 'liter', 'shop', 'till', 'sprain', 'ankl', 'see', 'sacrific', 'make'], ['dentist', 'peopl'], ['none', 'hous', 'not', 'sure', 'drive', 'coffe', 'stand', 'wors', 'thought', 'would'], ['sorri', 'hear', 'terribl', 'news', 'think', 'x'], ['comp', 'mental', 'health', 'would', 'not', 'take', 'samuel', 'roger', 'center', 'citi', 'gave', 'appt', 'june', 'day', 'worth', 'pill', 'left', 'lt'], ['bad', 'mood', 'annoy', 'sunni'], ['mshs', 'got', 'go', 'tire'], ['vma', 'guess', 'also', 'want', 'go', 'london', 'june', 'demi', 'lovato', 'concert', 'one', 'go'], ['sorri', 'like', 'peopl', 'like', 'not', 'feel', 'well', 'tummi'], ['take', 'care', 'yucki', 'stuff'], ['still', 'freakin', 'miss', 'game', 'jonasnewsong'], ['burnt', 'arm', 'thought', 'know'], ['suck'], ['not', 'go', 'groceri', 'store', 'empti', 'stomach', 'troubl', 'want', 'see', 'show', 'not', 'sure', 'ill', 'get', 'let', 'kno'], ['internet', 'week', 'longer'], ['quot', 'updat', 'maven', 'depend', 'quot', 'know', 'good', 'thing', 'would', 'better', 'happen', 'asleep'], ['dreambear', 'crap', 'compar', 'wick', 'audit'], ['ok', 'eaten', 'food', 'bore', 'death', 'room', 'serious', 'noth', 'guitar', 'taken', 'venu'], ['feel', 'bad', 'john', 'kate'], ['new', 'suitcas', 'bloodi', 'indecic', 'everytim', 'want', 'buy', 'someth', 'take', 'hour'], ['everyon', 'vote', 'mtv', 'movi', 'award', 'coz', 'comp', 'mash', 'not', 'let', 'vote', 'somehow'], ['got', 'work', 'lone', 'weekend', 'ahead'], ['loll', 'boyfriend', 'suppos', 'mean', 'cold'], ['mean', 'make', 'sad'], ['gut', 'not', 'lmao', 'think', 'obsess', 'bahaha'], ['plead', 'temporari', 'insan', 'agre', 'metric', 'centuri', 'cycl', 'event', 'tomorrow'], ['realli', 'look', 'like', 'go', 'rain', 'gray', 'la', 'bummer', 'sumtim'], ['cut', 'thumb', 'saw', 'small', 'metal'], ['migrain', 'fight', 'way', 'back', 'last', 'night'], ['mad', 'msgs', 'homi', 'final', 'call', 'back', 'think', 'care', 'far', 'anyth', 'happen'], ['rain', 'pour', 'life', 'suck'], ['hey', 'sorri', 'got', 'tweet', 'puppi', 'someon', 'alreadi', 'got'], ['graduat', 'tonight', 'go', 'miss', 'dustin', 'mile', 'charli', 'travi', 'nicki', 'john', 'jake', 'love', 'guy'], ['box', 'trainer', 'although', 'think', 'bruis', 'came', 'hit', 'someth', 'ow'], ['ahh', 'love', 'chines', 'music', 'haha', 'not', 'go', 'see', 'luff', 'til', 'thursday'], ['wonder', 'happen', 'froggi', 'potato', 'farm'], ['man', 'icant', 'send', 'love', 'bebo', 'cuz', 'skoo', 'comp', 'ugh', 'suck'], ['steve', 'aoki', 'sorri', 'may', 'b', 'nxt', 'time'], ['cus', 'got', 'much', 'attent', 'end', 'embarras', 'think', 'got', 'outta', 'hand', 'bit', 'poor', 'girl', 'xx'], ['dread', 'hear', 'even', 'wors', 'news', 'tonight'], ['took', 'short', 'nap', 'readi', 'work', 'sun', 'burn', 'hurt'], ['not', 'went', 'page', 'made', 'hungri'], ['grrh', 'wii', 'remot', 'dead', 'multiplay', 'tonight'], ['seattl', 'soo', 'hungri', 'amp', 'miss', 'alaska'], ['sorri', 'hear'], ['sorri', 'fail'], ['not', 'feel', 'guilti', 'like', 'revis', 'stuff', 'today', 'haha'], ['not', 'forget', 'follow', 'emma', 'london', 'like', 'said', 'would', 'wish', 'aswer', 'call', 'cost'], ['jami', 'free', 'view', 'dead'], ['gosh', 'today', 'suck', 'not', 'get', 'tax', 'return', 'upset', 'cuz', 'miss', 'best', 'friend', 'wed'], ['fight', 'cri', 'stress', 'start', 'hrs', 'sinc', 'got'], ['fire', 'rain', 'jame', 'taylor', 'fit', 'style', 'need', 'sa', 'audit', 'perfect', 'not', 'find', 'karaok', 'track', 'high', 'enough', 'key'], ['yup', 'loss'], ['angri', 'inform', 'marco'], ['miss', 'ceddi'], ['good', 'want', 'get', 'offic'], ['one', 'not', 'suppos', 'headach', 'friday', 'not', 'right'], ['rane', 'realli', 'bad'], ['yum', 'chocol', 'sorbet', 'bare', 'even', 'share'], ['wish', 'could', 'get', 'pregnant'], ['ate', 'way', 'mani', 'chocol', 'anim', 'cracker'], ['drs', 'offic', 'mine', 'drive', 'nut', 'especi', 'appt', 'kid'], ['not', 'believ', 'anyth', 'wors', 'lose', 'best', 'friend'], ['show', 'tonight', 'plan', 'ughh'], ['aah', 'swear', 'took', 'mistak', 'somehow', 'attach', 'charger', 'appar', 'need', 'break', 'huh'], ['want', 'session', 'ronni', 'da', 'bomb', 'know'], ['watch', 'bore', 'polic', 'prog', 'make', 'fab', 'pasta', 'dinner', 'tri', 'cut', 'alcohol', 'water'], ['ahh', 'think', 'leg', 'burnt', 'hurt'], ['ugh', 'hate', 'wait', 'airport', 'could', 'not', 'find', 'seat', 'near', 'outlet', 'either'], ['nice', 'hair', 'nowher', 'go'], ['think', 'mess', 'back', 'like', 'day'], ['feel', 'depress', 'could', 'not', 'save', 'thank', 'noth'], ['phew', 'long', 'day', 'not', 'gotten', 'work', 'yet'], ['want', 'see', 'bud', 'mel', 'miss', 'hur', 'load'], ['genevaa', 'pictur', 'not', 'show', 'not', 'think', 'right'], ['say', 'hi', 'depress', 'not', 'see'], ['travel', 'today', 'see', 'grandpa', 'anoth', 'road', 'block', 'cross', 'fro', 'famili'], ['swelter', 'afternoon', 'wonder', 'creepi', 'slither', 'snake', 'head', 'creek', 'nasti', 'thing', 'swim', 'frighten', 'detail'], ['bad', 'week', 'panera', 'wifi', 'suck', 'mayb', 'head', 'legal', 'seafood', 'airport', 'metavers', 'stream'], ['sure', 'everi', 'offic', 'men', 'women', 'capac', 'realiz', 'shut', 'unholi', 'fuck', 'christ'], ['degre', 'gross', 'sky', 'match', 'mood', 'lol'], ['also', 'end', 'nigh', 'x'], ['not', 'happi'], ['nice', 'night', 'golf'], ['feel', 'realli', 'sick', 'teeth', 'still', 'hurt', 'fml'], ['mow', 'love', 'mow'], ['oh', 'noo', 'suck', 'reschedul', 'anoth', 'show'], ['leav', 'florida', 'want', 'live', 'forev', 'texan', 'girl'], ['wish', 'go', 'see', 'today', 'sad', 'not'], ['bgt', 'gut', 'finish', 'tomorrow', 'stavro', 'flatley', 'way'], ['go', 'retak', 'softbal', 'photo', 'patrick', 'studio', 'piec', 'shit', 'back', 'chore', 'friday', 'huh'], ['oh', 'not', 'believ', 'kill', 'hate', 'stringer'], ['homeless', 'afterjun'], ['snap', 'realiti', 'show', 'watch', 'first', 'hook', 'sad'], ['sad', 'school', 'go', 'miss', 'friend', 'teacher'], ['vile', 'peopl', 'remov', 'thing', 'valu'], ['alway', 'rain', 'right', 'get', 'car', 'wash'], ['good', 'luck', 'want', 'new', 'shoe', 'ly', 'x'], ['funni', 'wrote'], ['buy', 'team', 'zotz', 'decid', 'roast'], ['noo', 'hate', 'traffic'], ['damn', 'take', 'long', 'instal'], ['dead'], ['watch', 'thoma', 'train', 'engin', 'make', 'miss', 'georg', 'carlin'], ['ahh', 'miss', 'must', 'fill', 'tonight'], ['quot', 'ship', 'amp', 'handl', 'quot', 'soo', 'expens', 'entir', 'order', 'not', 'order', 'yet'], ['yes', 'oh', 'gone', 'bed', 'minor', 'soap', 'marathon', 'photo', 'edit', 'night', 'ohh', 'inn', 'lake', 'nice', 'food'], ['hope', 'ok'], ['not', 'fan', 'day', 'train', 'novi', 'one', 'sleepi', 'girl'], ['healthi', 'food', 'not', 'help', 'hangov'], ['need', 'sudden', 'urg', 'miss', 'diplomat', 'titl'], ['wish', 'could', 'go', 'soco', 'go', 'climb', 'instead', 'stuck', 'work', 'weekend'], ['aww', 'wish', 'thing'], ['good', 'rachel', 'nowt'], ['yeah', 'goin', 'vmail', 'call', 'store', 'luck'], ['aww', 'sorri'], ['massiv', 'headach', 'go', 'see', 'termin', 'tonight'], ['bit', 'worri'], ['one', 'less', 'follow', 'make', 'sad', 'feel', 'like', 'life', 'dull', 'uninterest'], ['bore', 'day', 'one', 'talk', 'miss', 'bf', 'kiss', 'hol', 'almost', 'not', 'want', 'go', 'back', 'skool'], ['wtf', 'come', 'need', 'day', 'go'], ['ooh', 'hayfev', 'go', 'avoid', 'year', 'noo', 'remedi', 'anyon'], ['let', 'mri', 'today', 'neurosurgeon', 'not', 'order', 'mean', 'come', 'back', 'okc', 'soon', 'amp', 'noth', 'new'], ['still', 'pretti', 'depress', 'lose', 'hello', 'kitti', 'necklac'], ['watch', 'armi', 'wive', 'alway', 'make', 'cri'], ['get', 'amp', 'famili', 'readi', 'kayle', 'graduat', 'go', 'make', 'sad'], ['buckfast', 'brain', 'went', 'blank'], ['tell', 'accident', 'screw', 'layout', 'communiti'], ['cvs', 'like', 'genet', 'brand', 'poor', 'hubbi', 'get', 'bad', 'fun'], ['shiraz', 'event', 'mosqu', 'elect', 'children', 'wr', 'involv', 'zahedan'], ['cold', 'cold', 'fuck'], ['haa', 'awesom', 'rememb', 'brother', 'got', 'given', 'woodi', 'got', 'upset', 'got', 'buzz', 'got', 'lmfao'], ['aww', 'suck'], ['guy', 'come', 'fuck', 'freez'], ['omfg', 'one', 'worst', 'day', 'ever'], ['not', 'happi'], ['week', 'mine', 'not', 'easi', 'final'], ['listen', 'butterfli', 'fli', 'away', 'daddi', 'lov', 'mamma', 'lov', 'ya'], ['ok', 'eye', 'doctor', 'guy', 'take', 'forev', 'sit', 'cold', 'room', 'jerk'], ['need', 'horror', 'lovecraftian', 'actual', 'not', 'enough', 'weird', 'horror', 'movi'], ['got', 'adjust', 'mate', 'onlin', 'shop', 'zz', 'bore'], ['friday', 'freakin', 'happi', 'today', 'annoy', 'day', 'buut', 'weekend', 'tgif', 'lt'], ['look', 'like', 'go', 'upset', 'venus'], ['send', 'healthi', 'heal', 'thought', 'mumborg', 'direct'], ['new', 'york', 'look', 'rather', 'good', 'last', 'night', 'big', 'appl'], ['happi', 'hour', 'ccp', 'eithah', 'bad'], ['aww', 'one', 'yesterday', 'suck'], ['not', 'camera', 'total', 'regret'], ['addict', 'okay', 'admit', 'need', 'help', 'write', 'hit', 'big', 'bro', 'realli', 'realli', 'smile'], ['final', 'friday', 'still', 'ground', 'till', 'next', 'thursday', 'stereo', 'life', 'lt'], ['need', 'get', 'fever', 'grr'], ['case', 'got', 'new', 'one', 'last', 'week', 'not', 'thrill', 'mine'], ['freddi', 'cotch', 'ladyhawk', 'miss', 'bajan', 'beauti'], ['still', 'eat', 'still', 'offic', 'get', 'sick', 'throat', 'day', 'leav', 'air', 'condit', 'throat', 'kill', 'tour', 'bus'], ['argh', 'twitter', 'not', 'post', 'repli', 'tweet', 'age', 'not', 'much', 'enjoy', 'sun'], ['work', 'crack', 'ta'], ['everi', 'pair', 'jean', 'nowaday', 'tight', 'think', 'mah', 'butt', 'gettin', 'big', 'oh'], ['boo', 'hope', 'fake', 'alien', 'stori', 'tinfoil', 'cover', 'beachbal', 'photo'], ['radio', 'royal', 'transmitt', 'pack', 'today', 'not', 'good', 'anyon', 'got', 'spare', 'would', 'lol'], ['week', 'post', 'quot', 'horribl', 'traumat', 'jump', 'cholla', 'quot', 'next', 'dirti', 'trick', 'piec', 'start', 'emerg', 'hand', 'ouch'], ['fell', 'holdin', 'kale', 'hand', 'hurt', 'foot', 'amp', 'bruis', 'forehead', 'klutz'], ['wow', 'christa', 'incred', 'sweet', 'want', 'one', 'get', 'sec', 'check', 'app', 'merch', 'asst', 'rule', 'lol'], ['hour'], ['nah', 'suck', 'wear', 'suit', 'temp', 'goe', 'degre', 'someon', 'sit', 'next'], ['home', 'work', 'sick'], ['home', 'jack', 'not', 'say', 'happi', 'either'], ['oo', 'noo', 'not', 'good'], ['feel', 'bad', 'daisi', 'cri', 'everi', 'episod', 'watch', 'waay', 'much', 'tv'], ['lost', 'follow', 'oh', 'well', 'probabl', 'one', 'mute', 'one', 'anyway'], ['last', 'day', 'work', 'everyon', 'make', 'great'], ['dead', 'past', 'flu', 'suck'], ['urban', 'think', 'fail', 'chai', 'latt', 'not', 'good'], ['told', 'joke', 'onstag', 'butlin', 'one', 'person', 'laugh', 'scar', 'life'], ['want', 'see', 'enjoy'], ['day', 'summer', 'holiday', 'left', 'go', 'way', 'slow', 'school', 'get'], ['lost', 'tooth', 'whilst', 'eat'], ['found', 'crack', 'bake', 'spill', 'everywher'], ['yeah', 'littl', 'rough', 'morn', 'tonight', 'tomorrow', 'night', 'goe', 'plan', 'calor', 'intak', 'chart'], ['not', 'look', 'good'], ['lost', 'artist', 'abil'], ['love', 'dad', 'said', 'would', 'readi', 'go', 'like', 'still', 'work'], ['jean', 'two', 'inch', 'long', 'five', 'inch', 'long', 'holi', 'cow', 'get', 'shorter'], ['miss'], ['wonder', 'local', 'border', 'go', 'make', 'lot', 'bare', 'shelv', 'make', 'sad'], ['miss', 'walk', 'home', 'togeth'], ['guess', 'would', 'better', 'look', 'new', 'best', 'friend', 'vip', 'ticket', 'use', 'not', 'want', 'anymor'], ['much', 'want', 'see', 'screen', 'adapt', 'kick', 'ass', 'found', 'nick', 'cage', 'heart', 'sank'], ['follow', 'us', 'recent', 'pleas', 'not', 'offend', 'not', 'follow', 'back', 'hit', 'limit', 'hope', 'free', 'soon'], ['omgg', 'hawaii', 'amaz', 'want', 'live'], ['hope', 'day', 'get', 'better'], ['never', 'trust', 'someon', 'els', 'batteri', 'oper', 'power', 'tool', 'hurri'], ['oh', 'realli', 'tire', 'migrain', 'endometriosi', 'amp', 'fibromyalgia', 'amp', 'migrain', 'amp', 'sleep', 'prob', 'compoundin', 'ea', 'sinc', 'surgeri'], ['babysit', 'kid', 'not', 'let', 'play', 'wii'], ['not', 'go', 'sad', 'mayb', 'next', 'year', 'eh'], ['sunburn', 'hurt'], ['nobodi', 'home', 'tonight', 'except', 'alon', 'sigh', 'oh', 'wish'], ['def', 'rubbish', 'tonight'], ['look', 'websit', 'work'], ['sister', 'cri', 'eye', 'hubbi', 'call', 'iraq', 'spoke', 'minut', 'heard', 'pop', 'sound', 'background', 'call', 'drop'], ['wish', 'one', 'area'], ['found', 'sushi', 'fake', 'crab', 'meat', 'not', 'good'], ['shit', 'troubl', 'not', 'tri', 'one', 'compani', 'buy', 'hous'], ['hey', 'aww', 'cnt', 'view', 'uk', 'block', 'x'], ['musem', 'equal', 'fail', 'hall', 'fuck', 'life', 'close', 'construct'], ['man', 'bore', 'today', 'not', 'tweet', 'guy'], ['alreadi', 'index', 'finger', 'left', 'hand', 'still', 'bleed', 'hurt', 'pretti', 'bad', 'hate', 'clumsi'], ['omg', 'nasti'], ['hahaha', 'probabl', 'not', 'sorri', 'got', 'thing', 'around', 'go', 'jare', 'parent', 'hous'], ['sorri', 'hear'], ['cds', 'hmv', 'overpr', 'hate', 'money'], ['sing', 'girl', 'talent', 'yeah', 'good', 'complain'], ['clock', 'possibl', 'last', 'time', 'northview', 'middl', 'school'], ['experienc', 'apathi', 'empathi', 'custom', 'servic', 'situat', 'mani', 'time', 'recent'], ['ugh', 'need', 'job', 'one', 'hire'], ['not', 'come', 'see', 'host', 'hilton', 'thoma', 'spent', 'lot', 'money', 'noth', 'bore'], ['not', 'look', 'good', 'outsid', 'continu', 'feel', 'movi', 'night', 'come'], ['not', 'know', 'mom', 'gave', 'clean', 'macbook', 'white', 'tint', 'grayish', 'blue', 'black', 'desk'], ['want', 'invit', 'sick', 'see', 'link', 'peopl', 'play', 'left'], ['walk', 'back', 'wk', 'beauti', 'day', 'njoy', 'rain'], ['bff', 'glad', 'got', 'dog', 'lol', 'stomatch', 'hurt'], ['think', 'might', 'get', 'today', 'throat', 'kill', 'feel', 'like', 'lung'], ['depress', 'best', 'friend', 'piss'], ['not', 'believ', 'idiot', 'buzz', 'juggler'], ['tweet', 'fgs', 'tweekdeckk', 'hate'], ['wow', 'one', 'nicest', 'patient', 'ever', 'deplyod'], ['thank', 'check', 'stay', 'thursday', 'night', 'though'], ['feel', 'not', 'get', 'thing', 'work'], ['littl', 'girl', 'bgt', 'sad', 'cri', 'lol', 'xx'], ['end', 'not', 'go', 'left', 'knee', 'kill', 'think', 'push', 'much', 'yesterday'], ['smh', 'sick', 'bug', 'go', 'everyon', 'know', 'sick', 'includ'], ['not', 'relay', 'oh', 'well'], ['pleas', 'not', 'vote', 'sympathi', 'bgt'], ['aww', 'bless', 'need', 'anoth', 'chanc'], ['aw', 'wee', 'lassi', 'made', 'cri', 'tear', 'streamin', 'doon', 'face', 'lol', 'wee', 'shame', 'x'], ['offici', 'drug', 'take', 'nap', 'allergi', 'not', 'joke', 'never', 'bad', 'sinc', 'two', 'day', 'ago'], ['lookd', 'soo', 'freak', 'poor', 'wee', 'thing'], ['sit', 'watch', 'britain', 'got', 'f', 'talent', 'watch', 'small', 'girl', 'cri', 'sad'], ['want', 'summer', 'sprinkl', 'still'], ['stupid', 'sun', 'actual', 'work'], ['argg', 'car', 'crash', 'tv', 'soo', 'horribl', 'see', 'like', 'bgt'], ['follow', 'complianc', 'great', 'watch', 'say'], ['cri', 'poor', 'thing'], ['ouch', 'burn', 'make', 'soup', 'nico'], ['haha', 'awesom', 'alway', 'use', 'eat'], ['aww', 'holli', 'cute', 'hope', 'let', 'sing'], ['made', 'sister', 'cri', 'hahah', 'bless', 'hope'], ['dad', 'want', 'comput', 'would', 'best', 'take', 'mac', 'specialist', 'tomorrow', 'hope', 'make', 'teh', 'owwi', 'go', 'awayz'], ['aww', 'not', 'believ', 'wee', 'girl', 'bgt', 'cri', 'sad'], ['sick', 'total', 'get', 'bad', 'guy', 'not', 'get', 'play', 'boston'], ['aww', 'holli', 'steel', 'not', 'cri'], ['aww', 'bless', 'made', 'cri'], ['not', 'block', 'not', 'even', 'request'], ['bgt', 'aw', 'bless', 'stomach', 'sank', 'first', 'whimper', 'good', 'tri', 'carri', 'nice', 'simon', 'take', 'charg'], ['sad', 'school', 'close'], ['hate', 'place'], ['nope', 'fifth', 'generat', 'ipod', 'classic', 'like', 'dumb'], ['tough', 'want', 'hug', 'like'], ['omg', 'holli', 'well', 'sad', 'watch', 'see', 'simon', 'well', 'nice', 'want', 'lol'], ['jame', 'cameron', 'touch', 'someth', 'revolution', 'someon', 'els', 'come', 'along', 'fuck'], ['good', 'get', 'earli', 'tomorrow'], ['met', 'lol', 'middl', 'name', 'creepi', 'fgs'], ['tri', 'figur', 'person', 'download', 'wordpress', 'blog', 'not', 'easi', 'hope', 'suggest'], ['got', 'fight', 'ryan', 'hes', 'like', 'cri', 'dead', 'insid', 'siggh'], ['nice', 'wish', 'twitter', 'would', 'tile', 'mine'], ['yike', 'poor', 'girl', 'bgt', 'quit', 'hard', 'watch'], ['cramp'], ['first', 'natali', 'littl', 'holli', 'mean'], ['aww', 'feel', 'bad', 'holli'], ['omd', 'holli', 'steel', 'bless', 'x'], ['everyon', 'tweet', 'britain', 'got', 'talent', 'feel', 'left'], ['bless', 'lil', 'sock', 'think', 'need', 'rethink', 'age', 'thing'], ['want', 'vote', 'miley', 'cyrus', 'mtv', 'movi', 'not', 'know', 'could', 'somebodi', 'could', 'send', 'link', 'thaank', 'lt'], ['somehow', 'yet', 'accomplish', 'fuck', 'thing'], ['wait', 'electrik', 'red', 'richgirl', 'sucker', 'later'], ['aww', 'bless', 'hope', 'phone', 'okayi', 'x', 'x'], ['tri', 'carri', 'aswel', 'bless', 'suppos', 'mayb', 'kid', 'not'], ['mad', 'quiz', 'answer', 'bet', 'ford', 'fusion', 'sweepstak', 'wrong'], ['ohh', 'babi', 'pdgg', 'ahh', 'miss', 'ahh', 'hehaheahaa'], ['coki', 'arnt', 'real', 'imaginari', 'hav', 'mm', 'cooki'], ['unfortunatley', 'aerlingus', 'longer', 'fli', 'copenhagen', 'fli', 'ryanair', 'billund', 'drive', 'copenhagen', 'one', 'day'], ['aww', 'poor', 'littl', 'girl', 'bgt'], ['know', 'right', 'poorpoor', 'girl', 'show', 'not', 'put', 'young', 'peopl', 'competit', 'like', 'though'], ['omg', 'not', 'onlin', 'shock', 'horror'], ['know', 'feel', 'work', 'much', 'suck', 'hardcor', 'need', 'hang', 'soon'], ['aww', 'think', 'young', 'not', 'readi', 'pain', 'watch', 'upset'], ['ugh', 'not', 'know', 'not', 'best', 'mood', 'know', 'allergi', 'meh'], ['fuck', 'day', 'fli', 'got', 'thing', 'hour'], ['ok', 'bye', 'alex', 'fun', 'today'], ['not', 'know', 'saw', 'happi', 'birthday', 'girl'], ['omg', 'bgt', 'make', 'cri', 'wee', 'girl', 'soo', 'sad'], ['aww', 'sad'], ['haha', 'cri', 'xx'], ['traffic', 'jam', 'outsid', 'chicago', 'feel', 'quot', 'offic', 'space', 'quot', 'right'], ['last', 'full', 'day', 'even', 'day', 'class', 'littl', 'sad'], ['srri', 'not', 'interest', 'right', 'stay', 'til', 'tummi', 'hurt', 'poop', 'work'], ['not', 'want', 'go', 'work'], ['hope', 'day', 'mom', 'get', 'messag'], ['go', 'happen', 'one', 'day', 'feel', 'girl', 'mum'], ['not', 'even', 'situat', 'sad', 'sorri', 'realli', 'sucki'], ['brian', 'cat', 'still', 'not', 'shown', 'feel', 'sad', 'sick', 'afraid', 'eaten', 'someth', 'not', 'look', 'good'], ['aww', 'not', 'fair', 'lil', 'sad'], ['get', 'readi', 'work', 'boohoohoo', 'not', 'want', 'go', 'work'], ['use', 'imovi', 'still', 'not', 'bad', 'afraid', 'hear', 'wrong'], ['excit', 'new', 'follow', 'overnight', 'sad', 'ad', 'bot'], ['oh', 'noo', 'sorri', 'suck', 'hard'], ['feel', 'sorri', 'hope', 'dnt', 'cri', 'time'], ['ncaa', 'basebal', 'road', 'omaha', 'south', 'carolina', 'hit', 'homerun', 'dagger', 'heart', 'mason', 'south', 'carolina'], ['oh', 'come', 'back', 'gig', 'scotland', 'ticket', 'see', 'last', 'year', 'hosp', 'wit', 'gallston'], ['hollowbabesher', 'come', 'utter', 'shite', 'bgt', 'lt', 'complet', 'agre'], ['omg', 'go', 'robinson', 'tyler', 'wfm', 'freakin', 'miss', 'anthoni', 'ugh', 'today', 'kind', 'suck', 'lex', 'lt'], ['phil', 'miss', 'gracin', 'ya', 'presenc', 'not', 'much', 'new'], ['day', 'aight', 'clean', 'most', 'went', 'mcds', 'check', 'hader', 'luck', 'ate', 'chickfila'], ['work', 'heat', 'horribl'], ['holli', 'steel', 'bless', 'go', 'dreambear', 'lt', 'hahahahaha'], ['unabl', 'booz', 'friday', 'inde', 'entir', 'weekend', 'actual', 'hurt'], ['stress', 'beyond', 'belief', 'need', 'nap'], ['aww', 'poor', 'littl', 'girl', 'britain', 'got', 'talent'], ['aww', 'littl', 'girl', 'britain', 'got', 'talent', 'actual', 'love', 'ant', 'n', 'dec', 'oh', 'simon', 'cowel'], ['aww', 'bless', 'one', 'fave'], ['sn', 'yeah', 'sad', 'day'], ['see', 'finish', 'line', 'disappear', 'plethora', 'email', 'wah'], ['oh', 'sorri', 'old', 'grandpa'], ['man', 'tha', 'mojito', 'earlier', 'got', 'feelin', 'type', 'funni', 'hope', 'not', 'get', 'sick'], ['yaay', 'clean', 'room', 'said', 'hi', 'day', 'amp', 'not', 'write', 'back'], ['made', 'cri', 'poor', 'holli', 'xx'], ['bgt', 'poor', 'kid'], ['know', 'buffi', 'sit', 'offic', 'instead', 'go', 'see', 'kane', 'major', 'bummer'], ['quot', 'think', 'know', 'go', 'break', 'tell', 'sorri', 'know', 'love', 'quot'], ['need', 'new', 'iphon', 'case', 'broke'], ['sure', 'hope', 'becom', 'afternoon'], ['spoilt', 'like', 'hard', 'put', 'front', 'peopl', 'realli', 'young'], ['realli', 'like', 'ladi', 'gaga', 'quot', 'paparazzi', 'quot', 'whatshappen'], ['ouch', 'not', 'even', 'look', 'one', 'know', 'exist', 'enough'], ['oh', 'girl', 'aidan'], ['sound', 'good', 'still', 'like', 'friday', 'although', 'mean', 'go', 'work', 'tomarrow'], ['not', 'make', 'good', 'time', 'fuck', 'chicago', 'traffic', 'photo'], ['imnot', 'aloud', 'call', 'think', 'awesomeili', 'xx'], ['not', 'make', 'good', 'time', 'fuck', 'chicago', 'traffic', 'photo'], ['twitter', 'hate', 'not', 'put', 'photo', 'page'], ['guess', 'realli', 'supris'], ['enjoy', 'beauti', 'day', 'hang', 'around', 'hous', 'pam', 'make', 'cake', 'not', 'give'], ['wish', 'home', 'bed', 'nake'], ['aww', 'bless', 'give', 'chanc'], ['work', 'not', 'know', 'exhaust'], ['fuck', 'miss', 'band', 'much'], ['wish', 'go', 'prom', 'oh', 'go', 'wish', 'girl', 'good', 'luck', 'go', 'good', 'oll', 'applebe', 'yumm'], ['miss', 'hubbi', 'alreadi'], ['hubbi', 'play', 'quot', 'blame', 'alcohol', 'quot', 'cours', 'could', 'not', 'get', 'back', 'sleep', 'think', 'joe', 'cruis'], ['nofair', 'bk', 'uhura', 'nero', 'left'], ['check', 'twitter', 'tri', 'find', 'peopl', 'one', 'know', 'use', 'websit'], ['brilliant', 'idea', 'one', 'buzz', 'though'], ['panera', 'lunch', 'byy', 'aww'], ['sorri', 'make', 'sure', 'bomb', 'talk', 'ssug', 'next', 'month', 'penanc'], ['need', 'water', 'paper', 'towel', 'coke', 'store', 'feel', 'sick', 'go', 'get'], ['hell', 'go', 'school', 'hour', 'next', 'monday', 'snow', 'day', 'thier', 'lame', 'mom', 'make', 'go'], ['balanc', 'chair', 'chin', 'sixth', 'form', 'common', 'room', 'got', 'noth', 'sneer', 'hung', 'ball', 'good'], ['think', 'realli', 'good', 'probabl', 'damn', 'obscur'], ['four', 'shot', 'novacain', 'mouth', 'right', 'cheek', 'total', 'numb', 'boo'], ['would', 'mean', 'babe', 'fcuk', 'name', 'super', 'freakin', 'cool', 'give', 'pass', 'ha'], ['sorri', 'respons', 'assist', 'job', 'alreadi', 'fill', 'pleas', 'check', 'back', 'soon', 'sure', 'not', 'last', 'long'], ['home', 'sore', 'knee'], ['forgot', 'tonight', 'plan', 'head', 'cask', 'might', 'not', 'good', 'idea'], ['listen', 'music', 'phone', 'die', 'not', 'find', 'charger', 'brother', 'need', 'stop', 'take', 'mine', 'without', 'ask'], ['littl', 'girl', 'bgt', 'omgg', 'peopl', 'not', 'feel', 'sorri'], ['grr', 'hate', 'make', 'careless', 'mistak', 'doc', 'give', 'partner'], ['omg', 'watch', 'holli', 'steel', 'cri', 'pain', 'bgt'], ['arghh', 'not', 'keep', 'twitterbon', 'peep'], ['hey', 'pleas', 'repli', 'not', 'call', 'mexico', 'not', 'know', 'code', 'love'], ['hey', 'pleas', 'repli', 'not', 'call', 'mexico', 'not', 'know', 'code', 'love'], ['aww', 'got', 'see', 'grade', 'teacher', 'last', 'day', 'retir'], ['miss'], ['haha', 'sorri', 'whole', 'like', 'two', 'peopl', 'follow'], ['close', 'get'], ['suck', 'hang'], ['might', 'put', 'age', 'limit', 'next', 'year', 'back', 'bgt'], ['aww', 'bad', 'lost', 'though'], ['much', 'hair', 'fall', 'everytim', 'shower', 'sad', 'disgust'], ['poor', 'girl', 'britain', 'got', 'talent', 'god', 'love', 'forgot', 'word', 'cri', 'get', 'second', 'chanc', 'perform'], ['realli', 'suck', 'think', 'might', 'cri', 'skip', 'anyth', 'import', 'not', 'comp', 'get', 'dispos'], ['hav', 'fun', 'heav', 'metal', 'happi', 'hour', 'guy', 'futur', 'accadent', 'set', 'fire', 'smoke'], ['enjoy', 'day', 'prob', 'see', 'top', 'glyder', 'pint', 'got', 'drive', 'straight', 'back', 'got', 'dog', 'stuff', 'sunday'], ['get', 'spam', 'colleg', 'email', 'account', 'way', 'rub', 'graduat'], ['help', 'jen', 'monster', 'energi', 'drink', 'crash'], ['peopl', 'r', 'weird'], ['sure', 'miss', 'chick', 'rip'], ['yes', 'pleas', 'not', 'go', 'die', 'cri', 'normal', 'lead', 'small', 'anim', 'get', 'harm'], ['realli', 'hope'], ['broke', 'dresser', 'sinc', 'three'], ['lmao', 'think', 'fuck', 'hate', 'least', 'peopl', 'not', 'unfollow', 'yet', 'loon'], ['justcaus', 'summer', 'hour', 'say', 'day', 'end', 'not', 'mean', 'realli', 'get', 'leav'], ['angri', 'right', 'today', 'not', 'doind', 'noth', 'classmat', 'yes', 'think', 'stay', 'friend', 'hope', 'not'], ['get', 'use', 'get', 'cold', 'asthma', 'pay'], ['not', 'go', 'anywher', 'amp', 'book', 'final', 'get', 'hre', 'cool', 'know', 'wht', 'butch', 'look', 'go', 'mail', 'tdi'], ['back', 'laandan', 'miss', 'alreadi', 'check', 'new', 'giant', 'purpl', 'bow', 'gold', 'wing', 'necklac', 'lt', 'td'], ['miss', 'dog', 'yeah', 'batman', 'realli', 'hope', 'dog', 'go', 'heaven', 'true'], ['work', 'suck'], ['ow', 'sunburn', 'hurt'], ['absolut', 'noth', 'eat', 'hous', 'epic', 'fail'], ['favorit', 'curl', 'iron', 'broke'], ['stupid', 'headach', 'day'], ['damn', 'said', 'could', 'not', 'share', 'info', 'kill', 'evil', 'eddi', 'want', 'info', 'gave'], ['ugh', 'sound', 'like', 'bust', 'cabl', 'box', 'time', 'zone'], ['sorri', 'chili', 'chees', 'dog', 'without'], ['want', 'someth', 'tonight', 'not', 'look', 'promis'], ['not', 'worri', 'not', 'not', 'get', 'tv'], ['car', 'possess', 'not', 'stop', 'honk'], ['wee', 'girl', 'start', 'cri', 'mum', 'came', 'shame'], ['assum', 'mean', 'item', 'nest', 'line', 'invert', 'call', 'tree', 'button', 'found'], ['realli', 'bore', 'anthoni', 'senior', 'board', 'shit', 'hungri', 'cold'], ['sad', 'love', 'kelli', 'lt'], ['quot', 'thing', 'say', 'purpl', 'prose', 'give', 'away', 'quot', 'hell', 'even', 'suppos', 'mean', 'casino', 'music', 'goe', 'die'], ['sit', 'car', 'cat', 'keep', 'meow', 'feel', 'bad'], ['watch', 'maxium', 'not', 'look', 'beauti', 'like', 'girl'], ['scratch', 'ipod'], ['not', 'get', 'job'], ['man', 'still', 'not', 'seen', 'bad', 'work'], ['sorri', 'uncl'], ['cloudi', 'damp', 'hope', 'not', 'rain', 'tonit', 'track', 'meet', 'would', 'hate', 'interview', 'rain'], ['ugh', 'headach', 'want', 'go', 'home'], ['hate', 'watchn', 'thing', 'make', 'sad', 'n', 'wana', 'cri'], ['not', 'respond'], ['not', 'feel', 'good', 'throat', 'hurt'], ['truetru', 'not', 'xd'], ['meant', 'said', 'skin', 'terribl', 'plus', 'sunburnt', 'chest'], ['work', 'readi', 'go'], ['tire', 'work', 'fb'], ['sound', 'input', 'comput', 'stop', 'work', 'not', 'mic', 'jack', 'usb', 'webcam', 'mic', 'not', 'work', 'either', 'check', 'input', 'control'], ['tire', 'stay', 'must', 'finish', 'work', 'sunday'], ['dangit', 'lsu', 'lead', 'southern', 'intent', 'not', 'mention', 'anyth', 'got', 'jinx', 'anyhow'], ['mcdonald', 'eat', 'chicken', 'nugget', 'kid', 'embarras', 'drope', 'soda', 'haha', 'fell', 'tray', 'lol'], ['found', 'want', 'abl', 'go', 'see', 'daddi', 'tomorrow', 'leav', 'ty', 'activ', 'tomorrow', 'morn', 'suck'], ['rice', 'readi', 'watch', 'comet', 'import', 'music', 'price', 'n', 'lisa', 'arriv', 'around', 'still', 'hour'], ['ugh', 'hour'], ['feel', 'think', 'dehydr'], ['yoo', 'myy', 'bust', 'sick', 'shoot', 'long', 'night', 'tonight'], ['gut', 'kitchen', 'empti', 'liter', 'empti', 'even', 'kid', 'hungri'], ['dude', 'fail', 'know', 'exact', 'place'], ['took', 'antibiot', 'still', 'feel', 'like', 'crap'], ['home', 'chocol', 'peanut', 'butter', 'stupid', 'kid', 'bus', 'ruin', 'yearbook'], ['exam', 'stress'], ['big', 'laptop', 'big', 'time', 'switch', 'ee', 'bye', 'big', 'guy'], ['get', 'sadder'], ['ugh', 'realiz', 'complet', 'redo', 'tweetdeck', 'group', 'pain', 'comput', 'wipe', 'clean'], ['comput', 'stupid', 'not', 'let', 'vote', 'could', 'would', 'vote'], ['britain', 'got', 'tortur', 'edelcri'], ['would', 'like', 'game', 'system'], ['look', 'cute'], ['awwh', 'stuck', 'traffic', 'boo'], ['hope', 'rain', 'stop', 'time', 'get', 'metro', 'courthous', 'not', 'bring', 'umbrella', 'today'], ['bore', 'cleanin', 'hous'], ['damm', 'feel', 'like', 'song', 'dead', 'gone', 'travi', 'garland'], ['kind', 'hard', 'see', 'pic', 'doggi', 'pic', 'not', 'exist'], ['miss', 'lot', 'class'], ['go', 'work', 'soon', 'excit', 'ugh', 'id', 'rather', 'pluck', 'fingernail'], ['happen', 'wierd', 'sudden'], ['headach', 'want', 'see', 'juli'], ['dang', 'drop', 'subway', 'da', 'floor', 'ahh', 'rule', 'pass', 'alreadi'], ['say', 'goodby', 'papa'], ['caus', 'miss', 'lot', 'class'], ['annoy'], ['would', 'slip', 'fall', 'dirti', 'school', 'bathroom', 'floor', 'fml'], ['aww', 'shame', 'still', 'followfriday', 'though', 'gt', 'gt'], ['oh', 'yea', 'not', 'think', 'open', 'yet', 'took', 'ben', 'amp', 'jerri', 'love', 'place'], ['citi', 'offici', 'smell', 'like', 'dead', 'fish'], ['not', 'good'], ['dog', 'go', 'die', 'somebodi', 'not', 'save'], ['sorri', 'anna', 'wintour', 'repeat', 'tweet', 'soo', 'sorri', 'someth', 'wonder', 'quad', 'tweet'], ['rain', 'make', 'sad', 'like', 'want', 'kill', 'lt'], ['think', 'kill', 'old', 'bromeliad', 'need', 'new', 'pet', 'plant', 'not'], ['even', 'noo', 'not', 'secret', 'namerebecca', 'pleas'], ['anoth', 'two', 'hour', 'work', 'ugh', 'goe', 'slow', 'sore'], ['want', 'get', 'blackberri', 'not', 'afford', 'watch', 'telli', 'relax', 'hard', 'sesion', 'tomorrow'], ['omg', 'mine', 'omg', 'gross', 'sorri', 'total', 'forgot'], ['today', 'day', 'leakycon', 'awesom', 'number', 'wish', 'not', 'far', 'away'], ['eew', 'chees', 'hate', 'chees'], ['got', 'realli', 'sick', 'today', 'text', 'later', 'nap', 'time'], ['label', 'sorri', 'know', 'realli', 'needi'], ['silli', 'boyfriend', 'forget', 'phone', 'charger', 'day', 'long', 'trip', 'kilkenni', 'not', 'talk', 'see', 'gig', 'went', 'poo'], ['ya', 'know', 'today', 'suck', 'rain', 'amp', 'possibl', 'magic', 'friday', 'goin', 'tonight'], ['not', 'like', 'make', 'gum', 'hurt'], ['not', 'proper', 'dog', 'bark', 'much', 'amp', 'jump', 'amp', 'fault', 'not', 'strict', 'enough'], ['follow', 'friday', 'make', 'feel', 'realli', 'unpopular'], ['not', 'one', 'favourit', 'pastim', 'weekend', 'long', 'weekend', 'monday', 'ice', 'show'], ['not', 'ben', 'n', 'sorri', 'bac', 'hit', 'hup'], ['ladi', 'think', 'watch', 'scrub', 'delusion', 'bail', 'plan'], ['bye', 'twitter', 'amp', 'fb', 'world', 'san', 'francisco', 'airport', 'readi', 'board', 'air', 'china', 'not', 'sure', 'internet', 'access'], ['promis', 'would', 'spread', 'card', 'around', 'gave', 'someon', 'deck', 'amp', 'never', 'gave'], ['damn', 'spent', 'week', 'whole', 'pay', 'shop', 'oh', 'well', 'happi'], ['stomach', 'ach', 'ahh'], ['dire', 'need', 'second', 'job', 'hear', 'anyth', 'nightlif', 'food', 'servic', 'pleas', 'pleas', 'pleas', 'think'], ['shoot', 'aunt', 'home', 'soon', 'cri', 'eye'], ['sorri'], ['tri', 'move', 'get', 'hurt', 'much'], ['hi', 'heather', 'not', 'know', 'saw', 'messag', 'april', 'not', 'twitter', 'friend'], ['hate', 'costco', 'alway', 'cost', 'us', 'much', 'money'], ['reyt', 'fanci', 'valentino', 'worst', 'time', 'consid', 'not'], ['well', 'get'], ['omgg', 'not', 'beliv', 'happen', 'friend', 'know', 'miss', 'not', 'nice'], ['also', 'conced', 'first', 'twitter', 'grammar', 'fail'], ['feel', 'slight', 'sick', 'bgt'], ['appli', 'osap', 'yet', 'god', 'go', 'owe', 'major', 'end', 'academ', 'career', 'not', 'right'], ['nvr', 'want', 'may', 'come', 'end'], ['write', 'first', 'quot', 'showstopp', 'quot', 'entri', 'lost', 'hour', 'work', 'due', 'server', 'issu'], ['sound', 'forebod'], ['way', 'short', 'notic', 'know', 'rsvping', 'thank', 'much', 'invit', 'though'], ['head', 'hurt'], ['odd', 'tri', 'call', 'mitchel', 'musso', 'dosent', 'work'], ['sad', 'commentari', 'not'], ['weirdest', 'hive', 'leg', 'arm', 'heck', 'allerg', 'itch', 'bad', 'dang'], ['never', 'repli', 'mee', 'must', 'realli', 'hate', 'l'], ['wish', 'could', 'work', 'oppos', 'wit', 'kid', 'cuz', 'hardest', 'job', 'eva'], ['deep', 'fri', 'drumstick', 'not', 'good', 'thought', 'would'], ['get', 'back', 'sore', 'surgeri', 'time'], ['lula', 'not', 'feel', 'well'], ['miss', 'howev', 'humpthestump', 'rest', 'life'], ['headach', 'ugh'], ['even', 'arnold', 'could', 'not', 'save', 'park', 'provid', 'job'], ['work', 'suppos', 'day', 'much', 'work', 'get', 'done', 'plm', 'world', 'sigh'], ['take', 'underpriveledg', 'kid', 'circus', 'big', 'day', 'plan', 'amp', 'still', 'not', 'feel', 'nervous', 'right'], ['plus', 'guy', 'icetv', 'realli', 'miss', 'live'], ['talk', 'today', 'oh', 'god', 'problem', 'problem', 'problem', 'love', 'money', 'math', 'enough', 'not'], ['neil', 'pick', 'show', 'tailight', 'heartless', 'hit', 'run'], ['see', 'jona', 'brother', 'movi', 'funni', 'one', 'els', 'hahah', 'not'], ['not', 'realli', 'want', 'go', 'school', 'monday', 'honest'], ['work', 'half', 'hour', 'get', 'mri', 'yay'], ['anyon', 'know', 'scale', 'pic', 'tri', 'chang', 'pic', 'pic', 'r', 'big', 'n', 'keep', 'crop'], ['hav', 'bet', 'get', 'pack', 'day', 'suck'], ['oh', 'need', 'new', 'work', 'broke', 'one'], ['mayb', 'someth', 'wrong', 'still', 'not', 'work'], ['not', 'direct', 'messag', 'free', 'lunch'], ['soo', 'good', 'wood', 'ranch', 'bbq', 'time', 'dian', 'deng', 'pao'], ['lot', 'req', 'today', 'fun'], ['finish', 'mine', 'part', 'remark', 'difficult', 'cram', 'kanji'], ['ashley', 'tisdal', 'mean', 'cuz', 'berlin', 'june', 'not', 'go', 'want', 'start', 'cryin', 'right', 'ashley', 'pick'], ['race', 'total', 'lost', 'rip'], ['go', 'stuck', 'seem', 'misplac', 'remot', 'extra', 'bad', 'tonight', 'well'], ['momentum', 'work', 'jeff', 'hard', 'time'], ['want', 'go', 'tire', 'anyway', 'go', 'work', 'tomorrow'], ['mad', 'love', 'money'], ['feel', 'like', 'crap'], ['not', 'soo', 'notic', 'depend', 'look', 'know', 'ipod', 'not', 'perfect'], ['hard', 'go', 'guy', 'peic', 'person', 'shoud', 'chang', 'mine', 'hard', 'chang'], ['anyon', 'want', 'stop', 'carl', 'jr', 'bring', 'chicken', 'club', 'bare', 'walk'], ['text', 'friend', 'bore', 'gosh', 'hate', 'rain'], ['dam', 'wish', 'celeb', 'could', 'frikken', 'follow', 'baackk'], ['nm', 'dang', 'got', 'bounc', 'like', 'minut', 'chill', 'usual'], ['read', 'phone', 'book', 'hugh', 'clanci', 'hugh', 'hugh', 'clap', 'poor', 'holli', 'though', 'grab', 'piti', 'vote', 'like', 'shark'], ['pool', 'not', 'fun', 'without', 'tim'], ['thank', 'timmi', 'turn', 'strep', 'high', 'fever'], ['ugh', 'suck'], ['refus', 'get', 'excit', 'not', 'want', 'let', 'happen', 'long', 'not', 'june', 'would', 'die'], ['wish', 'still', 'love'], ['sad', 'gone', 'show', 'mcfli', 'fan'], ['hit', 'street', 'hour', 'live', 'lexington', 'homeless', 'problem', 'facebook', 'twitter', 'pray', 'us'], ['ohh', 'tooth', 'hurt', 'ohh', 'sad', 'hurt'], ['wish', 'could', 'not', 'wrap', 'head', 'around', 'hope', 'wake', 'peopl', 'quot', 'racism', 'not', 'exist', 'anymor', 'quot'], ['class', 'student', 'go', 'miss'], ['fun', 'like', 'beach', 'tend', 'get', 'realli', 'dark', 'fast'], ['alexx', 'gona', 'miss', 'today', 'sad', 'noo'], ['dlukasrossi', 'amaz', 'wife', 'updat', 'lock', 'hard', 'convinc', 'peopl', 'follow', 'protect', 'profil'], ['wish', 'lay', 'sand', 'listen', 'wave', 'crash', 'shore'], ['felt', 'sorri', 'peopl', 'realli', 'harsh', 'cos', 'given', 'chanc'], ['today', 'lunch', 'cuz', 'wel', 'embarrass', 'self', 'quot', 'school', 'quot', 'ok', 'final', 'test', 'final', 'year', 'aa', 'thanx', 'god', 'friend'], ['oop', 'late'], ['yay', 'good', 'umm', 'reggi', 'perrin', 'next', 'oh', 'care', 'watch', 'lol'], ['tri', 'straighten', 'hair', 'ef', 'hot', 'also', 'need', 'food'], ['shelf', 'ikea', 'fell', 'wall', 'damag', 'worth', 'least', 'estim'], ['aww', 'suck', 'eek', 'airlin', 'charg'], ['know', 'see', 'peopl', 'love', 'countri', 'could', 'not', 'get', 'closer'], ['stomach', 'bleh'], ['get', 'well', 'soon'], ['go', 'miss', 'see', 'everyon', 'time'], ['not', 'want', 'work', 'tonight'], ['laura', 'ell', 'fou', 'ell', 'not', 'like', 'french', 'fan'], ['everi', 'time', 'rain', 'see', 'least', 'ambul'], ['asthma', 'issu', 'today', 'bah'], ['screen', 'green', 'start', 'yesterday', 'ahh', 'miss'], ['hard', 'let', 'go', 'see', 'cri'], ['not', 'happi', 'tweet'], ['rofl', 'even', 'kept', 'insur', 'payment', 'still', 'like', 'meh', 'good', 'thing', 'appli', 'day', 'job', 'pasi'], ['wish', 'could', 'paulo', 'show', 'fortun', 'went', 'brasilia', 'one', 'haha'], ['man', 'not', 'beliv', 'everyth', 'not', 'look', 'good'], ['watch', 'jon', 'amp', 'kate', 'plus', 'not', 'believ', 'divorc'], ['someon', 'take', 'care', 'sick'], ['sorri'], ['hey', 'funni', 'stop', 'get', 'coffe', 'way', 'spilt', 'half', 'car'], ['produc', 'anchor', 'sad', 'goodby', 'miss', 'lynn', 'ashminov', 'miss'], ['sulk', 'home', 'rain', 'poor', 'strategi', 'watch', 'sun', 'shine', 'desk', 'robart', 'refer', 'room'], ['believ', 'architect', 'plan', 'promenad', 'small', 'town', 'intern', 'prize', 'everyon', 'walk', 'amp', 'jog'], ['sick', 'daddi', 'send', 'prayer', 'way'], ['laura', 'gone', 'weekend', 'miss', 'alreadi'], ['leav', 'utah', 'today', 'super', 'sad', 'face'], ['good', 'god', 'fit', 'swear', 'word', 'charact'], ['noo', 'poor', 'se'], ['wish', 'gm', 'stock', 'would', 'turn', 'around', 'cent', 'share', 'would', 'will', 'buy', 'knew', 'would', 'someth'], ['lil', 'sis', 'cousin', 'babyfath', 'jimmi', 'aka', 'gemstar'], ['argh', 'color', 'jealous', 'rain', 'ask', 'day', 'still', 'not', 'gone', 'away'], ['peopl', 'work', 'stress'], ['year', 'amp', 'left', 'dell', 'okc', 'last', 'time', 'geeki', 'girl', 'wait', 'cri', 'got', 'car', 'love'], ['sittin', 'bore', 'ass', 'confer', 'call', 'get', 'go', 'home', 'n', 'nap', 'missin', 'alot'], ['omg', 'seen', 'sun', 'moon', 'place', 'disprov', 'theori', 'person'], ['today', 'suck', 'katey', 'broke', 'yah', 'kate', 'broke', 'aw', 'nd', 'vodka'], ['week', 'lone', 'without', 'gossip', 'girl', 'xoxo'], ['found', 'littl', 'late', 'could', 'not', 'afford'], ['heyi', 'sis', 'year', 'month', 'still', 'want', 'walk'], ['cool', 'could', 'call', 'phone', 'not', 'let', 'call', 'number'], ['sad', 'not', 'day', 'hello'], ['hate', 'cottag', 'chees', 'even', 'got', 'fanci', 'stuff', 'last', 'weekend', 'lemon', 'could', 'eat', 'half'], ['hahaha', 'not', 'owe', 'anyth', 'owe', 'red', 'lol', 'te', 'amo', 'idiot', 'hahaha', 'te', 'veo', 'ahasta', 'el', 'lune'], ['tire', 'today', 'think', 'go', 'take', 'nap', 'friend', 'come', 'miss', 'wish', 'restrict', 'alreadi'], ['could', 'say', 'left', 'vt', 'blackberryless', 'sinc', 'tuesday', 'night', 'lost'], ['lmao', 'camp', 'water', 'shower', 'well', 'water', 'smelt', 'nasti'], ['aww', 'lost', 'follow', 'fail'], ['scienc', 'class', 'right', 'urgh', 'stupid', 'project', 'not', 'want', 'go', 'track', 'school', 'tire', 'lol'], ['hate', 'feel', 'like'], ['aww', 'not', 'sad', 'download', 'copi'], ['good', 'visibl', 'shot', 'td', 'one', 'show', 'total', 'decoupl', 'low', 'mid', 'level', 'system', 'dead', 'wait', 'next', 'one'], ['ohh', 'barcalona', 'pleas', 'not', 'ruin', 'bgt'], ['daddi', 'left', 'go', 'back', 'home', 'texa', 'c', 'hope', 'n', 'next', 'two', 'month'], ['gain', 'wish', 'could', 'afford', 'someth', 'top', 'ramen', 'job'], ['monitor', 'not', 'turn', 'work', 'mother'], ['dint', 'dump', 'anyon', 'alway', 'get', 'dump', 'blame', 'not', 'believ', 'relationship', 'twpp'], ['got', 'buy', 'second', 'season', 'ghost', 'whisper', 'noo', 'moneyi'], ['bgt', 'ooh', 'weird'], ['aww', 'bless', 'haha', 'cute', 'tom'], ['tea', 'pitcher', 'thing', 'hard', 'find', 'not', 'seen', 'found', 'onlin', 'ugli'], ['tri', 'soo', 'hard', 'toget', 'want', 'amp', 'alway', 'end', 'goos', 'egg'], ['get', 'one', 'lil', 'gem', 'ear', 'repierc', 'work', 'definit', 'dread'], ['friday', 'not', 'wait', 'done', 'work', 'stuck', 'till'], ['car', 'crash', 'tv', 'worst'], ['mayb', 'wrong', 'week', 'could', 'stay', 'good', 'not'], ['bad', 'affect', 'languag', 'run', 'jvm', 'bad'], ['make', 'sad'], ['ohh', 'rather', 'bore', 'friday', 'night', 'soo', 'bore'], ['bum', 'contest', 'state', 'hawaii'], ['happi', 'birthday', 'man', 'ride', 'wed', 'see', 'guy', 'soon', 'though', 'play', 'juli'], ['bgt', 'not', 'watch', 'anymor'], ['lol', 'serious', 'fail'], ['not', 'miss', 'girlfriend', 'season'], ['ohh', 'twpp', 'fall', 'silent', 'wait', 'track', 'us', 'version', 'next', 'time', 'mayb', 'way', 'sunni', 'california', 'sound', 'good'], ['go', 'go', 'round', 'dvds', 'sell', 'miss', 'need', 'money'], ['traffic', 'crawl', 'right'], ['errg', 'not', 'believ', 'not', 'work', 'next', 'week', 'think', 'time', 'move', 'chick', 'fil'], ['resort', 'wear', 'today', 'not', 'finish', 'laundri', 'lol'], ['meh', 'feel', 'fine', 'crazi', 'minut', 'sick', 'session', 'hungri'], ['not', 'mention', 'hw', 'fat', 'get', 'frm', 'wrk', 'n'], ['yep', 'got', 'go', 'man', 'ttyl', 'eventu', 'sometim', 'futur', 'hope', 'soon'], ['start', 'anoth', 'hour', 'behind', 'wheel', 'driver', 'ed'], ['not', 'know', 'lender', 'yea', 'peopl', 'definit', 'suck', 'butt', 'toe', 'not', 'friend', 'help'], ['day', 'thing', 'suck', 'today'], ['cool', 'like', 'germani', 'award', 'saw', 'tv', 'could', 'not', 'come', 'comet', 'see', 'live', 'xoxo'], ['gaww', 'facebook', 'slow'], ['nope', 'look', 'super', 'sweet'], ['terrifi', 'surgeri', 'next', 'week'], ['not', 'stand', 'summer', 'fever', 'weather', 'get', 'realli', 'humid', 'lol'], ['not', 'feel', 'comfort', 'use', 'not', 'aw', 'pretti', 'icki', 'scurri', 'find', 'deal'], ['not', 'think', 'feel', 'well', 'sudden', 'tire', 'scare', 'fall', 'asleep', 'cuz', 'know', 'wake', 'sick'], ['think', 'quot', 'much', 'want', 'quot', 'factor', 'realli', 'want', 'fit', 'not', 'go', 'happen'], ['want', 'go', 'pub', 'boo'], ['appar', 'degre', 'kilkenni', 'comedi', 'would', 'great', 'remedi', 'boredom', 'hell', 'leav', 'kilkenni'], ['everyon', 'say', 'suppos', 'nude', 'pic', 'matt', 'striker', 'hope', 'get', 'troubl'], ['watch', 'jeremi', 'assembl', 'jr', 'new', 'radio', 'flyer', 'bike', 'jr', 'sick', 'degre', 'fever', 'take', 'nap', 'cheer', 'though'], ['made', 'huge', 'revel', 'dish', 'everyon', 'left', 'total', 'forgot', 'hate', 'happen'], ['graduat', 'next', 'sunday', 'go', 'miss', 'class'], ['miss'], ['youtub', 'watch', 'taylor', 'today', 'show', 'wish'], ['deep', 'disgust', 'would', 'even', 'take', 'littl', 'help', 'ala', 'sens', 'never', 'happen'], ['aw', 'thank', 'slowli', 'get', 'yep', 'tweak', 'knee', 'late', 'third', 'basic', 'stood', 'still', 'last', 'game'], ['kill', 'pigeon', 'today', 'thought', 'go', 'move', 'way', 'car', 'next', 'thing', 'know', 'bang', 'feather', 'rear', 'view', 'mirror', 'rip'], ['lame', 'not', 'deland', 'favorit', 'peopl'], ['poor', 'littl', 'mba', 'fire'], ['sorri', 'demi', 'read', 'post', 'attend', 'bgt', 'sure', 'support', 'sb', 'help', 'though', 'world', 'without', 'pap', 'plzz'], ['great', 'alway', 'not', 'east', 'germani', 'noko', 'least', 'provok', 'amp', 'go', 'kill'], ['oh', 'rain', 'sea', 'world', 'parad'], ['angrri', 'fb', 'account', 'got', 'wtf', 'poem', 'ever', 'written'], ['dammit', 'need', 'new', 'cupcak', 'tin'], ['lol', 'exam', 'not', 'go', 'mcast', 'school', 'finish', 'form', 'soo', 'disappoint'], ['lunch', 'fun', 'noth', 'eat'], ['oh', 'noe', 'macbook', 'hard', 'disk', 'die'], ['wow', 'love', 'headach', 'medicin', 'hous'], ['think', 'someon', 'may', 'key', 'car', 'big', 'scratch', 'hood'], ['feel', 'like', 'quarantin', 'everywher', 'go', 'pinkey', 'go', 'away', 'alreadi'], ['lol', 'none'], ['wish', 'photo', 'site', 'bigger'], ['boo', 'anim', 'collect', 'alreadi', 'sold', 'guess', 'miss', 'show'], ['lol', 'exam', 'not', 'go', 'mcast', 'school', 'finish', 'form', 'soo', 'disappoint'], ['sun', 'suck', 'especi', 'pale', 'whiteman', 'skin', 'not', 'stop', 'sneez', 'blame'], ['got', 'done', 'work', 'work'], ['want', 'iphon', 'lt'], ['sad', 'time', 'come', 'put', 'mom', 'home'], ['follow', 'week', 'would', 'better', 'gone', 'next', 'week'], ['arrg', 'tri', 'upload', 'thing', 'not', 'let'], ['class', 'next', 'two', 'work', 'everyday', 'today', 'til', 'next', 'wednesday', 'sad'], ['got', 'done', 'even', 'lab', 'left', 'not', 'figur', 'fml'], ['realli', 'sad'], ['one', 'saddest', 'song', 'ever', 'heard'], ['would', 'not', 'let', 'vote', 'yesterday', 'made', 'today', 'realli', 'hope', 'win', 'everyon', 'know', 'deserv'], ['wish', 'not', 'rain'], ['ugh', 'wait', 'visitor', 'pass', 'get', 'post', 'take', 'forev'], ['reaalli', 'bore'], ['final', 'get', 'lay', 'bit', 'major', 'headach'], ['aww', 'man', 'babi', 'dri'], ['heartburn', 'may', 'death'], ['aww', 'suck'], ['sad', 'not', 'go', 'make', 'sad'], ['not', 'swine', 'flu', 'atleast', 'hope', 'not'], ['got', 'hard', 'parent', 'apart', 'marriag', 'month', 'year', 'amp', 'mi', 'apart'], ['oh', 'dear', 'select', 'worst', 'bit', 'highlight', 'soprano', 'guy'], ['whaat', 'strong', 'rain', 'came', 'us', 'santa', 'clara', 'wish', 'could', 'sleep', 'got', 'attend', 'import', 'meet'], ['soo', 'children', 'museum', 'close', 'fund', 'raiser', 'got', 'annoy'], ['fair', 'ask', 'mktg', 'cd', 'etc', 'suggest', 'never', 'even', 'email', 'back'], ['bore', 'skull', 'got', 'get', 'job', 'suck', 'need', 'entertain'], ['sunburnt', 'gut', 'hope', 'fade', 'tmw'], ['sorri', 'post', 'vid', 'not', 'load'], ['oh'], ['poor', 'go', 'nap'], ['arnold', 'california', 'aka', 'best', 'place', 'could', 'come'], ['amp', 'head', 'feel', 'like', 'surfac', 'sun', 'underneath', 'beaver', 'pelt'], ['anywho', 'got', 'pool', 'within', 'like', 'minut', 'start', 'storm'], ['bad', 'mood', 'not', 'feel', 'good', 'bad', 'one', 'care'], ['ouuchh', 'hurt', 'index', 'finger', 'ahh'], ['ftsk', 'l', 'not', 'listen', 'fuck', 'piss', 'call', 'not', 'wait', 'leav', 'shitti', 'school'], ['stress', 'want', 'prom', 'perfect', 'amp', 'babe', 'shit', 'not', 'look', 'good', 'right'], ['want', 'watch', 'movi', 'quot', 'quot', 'one', 'want', 'watch'], ['stick', 'stone', 'may', 'break', 'word', 'hurt', 'forev'], ['realli', 'full', 'feel', 'sick'], ['keep', 'pull', 'knit', 'desk', 'put', 'back', 'not', 'good', 'not', 'good', 'minut', 'till', 'releas'], ['soo', 'crazi', 'fever'], ['blast', 'sale', 'today', 'one', 'pair', 'cord', 'mis', 'size', 'though', 'still', 'worth', 'might', 'come', 'back', 'tomorrow', 'thankss'], ['sad', 'stanley', 'steemer', 'number'], ['tri', 'decid', 'movi', 'friend', 'not', 'go', 'well', 'lol', 'p', 'bibl', 'studi', 'mean', 'cake', 'buy'], ['saddest', 'celeb', 'stori', 'week'], ['holiday', 'not', 'fair'], ['go', 'miss', 'eddi', 'half', 'countri', 'apart'], ['not', 'go', 'danc', 'recit', 'feel', 'like', 'piec', 'shit', 'cuz', 'cost', 'much', 'money'], ['fuck', 'cut', 'finger'], ['think', 'tour', 'england', 'not', 'got', 'see', 'aweoms', 'peopl'], ['stupid', 'twitter', 'faceless'], ['hate', 'wait', 'one', 'week', 'see', 'cuz', 'puerto', 'rico', 'still', 'come', 'soon'], ['right', 'armi', 'wife', 'germani', 'not', 'stand', 'not', 'summer'], ['wish', 'could', 'would', 'cost', 'much', 'call', 'way', 'uk'], ['need', 'tweep', 'not', 'dislik', 'not', 'keep', 'tweet', 'liter', 'everi', 'minut', 'sorri'], ['not', 'believ', 'tweet', 'special', 'moment'], ['wow', 'constant', 'rant', 'love', 'genghi', 'grill', 'never', 'not', 'colorado'], ['not', 'not', 'not', 'sad', 'venezuela'], ['swear', 'hot', 'not', 'want', 'leav', 'hous', 'hot'], ['rich', 'man', 'amaz', 'realli', 'not', 'bother', 'school', 'monday'], ['went', 'dmv', 'thing', 'never', 'chang'], ['hmm', 'sorri', 'went', 'mia'], ['got', 'back', 'school', 'ugh', 'not', 'want', 'go', 'danc', 'tonight'], ['oh', 'nooww', 'busi', 'see', 'long', 'known'], ['ouch', 'back', 'sick', 'pamela', 'anderson', 'esqu', 'chest'], ['everyon', 'set', 'quot', 'away', 'quot', 'msn', 'nobodi', 'talk'], ['entir', 'week', 'not', 'get', 'design', 'graphic', 'design', 'job', 'home', 'freelanc', 'sad'], ['tri', 'call', 'work', 'time', 'not', 'answer'], ['never', 'answer', 'wath', 'say'], ['hi', 'agre', 'small', 'children', 'run', 'happi', 'not', 'break', 'tear'], ['want', 'one', 'bad', 'get', 'one'], ['wow', 'broke', 'toe', 'today', 'stupid', 'piec', 'concret', 'lame', 'job', 'search', 'sight', 'see', 'brittani'], ['not', 'marri', 'silli', 'man', 'done', 'long', 'ago', 'read', 'tweet', 'bare', 'escap', 'pay', 'alimoni'], ['aww', 'sweeti', 'could', 'alway', 'take', 'break', 'read', 'write', 'someth', 'happier', 'make', 'feel', 'better'], ['stand', 'tailbon', 'kill'], ['kid', 'got', 'second', 'chanc', 'shudnt', 'mowg', 'not', 'gut'], ['ughh', 'feel', 'rubbish'], ['damn', 'never', 'knew', 'could', 'miss', 'phone', 'much', 'hour', 'till', 'told', 'not', 'back', 'till'], ['finish', 'take', 'world', 'geograhi', 'final', 'think', 'bad'], ['bum', 'miss', 'hope', 'enjoy', 'write', 'conf', 'though'], ['one', 'thing', 'hate', 'friend', 'dat', 'move', 'skl', 'forget', 'yuu'], ['scare', 'bruis'], ['offici', 'worst', 'day', 'call', 'mile', 'away'], ['weekend', 'look', 'sloppi', 'look', 'forward', 'great', 'week', 'great', 'custom'], ['sickk', 'tomorrow', 'disast', 'not', 'get', 'better'], ['depress', 'pretti', 'day', 'everyon', 'either', 'someth', 'not'], ['ya', 'pretti', 'bad', 'not', 'sure', 'get', 'go', 'visit', 'super', 'busi', 'late'], ['head', 'hurt', 'feel', 'sick', 'go', 'work', 'tomorrow'], ['break', 'heart'], ['umm', 'idea', 'friend', 'piss', 'not', 'know', 'hate', 'much', 'need', 'help', 'britney', 'plz'], ['would', 'like', 'nutella', 'none'], ['welcom', 'sweeti', 'anytim', 'need', 'find', 'way', 'get', 'follow', 'not', 'mani'], ['gaasp', 'not', 'know', 'final', 'one', 'sad', 'read', 'book', 'year'], ['work', 'till', 'dread', 'tv', 'shop', 'mine', 'broke'], ['alreadi', 'miss', 'mohawk'], ['denial', 'fuck', 'truth'], ['noo', 'font', 'connoisseur', 'total', 'relat', 'dude', 'heart', 'goe'], ['well', 'sad', 'live', 'bore', 'citi', 'usa', 'noth'], ['not', 'believ', 'venus', 'lost', 'real', 'shame', 'smh', 'think', 'get', 'sick', 'crap', 'week', 'not', 'look', 'like', 'wknd', 'gona', 'better'], ['man', 'peopl', 'hard', 'reach', 'stalk'], ['hahahahahahahahahahahaha', 'love', 'actual', 'mad', 'crave', 'late', 'though'], ['got', 'home', 'rosi', 'surpris', 'smile', 'hug', 'amp', 'kiss', 'wait'], ['speak', 'fish', 'compani', 'fish', 'die', 'rip', 'julio'], ['littl', 'bird', 'flew', 'window', 'snap', 'neck'], ['phone', 'whatchu', 'tonight', 'sucka', 'dane', 'cook', 'sold', 'ticket', 'lame'], ['wlda', 'seen', 'wit', 'dummyhead'], ['got', 'stung', 'bee'], ['water', 'park', 'today', 'made', 'jealous', 'look', 'pic'], ['long', 'stress', 'day', 'come', 'tomorrow', 'write', 'respons', 'eoi', 'colleagu', 'job'], ['much', 'homework', 'think', 'go', 'hide', 'corner', 'cri'], ['aarrgghh', 'huge', 'spider', 'towel', 'pile', 'cri', 'glad', 'kerbear', 'not', 'sorri', 'mum', 'not', 'bring', 'rest'], ['readin', 'last', 'twitt', 'hope', 'ok'], ['awe', 'man', 'hope', 'someon', 'turn'], ['worst', 'dream', 'ever', 'weird', 'think', 'thought', 'subconsci'], ['exact', 'day', 'man', 'buri', 'followfriday'], ['not', 'ipod', 'not'], ['fine', 'tri', 'figur', 'mean', 'behind', 'song', 'not', 'think', 'anyth'], ['least', 'made'], ['bgt', 'shame', 'dreambear', 'not', 'get'], ['know', 'mom', 'go', 'monday', 'get', 'chang', 'upset'], ['took', 'best', 'friend', 'year', 'well', 'know', 'kati', 'outzen', 'quiz', 'fail', 'happen', 'sad'], ['alway', 'want', 'perfect', 'hard', 'even', 'know', 'imposs'], ['happi', 'friday', 'danc', 'rain', 'outta', 'sat', 'saturday', 'morn', 'shift', 'still', 'good'], ['noo', 'worst', 'news', 'ever', 'today', 'tattoo', 'artist', 'move', 'omg', 'go'], ['fed', 'pain'], ['not', 'leav', 'alon', 'accept', 'appolog'], ['damn', 'total', 'gut', 'decid', 'not', 'go', 'tonight', 'roni', 'size', 'djing'], ['bet', 'receiv', 'lot', 'hit', 'tweet', 'work', 'not', 'wish', 'could'], ['say', 'smudg', 'start', 'call', 'peopl', 'given', 'malici', 'action', 'pull', 'night'], ['get', 'trumpet', 'book', 'get', 'caught', 'rain', 'trumpet', 'book', 'oh', 'dear', 'ny'], ['yeah', 'unfortuantley', 'sam', 'hank', 'crap', 'bowl', 'like', 'roll', 'along', 'floor', 'got', 'grr'], ['not', 'think', 'would', 'happi'], ['went', 'limit', 'action', 'per', 'hour', 'twitter', 'client', 'hate', 'limit'], ['wish', 'could', 'sat', 'super', 'busi', 'day', 'sunday', 'perhap', 'play', 'footbal', 'dolor', 'park', 'welcom', 'come', 'hang'], ['believ', 'tri', 'ginger', 'freckl', 'join', 'face', 'get', 'bottl', 'cancer'], ['hernia', 'hurt', 'way', 'usual', 'tonight', 'way', 'abl', 'go'], ['swoob', 'swass', 'hell', 'air', 'not', 'today', 'pack', 'blech'], ['oh', 'work', 'poor', 'boy'], ['glad', 'weekend', 'one', 'week', 'left', 'school', 'kid'], ['yeah', 'rememb', 'hug'], ['saw', 'made', 'sad'], ['favorit', 'song', 'stand', 'not', 'see', 'would', 'give', 'chang', 'not', 'know', 'call'], ['dam', 'want', 'android', 'stupid', 'roger'], ['not', 'even', 'want', 'go', 'store', 'get', 'ice', 'cream', 'wast', 'cute', 'outfit', 'sit', 'ass', 'twitter'], ['guess', 'hour', 'mainten', 'sad', 'miss', 'friend'], ['dead', 'gerbil'], ['stomach', 'cramp', 'sat', 'bed', 'hot', 'water', 'bottl', 'hot', 'milk', 'amp', 'toast', 'feel', 'like', 'wi', 'girl', 'minus', 'stomach', 'cramp'], ['kno', 'kknow', 'sigh', 'suck'], ['tire'], ['quot', 'mom', 'friend', 'drink', 'quot'], ['not', 'start', 'cat', 'fire'], ['sunburn'], ['ipod', 'headphon', 'gone', 'kaput', 'want', 'buy', 'new', 'one', 'buy', 'bose', 'instead', 'work', 'appl'], ['frame', 'damag', 'car', 'could', 'total'], ['know', 'short', 'week', 'certain', 'drag'], ['traffic', 'horrif', 'jus', 'want', 'gt', 'dog'], ['ok', 'mate', 'stay', 'well', 'loser', 'not'], ['go', 'winchest', 'sister', 'not', 'go', 'bad', 'time', 'x'], ['oh', 'ok', 'well', 'sendin', 'lot', 'love', 'xx'], ['bwahahahahahahaha', 'nice', 'want', 'doggi'], ['bummer', 'bro', 'sorri', 'hear'], ['stand', 'gay', 'marriag', 'fuck', 'natali', 'stop', 'ask', 'gay', 'ass', 'question', 'go', 'get', 'job', 'dad'], ['witch', 'upstat', 'fuck', 'hick', 'dri', 'counti', 'alcohol', 'ethnic', 'food', 'cri'], ['pku', 'meet', 'london', 'day', 'today', 'one', 'favorit', 'pkuer', 'jessi', 'not', 'pku', 'leukemia', 'hospit'], ['san', 'jose', 'good', 'time', 'also', 'help', 'dad', 'edit', 'next', 'holi', 'land', 'brochur', 'wish', 'could', 'go'], ['tri', 'go', 'got', 'messag', 'quot', 'page', 'not', 'exist', 'quot'], ['almost', 'time', 'say', 'good', 'bye', 'twimul', 'miss', 'tweep'], ['movi', 'amaz', 'littl', 'short', 'want'], ['hate', 'go', 'work'], ['attack', 'cola', 'sticki'], ['sorri', 'everybodi', 'appar', 'twitter', 'not', 'send', 'updat'], ['sit', 'work', 'watch', 'clock', 'not', 'move', 'fast', 'enough'], ['aww', 'bbq', 'not', 'fair', 'chocol'], ['sad', 'trauma', 'futur', 'serial', 'killer'], ['thank', 'invit', 'though'], ['sorri', 'tweet', 'bgt', 'poor', 'wonder', 'crazi', 'weird', 'greg', 'not', 'fair', 'silli', 'littl', 'girl', 'never', 'go', 'cope', 'urgh', 'not', 'fair'], ['poor', 'flower', 'fornic', 'nose'], ['ugh', 'hedach', 'may', 'cheap', 'fuck', 'shit', 'still', 'class', 'roll'], ['nah', 'next', 'week', 'honey', 'fault', 'confusin'], ['eye', 'hurt'], ['not', 'hug'], ['miss', 'come', 'say', 'bye', 'leav'], ['wed', 'next', 'thursday', 'ill'], ['day', 'beast'], ['lt', 'bore', 'death'], ['oh', 'read', 'go', 'remak', 'girl', 'want', 'fun', 'stop', 'stop'], ['guy', 'not', 'say', 'hi', 'answer', 'question', 'yesterday', 'nice', 'song'], ['crave', 'munchkin', 'bad'], ['psi', 'take', 'start', 'monday', 'not', 'look', 'forward', 'go', 'back', 'school'], ['hope', 'happen', 'tomorrow', 'ill', 'provid', 'dad', 'get', 'better', 'take'], ['oh', 'dear', 'terribl', 'howev', 'moleskin', 'notebook', 'rule', 'lot'], ['know', 'run', 'though', 'soph', 'get', 'massiv', 'one'], ['wonder', 'anyon', 'seen', 'cell', 'phone', 'not', 'find', 'anywher'], ['stub', 'littl', 'toe', 'morn', 'file', 'cabinet', 'turn', 'black'], ['soo', 'much'], ['arg', 'exil', 'still', 'problem'], ['heard', 'lot', 'program', 'like', 'go', 'larg', 'chain', 'learn', 'center', 'sorri'], ['love', 'haair'], ['pleas'], ['yeah', 'fell', 'asleep', 'sorri', 'way', 'world', 'wake', 'lol', 'work'], ['cold', 'wish', 'go', 'back', 'bed'], ['boss', 'come', 'today'], ['good', 'luck', 'tonight', 'big', 'final', 'show'], ['school', 'guy', 'like', 'talk', 'girl', 'not', 'stand', 'peopl'], ['miss', 'tampa'], ['way', 'work', 'not', 'bother'], ['understand', 'fear', 'feel', 'way', 'mani', 'thing', 'realli', 'need', 'motiv', 'overcom', 'mine', 'guilt'], ['sick', 'home', 'bore', 'want', 'get', 'better', 'alreadi', 'enjoy', 'colleg', 'grad'], ['awesom', 'deserv', 'sure', 'miss', 'crab', 'game'], ['greg', 'noo', 'leav', 'shud', 'gone', 'throo', 'go', 'find', 'restaur', 'not', 'worri', 'lol', 'cri', 'cri', 'cri'], ['got', 'go', 'twitter', 'stupid', 'sister', 'want', 'go', 'facebook', 'oge', 'montreal', 'not', 'bye', 'xoxox', 'lt'], ['wat', 'got', 'luck', 'guy', 'beat', 'la', 'lol', 'would', 'like', 'see', 'best', 'wish', 'denver', 'nugget', 'cav', 'done'], ['pictur', 'last', 'year', 'freshman', 'year', 'miss', 'thos', 'day'], ['horribl', 'experi', 'dentist', 'crown', 'made', 'not', 'fit', 'right', 'not', 'fix', 'give', 'back', 'money'], ['not', 'good', 'day', 'not', 'good', 'week', 'forreal'], ['ok', 'thunder', 'scare'], ['aww', 'miss'], ['place', 'bet', 'sure', 'thing', 'lost', 'bet'], ['quot', 'go', 'miss', 'go', 'want', 'back', 'go', 'wish', 'day', 'not', 'gone', 'fast', 'quot', 'true', 'alreadi', 'miss', 'year'], ['get', 'anoth', 'puppi', 'not', 'cool', 'realli'], ['get', 'anoth', 'puppi', 'not', 'cool', 'realli'], ['woo', 'hoo', 'friday', 'work', 'cleaner', 'tomorrow'], ['submit', 'resum', 'day', 'saw', 'answer', 'back', 'oh', 'well'], ['thank', 'definit', 'throwbi', 'editor', 'review', 'entri', 'decid', 'not', 'publish'], ['rub', 'see', 'morrissey', 'il', 'go', 'cri', 'corner', 'x'], ['need', 'reloc', 'west', 'coast', 'weather', 'killin'], ['high', 'school'], ['nnoo', 'learn', 'got', 'frost', 'warn', 'tonight'], ['never', 'answer'], ['day', 'hour', 'work', 'would', 'realli', 'like', 'job', 'fabul', 'b'], ['soo', 'much', 'stress', 'late'], ['gee', 'week', 'get', 'anymor', 'not', 'go', 'spain'], ['hear', 'sweet', 'dog'], ['man', 'miss', 'waitn', 'day', 'giv', 'tix', 'away', 'amp', 'whn', 'rappn', 'wrk', 'gav', 'tix', 'away', 'sad'], ['love', 'half', 'day', 'not', 'rain', 'soccer', 'practic', 'tonightt'], ['pretti', 'sure', 'miss', 'watch', 'quot', 'yo', 'gabba', 'gabba', 'quot', 'niec'], ['date', 'hockey', 'game', 'confus', 'next', 'week'], ['sharpi', 'run', 'danger', 'low', 'ink'], ['facebook', 'decid', 'annoy', 'abus', 'add', 'lot', 'friend', 'least', 'distract', 'coursework'], ['light', 'depress', 'pay', 'extra', 'bill', 'last', 'year', 'tax', 'must', 'find', 'countri', 'tax', 'lower'], ['guess', 'get', 'load', 'email', 'amp', 'peopl', 'ask', 'stuff', 'al', 'time', 'serious', 'wonder', 'ever', 'read', 'comment', 'x'], ['home', 'bore', 'plzz', 'someon', 'txt', 'someth', 'weekend'], ['hve', 'fat', 'kink', 'neck', 'mayb', 'someon', 'handsom', 'massag', 'later', 'see'], ['play', 'club', 'impact', 'tomorrow', 'final', 'got', 'shirt', 'woopiti', 'doo', 'want', 'slurpe', 'soo', 'bad', 'right'], ['not', 'go', 'work', 'tomorrow', 'good', 'time', 'revis', 'though'], ['never', 'anyth', 'good', 'school', 'rabbit', 'life', 'cycl', 'not', 'know', 'tune', 'giutar', 'stuf'], ['bad', 'sort', 'want', 'miss', 'know', 'miss'], ['jealous', 'wish', 'could', 'join', 'cold', 'la', 'right'], ['finger', 'hurt'], ['miss', 'daddi', 'much'], ['wow', 'offici', 'lost', 'faith', 'britain', 'look', 'like', 'wish', 'not', 'met', 'sad'], ['cri', 'way', 'final', 'episod', 'er', 'er', 'documentari'], ['got', 'realli', 'bad', 'arthritus', 'left', 'hand', 'not', 'use', 'thumb'], ['hmm', 'essens', 'award', 'would', 'fun', 'also', 'prici'], ['tire', 'alarm', 'set', 'bed', 'soon', 'bloodi', 'iphon', 'backup', 'sync', 'finish'], ['sick', 'not', 'seem', 'like', 'get', 'better'], ['go', 'bed', 'dnt', 'feel', 'well', 'alway'], ['miss', 'min', 'haha', 'went', 'sleep', 'past', 'major', 'anxieti', 'attack', 'around', 'ugh', 'boo'], ['bicycl', 'suck', 'not', 'ride'], ['whew', 'vacuum', 'good', 'time', 'vacuum'], ['wow', 'teacher', 'call', 'skunk', 'cuz', 'hair'], ['plan', 'ruin'], ['hope', 'could', 'drop', 'vim', 'macvim', 'could', 'share'], ['got', 'work', 'today', 'three', 'day', 'left', 'heart', 'break'], ['fuck', 'kind', 'bug', 'hous', 'not', 'know'], ['great', 'not', 'eve', 'locat', 'phone', 'goe', 'drain'], ['gettin', 'cardio', 'right', 'walkin', 'train', 'station', 'aww', 'miss', 'gym'], ['hate', 'life', 'mo', 'suck'], ['came', 'packag', 'not'], ['mani', 'cool', 'thing', 'american', 'not', 'watch'], ['choir', 'assembl', 'bad', 'fuck', 'hot', 'yay'], ['lone'], ['husband', 'went', 'bed', 'miss', 'tuesday'], ['dude', 'wtf', 'text', 'morn', 'take', 'care', 'uncool', 'confirm', 'hate'], ['decler', 'yet', 'crazi', 'ass', 'korean', 'not', 'play', 'nice', 'anymor', 'think', 'next', 'think', 'war'], ['dad', 'ask', 'stick', 'tongu', 'iron', 'told', 'not', 'burn', 'finger', 'burnt', 'finger'], ['would', 'much', 'rather', 'not', 'punch', 'might', 'hurt'], ['oh', 'godd', 'cough', 'littl', 'bit', 'taco'], ['bgt', 'amaz', 'tonight', 'three', 'amaz', 'act', 'got', 'sent', 'home'], ['twitter', 'one', 'talk', 'know', 'celeb', 'nt', 'nice', 'spoken'], ['lol', 'dork', 'hmm', 'book', 'pretti', 'good', 'mayb', 'check', 'suck', 'not', 'much', 'better'], ['hahaha', 'agre', 'glad', 'aiden', 'tonight', 'show', 'greg', 'got', 'place'], ['noo', 'well', 'prob', 'june', 'not', 'help'], ['comput', 'pack', 'away', 'goe', 'life', 'right', 'cardboard', 'box'], ['got', 'headach'], ['home', 'feel', 'tire', 'want', 'take', 'nap', 'not'], ['oop', 'last', 'link', 'first', 'sri', 'mistak'], ['flip', 'flop', 'downtown', 'seattl'], ['ahaha', 'know', 'not', 'anyth', 'weekend'], ['lil', 'sad', 'not', 'abl', 'toeat', 'hot', 'dog', 'big', 'kahuna', 'cooki', 'sandwich', 'ranger', 'game', 'tonight'], ['greg', 'cri', 'l', 'could', 'got', 'still', 'love', 'greg', 'bgt'], ['not', 'count'], ['final', 'got', 'teach', 'load', 'confus', 'clear', 'teach', 'third', 'year', 'section', 'catch'], ['please', 'thing', 'want', 'birthdayi', 'pleas', 'say', 'happi', 'birthday'], ['not', 'west', 'sinc', 'think', 'pick', 'bad', 'wknd', 'overcast', 'though'], ['boredd', 'day', 'gone', 'quick', 'not', 'like'], ['even', 'though', 'saturday', 'morn', 'feel', 'like', 'weekend', 'alreadi', 'way', 'awak', 'bad', 'dream'], ['aww', 'ok', 'stuck', 'coach', 'come', 'back', 'nan', 'today', 'love', 'sunshin', 'xx'], ['headach'], ['ya', 'could', 'hit', 'aim', 'mad', 'bore', 'nuttin'], ['need', 'play', 'infam', 'free', 'blockbust', 'rental', 'coupon', 'need', 'one', 'miss', 'coke', 'reward'], ['justwatch', 'depress', 'episod', 'jon', 'kate', 'ever', 'actual', 'almost', 'cri'], ['wish', 'laptop', 'charger', 'could', 'tweet', 'faster'], ['choos', 'one', 'love', 'song', 'lv', 'amp', 'tt', 'bt', 'like', 'read'], ['veryy', 'upset', 'not', 'go', 'hacienda', 'tonight', 'stupid', 'nugget', 'game'], ['feel', 'like', 'ish', 'want', 'go', 'home', 'go', 'mimi'], ['got', 'super', 'cold'], ['go', 'go', 'home', 'tri', 'take', 'nap', 'emot', 'exhaust', 'lt'], ['stomach', 'ach', 'total', 'suck'], ['shame', 'realli'], ['got', 'cours', 'work', 'hate', 'hard', 'one'], ['stupid', 'not', 'get', 'not', 'find', 'think', 'ebay', 'scare'], ['not', 'babysit', 'tonight', 'miss', 'kid'], ['luci', 'hate', 'gweg'], ['new', 'pictur', 'not', 'upload'], ['dnt', 'wireless', 'ne', 'hater', 'ugh', 'save', 'copi', 'watch'], ['work', 'still', 'feel', 'pain', 'friend', 'wish', 'magic', 'wand', 'eras', 'mad'], ['omg', 'mom', 'call', 'late', 'hes', 'gone'], ['batman', 'arkham', 'asylum', 'not', 'system', 'play', 'sad'], ['home', 'ill', 'work', 'man', 'flu', 'hell'], ['know', 'r', 'lol', 'hope', 'said'], ['water', 'plant', 'head', 'farm', 'not', 'popcorn', 'goat', 'katnip', 'look', 'good', 'saddl'], ['slight', 'burnt', 'challah', 'proof', 'eatin', 'though'], ['lost', 'key', 'mall', 'took', 'min', 'find'], ['load', 'beard', 'papa', 'disappear', 'uk'], ['someon', 'came', 'sleep', 'nation', 'passtim', 'turn', 'human'], ['would', 'someon', 'even', 'someth', 'like', 'got', 'pretti', 'damn', 'desper', 'attent', 'lol', 'poor', 'keanu'], ['whuurr', 'gland', 'realli', 'swollen', 'guess', 'weekend', 'blow'], ['well', 'bell', 'hook', 'teach', 'transgress', 'sometim', 'miss', 'teach', 'amp', 'mess', 'bad', 'system'], ['boo', 'got', 'rain', 'beach'], ['phone', 'still', 'broken', 'come', 'whenev'], ['suck', 'matter', 'go', 'freakin', 'late', 'work'], ['hope', 'ok'], ['grr', 'internet', 'run', 'next', 'wed', 'least', 'def', 'answer'], ['mose', 'girlfriend', 'broke'], ['yea', 'today', 'love', 'shudv', 'told', 'anyth', 'excit', 'happen', 'yet', 'saw', 'last', 'night'], ['feel', 'aw', 'new', 'medic', 'make', 'nauseous'], ['great', 'first', 'impress', 'littl', 'downsid', 'access', 'hatch', 'upgrad', 'ram'], ['ummnn', 'ummnn', 'good', 'thank', 'let', 'know', 'earlier', 'ate', 'alreadi'], ['britain', 'got', 'good', 'weather', 'wish'], ['nurburgr', 'good'], ['saw', 'favorit', 'surpris', 'way', 'sad'], ['sad', 'gmail', 'chat', 'die', 'not', 'help'], ['undeni', 'truth', 'suck', 'talk', 'peopl', 'good', 'make', 'connect', 'come', 'either', 'strang', 'distant'], ['holli', 'spelt', 'not', 'made', 'cri', 'bgt', 'tonight', 'gxx'], ['iigghhtt', 'fur', 'geet', 'idc', 'not', 'know', 'eh', 'blah', 'ugh', 'blah', 'not', 'know', 'um', 'yah', 'immboredd', 'ugh', 'ill', 'fuckitt'], ['thundershow', 'plus', 'basebal', 'equal', 'aww'], ['give', 'birth', 'screamer', 'hate', 'scream', 'children', 'guess', 'hate', 'scream', 'children', 'besid'], ['sunburn', 'hurt'], ['yea', 'head', 'home', 'chang', 'head', 'pelham', 'sad', 'thought', 'supos', 'head', 'nkotb', 'concert'], ['love', 'summer', 'odd', 'not', 'want', 'school', 'year', 'end'], ['think', 'up', 'web', 'site', 'hate', 'still', 'brew', 'suppli', 'packag', 'held', 'hostag', 'work', 'slow', 'up', 'deliveri'], ['saddest', 'thing', 'seen'], ['oh', 'noo', 'not', 'get'], ['dude', 'hurt'], ['oh', 'good', 'top', 'haunt', 'one', 'bakeri', 'insid', 'ralphi', 'bodi', 'amp', 'forget'], ['not', 'good', 'box', 'worth', 'way'], ['realli', 'hate', 'mobil', 'hard', 'tweet', 'sidekick'], ['doh', 'rush', 'get', 'puma', 'open', 'got', 'pull', 'sad'], ['past', 'ok', 'sinc', 'got', 'appart', 'difficult', 'save', 'money'], ['yea', 'got', 'outta', 'one', 'want', 'back', 'though', 'feel', 'cool', 'dude', 'lil'], ['stuck', 'finger', 'throat', 'bunch', 'bump', 'tongu', 'amp', 'throat'], ['today', 'sad', 'day', 'tucson', 'shall', 'miss', 'sour', 'cream', 'appl', 'pie', 'fondu', 'separ', 'seat', 'group', 'dog'], ['frustrat', 'stupid', 'iphon', 'need', 'blackberri'], ['jealous', 'let', 'slip', 'babi', 'not', 'sure', 'could', 'even', 'half', 'right'], ['not', 'sleep', 'not', 'deserv', 'n', 'know'], ['realli', 'hurt'], ['realli', 'good', 'definit', 'not', 'mani', 'peopl', 'get', 'burn', 'aliv'], ['hate', 'watch', 'news', 'aw', 'thing', 'happen'], ['not', 'give'], ['wonder', 'let', 'know', 'think', 'not', 'light', 'read'], ['omg', 'nightmar'], ['feel', 'lost', 'keep', 'run', 'head', 'stare', 'face', 'haha', 'basic', 'headach', 'amp', 'eye', 'hurt'], ['wonder', 'cld', 'make', 'thing', 'wors', 'alreadi', 'answer'], ['good', 'luck', 'oh', 'play', 'inth', 'mix', 'knockout', 'week', 'play', 'pros', 'old', 'son', 'play', 'amp', 'top', 'woman'], ['facebook', 'bitch'], ['sad', 'not', 'go', 'friend', 'hous'], ['jealous', 'want', 'see', 'film'], ['yep', 'lost', 'bet', 'chris'], ['mess', 'makin', 'right', 'best', 'holi', 'day', 'wish'], ['found', 'friend', 'dad', 'pass', 'away', 'yesterday'], ['even', 'bother', 'anymor', 'everyon', 'makin', 'feel', 'like', 'wast', 'space'], ['curs', 'ab', 'wardrob', 'handl', 'one', 'drew', 'blood'], ['not', 'sure', 'tell', 'happen', 'watermelon', 'leav', 'car', 'tx', 'week', 'not', 'good'], ['got', 'call', 'realtor', 'say', 'anoth', 'show', 'sunday', 'offer', 'yet', 'least', 'lot', 'interest'], ['oh', 'hope', 'find', 'kitten'], ['like'], ['sad', 'realli', 'realli', 'sad'], ['geo', 'isu', 'go', 'swear', 'wors', 'day', 'ever'], ['realli', 'not', 'take'], ['damnit', 'day', 'northpark', 'use', 'live', 'near', 'someon', 'steal', 'mike', 'mee'], ['amp', 'not', 'go', 'lie', 'degre', 'thank', 'leavin', 'sweater', 'molli', 'brr'], ['hate', 'ms', 'make', 'feel', 'not', 'control', 'leg', 'amp', 'much', 'pain', 'drive', 'crazi', 'anyon', 'els', 'get', 'moment'], ['scari', 'cape', 'guy'], ['yesterday', 'not', 'much', 'lazi', 'today', 'not', 'feel', 'good'], ['still', 'direct', 'messag', 'hell', 'complain', 'c', 'ya', 'not', 'answer', 'ask'], ['present', 'avail', 'onlin', 'meet', 'poster', 'discuss', 'go', 'fast', 'not', 'write', 'fast', 'enough'], ['emo', 'moment', 'said', 'good', 'bye', 'best', 'friend', 'ever', 'meet', 'sure'], ['omgg', 'heard', 'someon', 'go', 'die', 'new', 'season', 'secret', 'life', 'american', 'teenag', 'noo'], ['think', 'haircut', 'not', 'bad', 'look', 'yesterday', 'still', 'bad', 'though'], ['lmao', 'back', 'queen'], ['surgeri', 'effin', 'hurt'], ['expect', 'sun', 'come', 'today', 'guess', 'not', 'happen'], ['sick', 'not', 'id', 'show', 'ya'], ['boyfriend', 'broke', 'wrist', 'might', 'need', 'surgeri', 'nervous'], ['probabl', 'suck'], ['done', 'cold', 'realli', 'want', 'go', 'tonight', 'realli', 'not', 'feel', 'like'], ['wow', 'scari', 'statist'], ['hate', 'program', 'freez', 'instal'], ['omg', 'littl', 'kid', 'cancer', 'saddest', 'thing', 'ever'], ['linda', 'mean', 'last', 'post', 'not', 'sound', 'good'], ['realli', 'miss', 'place', 'grandpar', 'live', 'calm', 'countri', 'come'], ['today', 'quot', 'sonni', 'chanc', 'quot', 'came', 'brazil', 'love', 'amaz', 'lt', 'pleas', 'repli'], ['miss', 'way', 'much', 'cnt', 'stop', 'think', 'nite', 'nite', 'folkkz'], ['oh', 'insomnia', 'hate', 'bore', 'stare', 'ceil', 'cano', 'go', 'sleepnow', 'pleas'], ['ochh', 'got', 'blister', 'foot', 'sun', 'today', 'soo', 'sore', 'supos', 'yas', 'dnt', 'care', 'hah', 'thaught', 'tweet', 'anyway'], ['littl', 'sad', 'school', 'end', 'today', 'move', 'go', 'miss', 'new', 'friend', 'year', 'got', 'hair', 'cut'], ['bug', 'attack', 'laptop'], ['holi', 'cow', 'archi', 'andrew', 'final', 'marri', 'veronica', 'not', 'thought', 'eventu', 'happen', 'grade', 'bad'], ['rec', 'not', 'pain', 'need', 'not', 'lose', 'lt', 'heart', 'breakingg'], ['sorri', 'hear'], ['ugli', 'girl', 'alway', 'insist', 'make', 'ugli', 'face', 'ugh'], ['omg', 'hurt', 'much'], ['hungri'], ['got', 'say', 'feel', 'bad', 'everyon', 'nkorea', 'starv', 'crazi', 'charg', 'endang', 'daili'], ['wish', 'could', 'go', 'movi', 'want', 'alon'], ['sigh', 'candi'], ['brain', 'hurt'], ['miss', 'britain', 'got', 'talent', 'gut'], ['ooh', 'spoil', 'teenag', 'fantasi'], ['thunder', 'scare', 'hell', 'hate', 'thunder', 'better', 'not', 'loos', 'electr', 'fb'], ['awe', 'feel', 'left'], ['sad', 'today'], ['expens'], ['sunni', 'bore', 'sad', 'call', 'text'], ['saw', 'boo', 'went', 'back', 'work', 'time', 'hair', 'go', 'rain', 'wtf'], ['kind', 'sad', 'alon', 'time', 'miss', 'brother', 'friend', 'suck', 'mean', 'one', 'even', 'call', 'week'], ['twitter', 'foke', 'today', 'arg', 'hour', 'work', 'till', 'weekend', 'woo'], ['awesom', 'man', 'damn', 'sent', 'affili', 'link', 'lol', 'oh', 'well'], ['ok', 'hurt', 'abit', 'thought', 'good', 'job', 'rude', 'peopl', 'could', 'understand', 'x'], ['jealous'], ['wish', 'sun', 'lolli', 'get', 'addict', 'flavour'], ['day', 'motorway', 'train', 'noott', 'fun'], ['one', 'becom', 'bigger', 'pain'], ['miss', 'come', 'say', 'bye', 'leav'], ['lunch', 'bittercreek', 'hopnoxi', 'sweetgrass', 'ipa', 'though', 'still', 'right', 'world'], ['aaww', 'worri', 'fresh', 'start', 'work', 'grow'], ['not', 'look', 'forward', 'upcom', 'better', 'half', 'gone', 'time', 'truli', 'go', 'suck', 'big', 'time'], ['christian', 'lacroix', 'one', 'client', 'gone', 'bust'], ['not', 'realiz', 'anim', 'kingdom', 'close', 'earli', 'today', 'stick', 'exit', 'traffic'], ['srsli', 'bgt', 'joke', 'maan', 'lame', 'ughh', 'work', 'tomorah', 'get', 'earli'], ['thank', 'found', 'link', 'howev', 'think', 'need', 'custom', 'download'], ['ugh', 'wait', 'intermin'], ['oh', 'god', 'cheesi', 'disco', 'music', 'start', 'everyon', 'get', 'tabl', 'need', 'wine'], ['jealous', 'not', 'asylum', 'right'], ['start', 'shift', 'go', 'miss', 'like', 'hour', 'laker', 'game'], ['want', 'chines', 'food', 'realli', 'baad'], ['today', 'lame', 'not', 'orlando', 'soo', 'look', 'forward', 'next', 'friday'], ['supposedd', 'hang', 'al', 'mommi', 'not', 'let', 'doo', 'blah', 'hahaha'], ['annoy', 'ppt', 'not', 'save', 'chang', 'explicit', 'save'], ['aw', 'poor', 'not', 'let', 'get', 'ignor', 'n', 'keep', 'head', 'held', 'high', 'iz', 'immatur', 'lil', 'girl', 'lol'], ['lucki', 'mom', 'paid', 'everyth', 'take', 'shop'], ['stupid', 'folkeston', 'cinema', 'show', 'star', 'trek', 'time', 'damn'], ['start', 'save', 'tumblr', 'draft', 'happen', 'week', 'sad'], ['sabido', 'nada', 'de', 'ti', 'make', 'bit', 'sad', 'must', 'say'], ['period', 'exam', 'day', 'studi', 'night', 'studi', 'sleep', 'funni', 'time'], ['welcom', 'glasgow', 'felix', 'sorri', 'not', 'tonight'], ['look', 'sketch', 'final', 'catwalk', 'outfit', 'realli', 'realli', 'want', 'long', 'pink', 'hair', 'back', 'also', 'want', 'dye', 'model', 'hair', 'pink', 'not', 'allow'], ['britain', 'got', 'talent', 'rather', 'disappoint', 'year'], ['miss', 'bham'], ['op', 'sorri', 'queen', 'mom'], ['realli', 'mad', 'world', 'today', 'today', 'sucki', 'day'], ['sister', 'stupid', 'parti', 'amp', 'amp', 'want', 'hang', 'friend', 'hilli', 'not', 'txt', 'back'], ['want', 'pineappl', 'miss', 'babi'], ['spoke', 'soon', 'amp', 'weekend', 'may', 'delay', 'like', 'min', 'aah', 'gottaa', 'get', 'outt', 'lose'], ['colleagu', 'quot', 'help', 'quot', 'creat', 'unit', 'site', 'iweb', 'not', 'help', 'trash', 'code', 'css', 'file', 'page', 'site', 'optim'], ['trailer', 'new', 'moon', 'second', 'still', 'watch', 'though', 'twice', 'lol', 'figur', 'miss', 'someth', 'still', 'sick'], ['complet', 'exhaust', 'thank', 'yesterday', 'go', 'home', 'yet'], ['ah', 'tummi', 'hurt', 'damn', 'starbuck'], ['sunburn', 'itch', 'ouch'], ['oh', 'storm', 'got', 'get', 'comput'], ['tire'], ['like', 'littl', 'adventur', 'kind', 'worri', 'not', 'take', 'bus', 'cos', 'oyster', 'broken'], ['tell', 'said', 'happi', 'birthday', 'tomorrow', 'talk', 'raymond'], ['gear', 'troubl', 'day', 'long'], ['tummi', 'monster', 'hate'], ['not', 'bannish', 'work', 'till'], ['wow', 'grandma', 'pass', 'sick', 'even', 'think', 'know', 'better', 'place'], ['nah', 'got', 'bare', 'work', 'week', 'left', 'bare', 'behind'], ['agre', 'though', 'eclips', 'app', 'hinder', 'collect', 'heap', 'dump', 'catch', 'oom', 'muck', 'jconsol'], ['mobil', 'phone', 'anoth', 'fail', 'american', 'servic', 'came', 'close', 'crash', 'gate'], ['mother', 'bad', 'day'], ['think', 'work', 'eye', 'droop', 'weird', 'drug', 'not', 'like', 'not', 'wait', 'tomorrow', 'though'], ['wish', 'sister', 'live', 'near'], ['need', 'new', 'job', 'either', 'closer', 'home', 'worth', 'drive'], ['wonder', 'life', 'alzheim', 'care', 'beyond', 'despair', 'poverti', 'suck', 'commerc', 'futil', 'descript', 'mommi'], ['bad', 'not', 'sort', 'lot', 'pain'], ['happi', 'hour', 'today'], ['hate', 'not', 'work', 'hot'], ['zach', 'get', 'extens', 'profil', 'weekend', 'ny', 'time', 'magazin', 'chanc', 'us', 'fall', 'love', 'get', 'fewer', 'fewer'], ['work', 'evil', 'whore', 'not', 'let', 'check', 'text', 'messag'], ['forgot', 'yardsal', 'event', 'ooh', 'piti'], ['fair', 'want', 'sticker', 'move', 'away', 'london'], ['wish', 'could', 'go', 'hear', 'mint', 'condit', 'tommorow', 'night'], ['watch', 'ripley', 'believ', 'not', 'choic'], ['got', 'noth', 'witti', 'tweet'], ['earth', 'happen', 'wentworth', 'page', 'devast', 'sure', 'fan'], ['greg', 'pritchard', 'rob', 'place', 'final', 'bgt', 'cri', 'babi', 'got', 'instead'], ['humid', 'not', 'friend', 'ask', 'hair'], ['ok', 'thanx', 'much', 'send', 'answer', 'privat', 'mail', 'like', 'would', 'soo', 'cool', 'wish', 'birmingham'], ['feel', 'like', 'poop', 'hate', 'sick'], ['not', 'feelinq', 'huqe', 'ass', 'pimpl', 'smack', 'middl', 'doom', 'not', 'riqht', 'man'], ['lost', 'internet', 'signal', 'life', 'go'], ['iusedtobescaredof', 'girl', 'year', 'school'], ['watch', 'marley', 'amp', 'cri', 'hard'], ['miss', 'answer', 'nth', 'time', 'make', 'sad', 'whenev', 'time', 'alway'], ['ugh', 'fuck', 'today', 'not', 'look', 'like', 'go', 'work', 'sorri'], ['crave', 'someth', 'salti', 'mouth', 'tire', 'pretzel', 'though'], ['aww', 'anyon', 'see', 'holli', 'steel', 'bgt', 'tonight', 'wharra', 'shame'], ['besti'], ['way', 'sleep', 'next', 'day', 'way', 'wake', 'return', 'amp', 'would', 'not', 'miss', 'much'], ['nah', 'understand', 'not', 'cancel', 'want', 'come'], ['ap', 'north', 'korea', 'could', 'opt', 'devast', 'land', 'assault', 'via', 'scari', 'talk', 'say', 'least', 'mm'], ['hey', 'kelli', 'feel', 'horribl'], ['sick', 'tire', 'rain'], ['eat', 'manderin', 'gone'], ['ahh', 'not', 'get', 'miley', 'notic'], ['friday', 'night', 'go', 'bed', 'pathet'], ['sucki', 'miss'], ['fri', 'arizona', 'thing', 'ate', 'today', 'feed', 'mee'], ['cap', 'thing', 'lower', 'part', 'back', 'realli', 'hurt'], ['come', 'sowwi'], ['one', 'worst', 'day', 'life'], ['know', 'dog', 'get', 'old', 'sit', 'hilli', 'pleas', 'not', 'grow'], ['lt'], ['brown', 'snake', 'bit', 'duck', 'name', 'elvi', 'anyway', 'ahaha', 'elvi', 'soo', 'cute', 'nicho'], ['nooth', 'tonight'], ['ohh', 'boy', 'babi', 'tooth', 'came'], ['much', 'pain', 'realli', 'not', 'feel', 'good', 'could', 'not', 'eat', 'dinner'], ['yeah', 'accept', 'ubc', 'offer', 'last', 'night', 'not', 'know', 'still', 'make', 'slack', 'lot', 'late'], ['broken', 'not', 'c'], ['cri', 'walk', 'rememb', 'usual'], ['way', 'work', 'hungri'], ['miss', 'festiv', 'even', 'head', 'hill', 'not', 'internet', 'bb', 'servic'], ['disappoint'], ['not', 'think', 'want', 'come', 'back', 'guy', 'read', 'dms'], ['not', 'nice'], ['went', 'see', 'dentist', 'not', 'eat', 'starv', 'realli', 'suck', 'ist', 'pain'], ['crossfit', 'run', 'right', 'leg'], ['biig', 'headach'], ['never', 'good', 'platform', 'game'], ['start', 'fear', 'weekend', 'sinc', 'join', 'german', 'class'], ['oh', 'hope', 'get', 'soon', 'make', 'feel', 'better', 'hug', 'coast'], ['went', 'dentist', 'mouth', 'hurt', 'not', 'eat'], ['work', 'hard', 'drag', 'not', 'time', 'tweet'], ['eye', 'hurt'], ['ahh', 'sore', 'throat', 'tire', 'want', 'go', 'back', 'bed', 'work'], ['birthday', 'tomorrow', 'jack', 'shit', 'weekend'], ['miss', 'joke', 'make', 'fun', 'peopl', 'throw', 'idea', 'song', 'movi', 'show', 'eachoth', 'never', 'go', 'away'], ['sorri', 'today', 'noth', 'fuck', 'heartbreak'], ['haha', 'thank', 'keep', 'rain', 'might', 'not', 'go'], ['darn', 'cold', 'keep', 'get', 'wors', 'bought', 'hayfev', 'pill', 'tri', 'mayb', 'along'], ['afraid', 'daughter', 'go', 'write', 'memoir', 'ungod', 'mix', 'mile', 'amp', 'betti', 'davi', 'eve'], ['one', 'call', 'anymor'], ['credit', 'unfortun'], ['wish', 'could', 'meet', 'think', 'happen', 'someday'], ['best', 'friend', 'leav', 'go', 'back', 'school', 'sad'], ['late', 'sick', 'kid', 'home', 'hope', 'feel', 'better', 'later', 'tonit'], ['cough', 'drop', 'tast'], ['not', 'like', 'random', 'gloomi', 'weather'], ['never', 'write', 'back', 'babe', 'feel', 'hurt'], ['oh', 'man', 'better', 'someth', 'fix', 'ugh', 'stupid', 'verizon'], ['boss', 'call', 'anerex'], ['go', 'cloth', 'shop', 'tomorrow', 'hate', 'serious', 'quot', 'cloth', 'fall', 'apart', 'quot', 'situat'], ['plus', 'hurt', 'see', 'love', 'fall', 'someon', 'els', 'not', 'even', 'kid', 'well', 'gut', 'xx', 'xx'], ['wish', 'peopl', 'would', 'not', 'stubborn', 'sometim'], ['feel', 'rather', 'lone', 'lone', 'broke'], ['look', 'like', 'rain', 'oh', 'well', 'give', 'chanc', 'work', 'new', 'crochet', 'pattern', 'work'], ['get', 'annoy', 'cos', 'weekend', 'go', 'hot', 'bloodi', 'work'], ['panason'], ['omg', 'sorri', 'sorri', 'never', 'know', 'say'], ['back', 'gym', 'expert', 'anyth', 'pretti', 'sure', 'not', 'go', 'abl', 'move', 'tomorrow', 'mayb', 'even', 'hour'], ['last', 'day', 'dma', 'million', 'sad', 'face'], ['drove', 'fisher', 'feel', 'sad'], ['go', 'buffalo', 'wild', 'wing', 'meet', 'best', 'friend', 'not', 'seen', 'forev', 'bad', 'not', 'eat', 'food'], ['blaze', 'head', 'hurt'], ['guy', 'serious', 'question', 'song', 'like', 'cds', 'honest', 'know', 'not', 'repli', 'lt', 'maria'], ['oh', 'not', 'im', 'also', 'friend', 'realli', 'suck', 'alway', 'not', 'around'], ['thght', 'vote', 'bt', 'dnt', 'think', 'workd', 'link', 'vote', 'nobodi', 'deserv', 'talent', 'lt'], ['r', 'lost', 'trooper', 'want', 'know'], ['not', 'feel', 'good'], ['agre', 'facehunt', 'embarrass', 'represent', 'compar', 'swede', 'look', 'like', 'born', 'stylish'], ['man', 'look', 'pack', 'book', 'look', 'past', 'live', 'feel', 'kind', 'sentiment'], ['miser', 'hot', 'hous', 'broken'], ['allerg'], ['breath', 'weezi', 'go', 'knott', 'sick', 'week'], ['feelin', 'sad', 'depress', 'lone', 'unhappi', 'rwhat', 'wrong'], ['earlier', 'not', 'home', 'ok', 'ipod'], ['feel', 'like', 'crap', 'today', 'got', 'speed', 'ticket', 'sinc'], ['could', 'empir', 'dirt', 'amp', 'e', 'dad', 'freez', 'fulli', 'shiver', 'els', 'warm', 'fone', 'allow', 'ffs'], ['back', 'bad'], ['hello', 'thank', 'followfriday', 'peopl', 'alway', 'forget', 'sorri'], ['realli', 'realli', 'not', 'bore', 'bad', 'not', 'news', 'brb', 'x'], ['oh', 'pleas', 'want', 'complet', 'unfinish', 'tweet', 'tweet', 'crop', 'tweet', 'look', 'dorki'], ['headach', 'also', 'deal', 'lice', 'outbreak', 'love', 'hair', 'affect'], ['not', 'sleep', 'accept', 'appolog'], ['hope', 'day', 'get', 'better', 'soon'], ['sorri', 'forgot'], ['not', 'love', 'anymor'], ['sorri', 'hear', 'dude'], ['cool', 'wish', 'could', 'av', 'gone', 'da', 'live', 'could', 'not'], ['miss', 'birthday'], ['never', 'usa', 'would', 'great', 'next', 'year', 'whatev', 'go', 'blast'], ['ad', 'collect', 'much', 'punk', 'bitch', 'ask', 'back'], ['stupid', 'peopl', 'not', 'phone', 'tummi', 'hert'], ['iight', 'go', 'miss', 'tonight'], ['offici', 'hit', 'wall', 'total', 'nonfunctionalproduct', 'work'], ['feel', 'like', 'go', 'fall', 'asleep', 'time', 'not'], ['problem', 'must', 'list', 'write', 'usual', 'forget', 'place', 'thing', 'list', 'find', 'list'], ['correct'], ['crap', 'tie', 'run', 'let', 'us', 'hold', 'raider'], ['ugh', 'cramp', 'hot'], ['ugh', 'trouser', 'never', 'found', 'way', 'combat', 'weird'], ['littl', 'boy', 'drown', 'yesterday', 'live', 'subdivis', 'went', 'nicol', 'school', 'sad'], ['yep', 'probabl', 'wish', 'let', 'know', 'interest', 'extra', 'corpor', 'chalet', 'tix', 'let', 'go'], ['awh', 'sorri', 'probabl', 'go', 'thing', 'haha'], ['not', 'work', 'one', 'pain', 'ass', 'spammer'], ['see', 'korean', 'buis', 'fail'], ['hey', 'sorri', 'headahc'], ['heard', 'singl', 'wait', 'month', 'disappoint'], ['aww', 'work', 'ok', 'appl', 'laptop', 'might', 'littl', 'differ'], ['mad', 'not', 'go', 'like', 'hour', 'away'], ['omg', 'dirti', 'letter', 'danni', 'everyon', 'absolut', 'none', 'busi', 'still', 'feel', 'left', 'lol'], ['felt', 'nice', 'stay', 'outsid', 'long', 'definit', 'get', 'burn', 'hurrican', 'season', 'though'], ['man', 'need', 'find', 'siitter', 'val', 'still', 'not', 'fuckin', 'wit', 'lol'], ['sorri', 'hear', 'not', 'alreadi', 'much', 'plan', 'weekend', 'would', 'consid', 'go'], ['noo', 'go', 'rain', 'birthday'], ['maan', 'way', 'nice', 'outsid', 'work'], ['sad', 'go', 'miss', 'dream', 'team', 'parti', 'not', 'rsvp', 'time'], ['tire', 'peopl', 'shit', 'talk'], ['ugh', 'peopl', 'fanci', 'trip', 'itali', 'slave', 'away', 'comput'], ['kno', 'sad', 'leavin', 'horribl', 'suppos', 'b', 'happi', 'summer', 'not', 'miss'], ['sorri', 'mr', 'grey', 'menlo'], ['stop', 'talk', 'go', 'mean'], ['yeah', 'bit', 'headach', 'ick'], ['ugh', 'hate', 'bad', 'grade', 'time', 'ever', 'fail', 'class', 'b', 'b', 'w', 'not', 'like'], ['still', 'not', 'work'], ['heck', 'go'], ['not', 'even', 'pay', 'though'], ['haha', 'wish', 'could', 'look', 'like', 'littl', 'boy'], ['hmm', 'whole', 'bodi', 'feel', 'sore'], ['lie'], ['sometim', 'fact', 'health', 'lack', 'better', 'word', 'suck', 'realli', 'scare'], ['day', 'start', 'woop', 'work', 'less', 'hour'], ['pain', 'big', 'toe', 'got', 'stomp', 'hokey', 'cokeu', 'throb', 'anyon', 'suggest', 'heal'], ['love', 'alway', 'respect', 'support', 'miss', 'go', 'amaz', 'thing', 'lt'], ['want', 'go', 'home', 'not', 'custom', 'not', 'leav', 'boss', 'not', 'let', 'leav', 'either'], ['sorri', 'ali'], ['not', 'good', 'tonight', 'know', 'dcd', 'though', 'not', 'say', 'happen'], ['appear', 'go', 'home', 'not', 'good', 'thing'], ['shipwreck', 'weekend', 'licens', 'not', 'suspend', 'got', 'cancel', 'not', 'take', 'risk', 'drive', 'one', 'live', 'near'], ['go', 'sound', 'realli', 'sad', 'amp', 'depress', 'realli', 'realli', 'miss', 'uncl', 'sam'], ['not', 'go', 'graduat', 'not', 'feel', 'well', 'instead', 'job', 'hunt', 'onlin'], ['sad', 'miss', 'friend'], ['farewel', 'dinner', 'kimmi', 'last', 'time', 'see'], ['ohh', 'french', 'tip', 'fave', 'nail', 'not', 'long', 'enough', 'yet', 'though', 'ill', 'ask', 'manicurist'], ['kewl', 'got', 'iphon', 'got', 'hope', 'last', 'weekend', 'got', 'shuffl', 'might', 'bring', 'anyway', 'see', 'ya'], ['await', 'repli', 'two', 'project', 'one', 'cancel'], ['oh', 'poor', 'thing', 'must', 'book', 'ticket', 'realis', 'pat', 'kenni', 'last', 'night', 'gut'], ['omgosh', 'degre', 'sweat', 'miser', 'go', 'visit', 'atx'], ['drove', 'past', 'hotel', 'wish', 'ere', 'think', 'decemb', 'trip', 'real', 'white', 'xmas'], ['bad', 'newss'], ['srsli', 'nobodi', 'evr', 'repli'], ['sad', 'piggi', 'die'], ['true', 'not', 'fantast', 'sequel', 'wish', 'introduc', 'franklin', 'richard', 'charact'], ['okay', 'twitter', 'laptop', 'complet', 'broke', 'comput', 'act', 'not', 'reckon'], ['feel', 'kind', 'not', 'well', 'right'], ['god', 'damn', 'twitter', 'stop', 'eat', 'undelet', 'dms'], ['not', 'one', 'week', 'realli', 'mean', 'joke', 'play'], ['hi', 'hope', 'ray', 'pleas', 'give', 'love', 'hope', 'return', 'soon', 'hope', 'not', 'bad'], ['ugh', 'unattract', 'might', 'well', 'drink', 'regular', 'glass', 'realli', 'not', 'like'], ['son', 'not', 'one', 'realli', 'nice', 'know', 'realli', 'good', 'three', 'dh', 'late', 'today'], ['guy', 'much', 'help', 'follow', 'thing', 'probabl', 'not', 'go', 'win', 'not', 'follow', 'yet'], ['nope', 'not', 'think', 'thnx', 'ask', 'lol', 'fine'], ['work', 'soon', 'lame', 'go', 'miss', 'go', 'laker', 'hope', 'win'], ['comput', 'piss', 'gig', 'ram', 'dual', 'core', 'vista', 'want', 'win'], ['pain', 'big', 'toe', 'got', 'stamp', 'hokey', 'cokey', 'hurt', 'much', 'anyon', 'suggest', 'help'], ['latest', 'saw', 'anim', 'collect', 'oakland', 'amaz', 'tri', 'clean', 'room'], ['girrll', 'go', 'miss', 'bad'], ['eat', 'tomato', 'squirt'], ['not', 'want', 'fatass', 'go', 'europ', 'need', 'eat', 'right', 'difficult'], ['tri', 'plot', 'altern', 'speak', 'sigh'], ['think', 'modem', 'pc', 'withdraw'], ['not', 'long', 'hun', 'head', 'hurt'], ['sit', 'price', 'garag', 'sale', 'help', 'bore'], ['build', 'hotel', 'without', 'bloodi', 'boil'], ['great', 'rain'], ['love', 'not', 'swing', 'would', 'like', 'even', 'tweetup', 'futur'], ['pmg', 'upset', 'relasi', 'hugh', 'lauri', 'not', 'xx', 'ohh'], ['lunch', 'suck', 'ran', 'time', 'not', 'get', 'anyth', 'done'], ['hate', 'traffic', 'dalla', 'noth', 'traffic'], ['sorri', 'stink'], ['har', 'vondt', 'ryggen', 'back', 'hurt'], ['voic', 'hurt', 'rock', 'music', 'sing', 'tonight'], ['charter', 'piss', 'rest', 'internet', 'access', 'blog', 'except', 'fix', 'soon', 'say', 'see'], ['yeah', 'point', 'gt', 'lt', 'pleas', 'not', 'make', 'feel', 'wors'], ['aww', 'wee', 'gril', 'britain', 'got', 'talent'], ['oh', 'day', 'stress', 'think', 'futur', 'make', 'sad'], ['think', 'got', 'invis', 'glass', 'shard', 'hand', 'finger', 'keep', 'pain', 'pokey', 'feel'], ['saw', 'new', 'citi', 'last', 'tuesday', 'amaz', 'show', 'ticket', 'tomorrow', 'show', 'might', 'not', 'abl', 'make'], ['work', 'yay'], ['miss', 'air', 'canada', 'centr', 'andi', 'frost'], ['lovin', 'clean', 'shaven', 'mr', 'flower', 'look', 'young', 'remind', 'get', 'old'], ['yumm', 'make', 'sure', 'leav', 'home', 'clean', 'work', 'mad', 'hard'], ['quinn', 'puppi', 'got', 'sick'], ['still', 'not', 'love', 'not', 'ask'], ['twitteerr', 'babiieshow', 'miss', 'hate', 'whole', 'not', 'phone', 'thng'], ['not', 'spell', 'melo', 'without', 'e', 'lt', 'favorit', 'blog', 'site'], ['hugh', 'not', 'lie', 'last', 'week'], ['donbt', 'like', 'peel', 'prawn', 'also', 'not', 'like', 'go', 'shop', 'run', 'money', 'crawl', 'round', 'car', 'look'], ['not', 'good', 'day'], ['harri', 'bake', 'love', 'cassi', 'not', 'onlin'], ['clean', 'pack', 'move', 'hous', 'shit', 'go', 'long', 'weekend'], ['lucki', 'jade', 'earring', 'not', 'lucki', 'lost', 'earring', 'chain', 'broke', 'pendant'], ['hiatus', 'like', 'realli', 'long', 'boo'], ['okay', 'tri', 'happi', 'deal', 'problem', 'friend', 'also', 'hard'], ['wish', 'roommat', 'come', 'home', 'soon', 'mayb', 'take', 'nap', 'wast', 'time'], ['ooc', 'thank', 'bad', 'bad', 'day', 'damn'], ['kept', 'read', 'see', 'ya', 'r', 'go', 'williamsburg', 'mind', 'busi', 'lol'], ['worst', 'headach', 'ever', 'histori', 'worst', 'headach', 'today', 'man', 'hate'], ['oh', 'kitti', 'right', 'lot', 'weight', 'last', 'wks', 'not', 'good'], ['hope', 'enjoy', 'look', 'real', 'good', 'right'], ['thought', 'list', 'meant', 'would', 'good', 'go', 'look', 'like', 'get', 'cf', 'adapt', 'dslr'], ['bum', 'not', 'see', 'ltj', 'june', 'hope', 'uk', 'yoke', 'soon'], ['bang', 'bloodi', 'foot', 'ow'], ['bummer'], ['wow', 'spam', 'realli', 'everyth', 'cover', 'mine', 'almost', 'peni', 'enlarg', 'stuff'], ['hahaha', 'miss', 'bradd', 'guy', 'keith'], ['thank', 'kashi', 'think', 'day', 'mad', 'disservic', 'not', 'take', 'class'], ['in', 'would', 'not', 'pay', 'therapi', 'dk'], ['nope', 'bore', 'hungri'], ['fuck', 'life'], ['oh', 'sorri', 'wuv', 'piec'], ['fill', 'good', 'two', 'appoint', 'go'], ['lucki', 'park', 'mayb', 'short', 'period', 'realli', 'stuff', 'done', 'until', 'wed'], ['n', 'still', 'job', 'dead', 'right'], ['made', 'leadership', 'butt', 'still', 'not', 'happi', 'enjoy', 'without', 'best', 'friend'], ['cri', 'cuz', 'peopl', 'not', 'follow'], ['realli', 'weird', 'night', 'last', 'night', 'miss', 'friend'], ['headach'], ['excel', 'suzaku', 'back', 'togeth', 'woop', 'last', 'episod', 'hope', 'happi', 'one', 'sucker', 'realli', 'lol', 'shh'], ['stick', 'work', 'till', 'freakin', 'madd', 'suck', 'work', 'day'], ['hate', 'weather', 'ugh'], ['omfg', 'favourit', 'jerk', 'chicken', 'place', 'close'], ['wish', 'sun', 'would', 'come', 'guess', 'not', 'matter', 'sinc', 'work', 'not', 'enjoy', 'anyway'], ['yo', 'not', 'love', 'twin', 'not', 'lol'], ['anyday', 'hate', 'live'], ['want', 'go', 'see', 'not', 'want', 'go', 'mom', 'brother'], ['not', 'figur', 'listen', 'internet'], ['watch', 'gh', 'feel', 'bad', 'car', 'omg', 'fuck'], ['mattress', 'armada', 'need', 'play', 'show', 'soon', 'go', 'serious', 'sad'], ['peopl', 'piss', 'ugh'], ['come', 'not', 'see', 'come', 'not', 'see', 'better', 'question', 'lol', 'need', 'chang', 'mister', 'sad'], ['rat', 'creativ', 'vado', 'stock', 'late'], ['offic', 'bldg', 'sell', 'move', 'anoth', 'smaller', 'one', 'lose', 'gym'], ['sad'], ['poor', 'sheep'], ['yet', 'could', 'not', 'get', 'pic', 'not', 'allow', 'pass', 'carpet', 'premier', 'pic', 'still', 'wit'], ['haha', 'yes', 'jealous', 'not', 'money'], ['not', 'think', 'go', 'abl', 'go', 'see', 'jb', 'time', 'close'], ['not', 'funni', 'not', 'jump'], ['got', 'done', 'first', 'day', 'work', 'exsaust', 'sweati', 'chalki'], ['herniat', 'disc', 'suck', 'stuck', 'most', 'back', 'could', 'ride'], ['greg', 'pritchard', 'rob', 'ii', 'gut', 'word'], ['ouchi', 'sorri', 'hear', 'go', 'get', 'check'], ['heart', 'not', 'cold', 'still', 'miss'], ['know', 'feel', 'darian', 'la', 'bam', 'miss', 'terribl', 'not', 'see', 'sunday'], ['listen', 'ryan', 'adam', 'sick'], ['quit', 'upset', 'realli', 'look', 'must', 'thought', 'someth', 'whatt', 'unfair'], ['jealous', 'want', 'go', 'ny'], ['realli', 'fanci', 'frappuccino', 'starbuck', 'right'], ['much', 'work'], ['feel', 'lone'], ['stu', 'actual', 'sever', 'hurt'], ['mean', 'spend', 'time', 'alon', 'friend', 'famili', 'sad'], ['matrix', 'onlin', 'shut', 'next', 'feel', 'kind', 'sad'], ['alreadi', 'miss', 'dunham'], ['idiot', 'famili', 'feel', 'not', 'mix', 'amongst', 'stuff'], ['bad', 'friend', 'sorri', 'hear'], ['miss'], ['tri', 'babi', 'not', 'want', 'soda', 'addict', 'problem', 'quit', 'still', 'sad', 'crave', 'though'], ['want', 'leav', 'work', 'alreadi', 'not', 'feelin'], ['sowwi', 'lover'], ['miss', 'best', 'friend', 'comm', 'back', 'kayla', 'go', 'littl'], ['ipod', 'die', 'today'], ['metsi', 'fan', 'also', 'boo', 'hoo'], ['woke', 'dream', 'new', 'email', 'sad', 'dream'], ['thank', 'warm', 'welcom', 'not', 'make', 'plan', 'arriv', 'time', 'air'], ['feel', 'like', 'watch', 'disney', 'bad', 'not', 'vcr', 'anymor'], ['not', 'sound', 'like', 'fun'], ['love', 'coupl', 'day', 'friend', 'wolverhampton', 'least', 'weather', 'improv', 'last', 'day', 'today', 'call', 'tomorrow'], ['back', 'soo', 'hurt'], ['recov', 'bad', 'fall', 'lunch', 'great', 'start', 'weekend'], ['lmao', 'saw', 'sound', 'hella', 'good', 'hair', 'appt'], ['poor', 'dear', 'fellow', 'busti', 'maven', 'gym', 'belong', 'peac'], ['lmoa', 'quit', 'one', 'mine', 'much', 'stress'], ['hope', 'go', 'quick', 'possibl'], ['found', 'giveaway', 'wish', 'would', 'known', 'sooner', 'happen', 'unclaim', 'citi'], ['oh', 'sorri', 'not', 'even', 'know', 'realiti', 'soon'], ['aww', 'mish', 'ladi', 'good'], ['afraid', 'comment', 'mp', 'expens', 'hopeless', 'touch', 'averag', 'person', 'averag', 'salari'], ['feet', 'realli', 'hurt'], ['awe', 'miss', 'much', 'quot', 'vacat', 'quot', 'last', 'like', 'six', 'month', 'miss'], ['drop', 'new', 'mobil', 'loo', 'finger', 'cross', 'work', 'still', 'left', 'contract'], ['sprite', 'tast', 'like', 'sore', 'throat'], ['home', 'sweet', 'home', 'carri', 'underwood', 'make', 'sadd'], ['first', 'thought', 'bar', 'life', 'meant', 'parti', 'nonstop', 'catch', 'last', 'shoulda', 'known', 'better'], ['nervous', 'go', 'tomorrow', 'cos', 'first', 'time', 'sinc', 'daughter', 'born', 'help'], ['would', 'fun', 'soo', 'tire', 'yesterday', 'long', 'day', 'offic', 'dinner', 'crash'], ['son', 'got', 'stung', 'bug', 'first', 'time', 'littl', 'finger', 'slight', 'swollen'], ['realli', 'tire', 'jake', 'alway', 'give', 'work'], ['head', 'hurt', 'bad'], ['whoa', 'alcohol', 'not', 'get', 'buzz', 'price'], ['realli', 'call', 'realiti', 'check', 'day', 'lol'], ['want', 'go', 'falkland', 'not', 'stupid', 'exam', 'mtbcut', 'go'], ['marisa', 'mauro', 'go', 'use', 'banana', 'dildo', 'srsli', 'peopl', 'arsehol'], ['big', 'moth', 'wasp', 'insect', 'general', 'haha', 'hate'], ['friday', 'night', 'home', 'parti', 'weekend'], ['lol', 'not'], ['sad', 'statu', 'liberti', 'complet', 'reopen', 'week', 'nyc', 'trip'], ['matter', 'jealous'], ['turn', 'fast', 'food', 'whore'], ['not', 'stop', 'cough'], ['soo', 'tire', 'busi', 'tweet', 'glad', 'weekend', 'yay'], ['oh', 'joy', 'gong', 'long', 'weekebd', 'yipe'], ['certain', 'know', 'feel', 'wesley', 'sleep', 'want', 'go', 'get', 'someth', 'eat', 'account'], ['marle', 'doc', 'appoint', 'poor', 'babygirl', 'get', 'shot'], ['shud', 'reali', 'go', 'bed', 'proper', 'tire', 'bt', 'cnt', 'b'], ['need', 'repres', 'blackberri'], ['ugh', 'not', 'infam', 'fuck', 'lame'], ['not', 'go', 'movi', 'today'], ['not', 'sure', 'walk', 'around', 'barn', 'nobl', 'comfort', 'much', 'well', 'work'], ['spellingi', 'aw', 'twiiter'], ['anyon', 'els', 'problem', 'access', 'account', 'info', 'istor', 'not', 'buy', 'music', 'not', 'look', 'account'], ['uncontrol', 'right', 'hurt'], ['hour', 'later', 'still', 'drunk', 'drive', 'shame', 'let', 'drink', 'much', 'not', 'peak', 'spirit', 'right'], ['okay', 'man', 'hook', 'hand', 'kind', 'freak', 'right'], ['sick', 'girl', 'tri', 'shake', 'thing', 'luck', 'miss', 'long', 'time'], ['mikey', 'bore'], ['bum', 'not', 'even', 'one', 'testimoni', 'flickr'], ['oh', 'god', 'feel', 'like', 'shit'], ['blond', 'slowli', 'sure', 'blond', 'wana', 'scratch', 'hair', 'not', 'allow'], ['everyth', 'soo', 'mess', 'life', 'suck'], ['still', 'unfortun'], ['got', 'headach'], ['yer', 'littl', 'cock', 'well', 'not', 'deserv', 'stick', 'everyon', 'cowel', 'go', 'produc'], ['aah', 'tire', 'not', 'chill', 'minut', 'today'], ['sad', 'miss', 'guy', 'last', 'night'], ['uh', 'oh', 'sunburn'], ['not', 'know', 'feel', 'empti', 'loll', 'cheesi', 'true'], ['kawawa', 'make', 'kawawa', 'cuz', 'hate', 'see', 'kawawa', 'ohh', 'lt'], ['follow', 'random', 'spammer'], ['downhil', 'labor', 'day'], ['holli', 'steel', 'bgt', 'absolut', 'excruci', 'girl'], ['told', 'peopl', 'indiana', 'batshit', 'live', 'feel', 'like', 'escap', 'orwel', 'book', 'everyday'], ['suck'], ['wish', 'go'], ['horribl', 'thought', 'go', 'back', 'work', 'monday', 'good', 'thought', 'work', 'minut', 'life', 'good'], ['wow', 'difficult'], ['good', 'stuff', 'smile', 'back', 'not', 'go', 'concert', 'wish', 'could', 'instead', 'work', 'music', 'fail', 'lol', 'x'], ['aw', 'well', 'sorri', 'not', 'like', 'juli', 'reason'], ['sad', 'greg', 'pritchard', 'not', 'make', 'final', 'britain', 'got', 'talent', 'coz', 'soo', 'deserv'], ['omgod', 'soo', 'tire', 'not', 'think', 'energi', 'film', 'today', 'lol'], ['sob', 'not', 'believ', 'end', 'work', 'week', 'chapter', 'augusten', 'burrough', 'father', 'erni', 'guinea', 'pig'], ['thought', 'cav', 'would', 'crush', 'magic', 'come', 'home', 'north', 'realiz', 'wrong'], ['lost', 'favorit', 'thing', 'love', 'alway', 'stori', 'year', 'key', 'chain'], ['bless', 'ya', 'know', 'feel', 'well'], ['sad', 'news', 'week', 'hospit', 'uncl', 'past', 'away', 'today', 'uncl', 'toni'], ['subhana', 'allah', 'got', 'scare', 'told', 'start', 'anxieti'], ['lol', 'knew', 'better', 'better', 'would', 'not', 'wear', 'ugg', 'shoe', 'weather', 'aww', 'rip', 'stack', 'b'], ['woof', 'wish', 'allow', 'go'], ['well', 'school', 'final', 'not', 'know', 'sad', 'miss', 'teacher', 'goodby', 'mrs', 'collist'], ['feel', 'tierd', 'much', 'colleg', 'work'], ['wish', 'could', 'go', 'love', 'music', 'hate', 'racism', 'gig', 'weekend', 'not', 'right', 'part', 'world', 'even'], ['readi', 'weekend', 'sad', 'offic', 'tomorrow', 'morn'], ['oh', 'dear', 'take', 'back', 'request', 'get', 'drunk', 'fizz', 'def', 'regret', 'next', 'day', 'sure', 'fire', 'hangov'], ['go', 'bff', 'haha', 'like', 'hourss', 'actual', 'darn', 'hw'], ['dad', 'joe', 'nugent', 'drank', 'near', 'ice', 'tea', 'bit', 'left', 'quit', 'mif', 'honest'], ['got', 'email', 'tell', 'could', 'got', 'monday', 'flight', 'sfo', 'cheaper', 'amp', 'biz', 'class', 'book', 'tomorrow'], ['sigh', 'exam', 'not', 'wer', 'neaarr', 'finish', 'next', 'week', 'bin', 'stressd', 'not', 'guna', 'b', 'bak', 'till', 'end', 'june'], ['see', 'peopl', 'today', 'made', 'realiz', 'realli', 'miss', 'someon', 'also', 'miss', 'grandpa', 'gone', 'year', 'oh', 'mom', 'mamagra'], ['get', 'closer', 'log', 'left', 'hand', 'swollen', 'not', 'wear', 'wed', 'ring', 'keep', 'forget', 'worri', 'lost'], ['tri', 'put', 'iron', 'book', 'bag', 'burnt', 'bag', 'iron', 'lol', 'buzz', 'keep', 'make', 'fun', 'bastard', 'lol'], ['watch', 'rain', 'reminisc', 'time', 'everytim', 'rain', 'love', 'life'], ['fell', 'ef', 'arm', 'today', 'back', 'drive'], ['tri', 'someth', 'funni', 'twitter', 'fail'], ['fml', 'ughh', 'not', 'go', 'anwher', 'today', 'sit', 'bedroom', 'share', 'mother', 'cri'], ['may', 'cri', 'damn', 'weather', 'got', 'ass', 'burnt', 'nt', 'liter', 'jus', 'shin', 'arm', 'n', 'chest', 'leg', 'hurt', 'lyk', 'biatch', 'slight', 'enjoy', 'though', 'ha'], ['realli', 'want', 'go', 'maker', 'fair', 'tomorrow', 'sick', 'makerfair'], ['traumat', 'moment', 'childhood', 'dog', 'massacr', 'babi', 'bunni', 'brother', 'got', 'bb', 'gun'], ['not', 'even', 'finish', 'clean', 'room', 'cuz', 'went', 'parti', 'ahh', 'still', 'messi'], ['wish', 'babe'], ['give', 'haiku', 'status', 'inspir', 'michell', 'yuen', 'sun', 'shine', 'perfect', 'day', 'glorious', 'day', 'outsid', 'offic'], ['nice', 'day', 'go', 'stuck', 'insid', 'night'], ['bgt', 'made', 'cri', 'tonight'], ['use', 'temporari', 'mous', 'sinc', 'trackbal', 'break', 'feel', 'rsi', 'crawl', 'wrist', 'alreadi'], ['not', 'fix', 'guess', 'write', 'get', 'bore', 'watch', 'tv', 'man', 'lame'], ['saw', 'slater', 'mtv', 'show', 'think', 'want', 'danc', 'slater', 'crap', 'like', 'kelli', 'kapowski'], ['stope', 'broadcast', 'blogtv', 'coz', 'left', 'one', 'one', 'came', 'way', 'xd'], ['way', 'internet', 'access', 'twit'], ['best', 'vanilla', 'memori', 'sharffenberg', 'factori', 'gift', 'shop', 'not', 'sure', 'get'], ['today', 'not', 'inspir', 'photographi', 'day', 'photographi'], ['not', 'ff', 'list', 'hurt'], ['honourari', 'fluffett', 'love', 'hair', 'left'], ['miss', 'everyon', 'need', 'face', 'not', 'witti', 'situat', 'updat'], ['peopl', 'idea', 'depress', 'steakhous', 'not', 'abl', 'eat'], ['left', 'cali', 'dalla', 'car', 'much'], ['graduat', 'ceremoni', 'start', 'realli', 'wish', 'could'], ['son', 'bitch', 'argghh'], ['someon', 'key', 'car'], ['day', 'fkn', 'ugli', 'amp', 'match', 'mood', 'unfortunat', 'time', 'blast', 'moon'], ['lil', 'old', 'mac', 'never', 'charg'], ['sad', 'broke', 'giant', 'paper', 'clip', 'use', 'itali', 'note'], ['vote', 'hope', 'vote', 'white', 'blank', 'name', 'mr', 'twitter', 'funniset'], ['sorri', 'weather', 'hope', 'not', 'hour', 'wx', 'delay', 'bwi'], ['got', 'back', 'work', 'feel', 'pretti', 'good', 'work'], ['miss', 'grandma', 'angi', 'alway', 'like', 'grandma'], ['fail', 'work'], ['got', 'realli', 'sad', 'wen', 'holli', 'start', 'cri', 'aww', 'bless'], ['last', 'day', 'holyday', 'got', 'get', 'back', 'work', 'anyway', 'great', 'week'], ['good', 'stuff', 'smile', 'back', 'not', 'go', 'concert', 'wish', 'could', 'instead', 'music', 'fail', 'lol', 'x'], ['weekend', 'go', 'pack', 'full', 'work', 'school', 'life', 'summer', 'afraid'], ['finish', 'clean', 'bathroom', 'smell', 'like', 'clorox'], ['not', 'believ', 'alreadi', 'friday', 'omg', 'done'], ['not', 'tweetin', 'day', 'cuz', 'switch', 'thing', 'da', 'new', 'place', 'exhaust', 'sick'], ['frown', 'us', 'googl', 'alcohol', 'work'], ['aww', 'nsti', 'peopl', 'make', 'fun', 'someon', 'amp', 'laugh', 'ass', 'see', 'not', 'laugh', 'shoud', 'hint', 'wrong'], ['biggest', 'headach', 'ever', 'photosensit', 'get', 'control', 'help'], ['miss', 'nanni'], ['miss', 'doggi', 'hammi', 'turtl', 'amp', 'amp', 'fish'], ['ouch', 'head', 'hurt'], ['sorri', 'not', 'make', 'good', 'luck', 'next', 'time', 'though'], ['nah', 'singl', 'person', 'post', 'tweet', 'day', 'hard', 'cope', 'android', 'phone', 'unabl', 'filter'], ['god', 'look', 'stumpi', 'not', 'share', 'toe', 'tonight'], ['tryin', 'figur', 'direct', 'messag', 'gettin', 'frustrat'], ['room', 'smh'], ['drop', 'mum', 'station', 'miss', 'mum'], ['aarrgh', 'soo', 'want', 'see', 'messag', 'august', 'dammit', 'decent', 'seat', 'expens', 'boo', 'recess'], ['alway', 'blunt', 'feel', 'never', 'seem', 'good'], ['wtf', 'facebook', 'spam', 'say', 'dad', 'secret', 'admir'], ['way', 'get', 'maggi', 'moo', 'peanut', 'butter', 'galaxi', 'home', 'thank', 'god', 'week', 'done', 'meet', 'day'], ['suck', 'put', 'britney'], ['lucki', 'lucki', 'friend', 'nickleback', 'concert', 'atm', 'wish'], ['mani', 'tribe', 'r', 'becom', 'extinct', 'blame', 'mc', 'donald'], ['get', 'realli', 'spotti', 'spot', 'alway', 'scar', 'not', 'pick', 'even', 'not', 'fact', 'skin', 'suck'], ['need', 'botox', 'work', 'lip', 'go', 'chang', 'name', 'angelina', 'joli', 'thought', 'sad', 'though', 'racism'], ['alway', 'make', 'bad', 'decis'], ['gettin', 'readi', 'put', 'show', 'ugh', 'realli', 'hope', 'peopl', 'not', 'come'], ['noo', 'leav', 'beach'], ['amhzz', 'get', 'invit', 'miss'], ['alway', 'get', 'hope', 'soo', 'close'], ['not', 'feel', 'well', 'today'], ['not', 'sad', 'good'], ['oh', 'man', 'bate', 'wish', 'blow', 'flip', 'burn'], ['hahaha', 'wow', 'thank', 'bud', 'p', 'plan', 'pretend', 'costum', 'wish', 'cold', 'could', 'wear', 'sweatshirt'], ['could', 'not', 'find', 'extend', 'one'], ['littl', 'boy', 'still', 'makin', 'work', 'storm'], ['wish', 'still', 'jam'], ['boy', 'go', 'movi', 'wish', 'not', 'feel', 'like', 'shit'], ['day', 'crappi', 'want', 'cri'], ['ahh', 'man', 'blew', 'amp', 'shred'], ['pleas', 'hear', 'still', 'shame', 'sometim', 'hear', 'men'], ['mayb', 'one', 'day', 'favorit', 'produc', 'list', 'lol'], ['skin', 'burn', 'much'], ['got', 'two', 'third', 'new', 'moon', 'three', 'day', 'work', 'assign', 'sad', 'dnt', 'write', 'selv'], ['bad'], ['actual', 'suppos', 'dad', 'cousin', 'cousin', 'troubl', 'though', 'never', 'get', 'togeth'], ['darn', 'go', 'whole', 'weekend', 'without'], ['jump', 'train', 'visit', 'rescu', 'mom', 'total', 'forgot', 'sweatshirt', 'forgot', 'bring', 'make', 'first', 'time', 'ever', 'forget'], ['omg', 'not', 'believ', 'jay', 'leno', 'go', 'air', 'hate', 'conan'], ['omg', 'today', 'felt', 'like', 'last', 'day', 'school', 'horribl'], ['would', 'like', 'hug', 'kiss', 'eric', 'long', 'distanc', 'realli', 'realli', 'stink'], ['watch', 'hmm'], ['damn', 'hate', 'weather', 'shit', 'suck', 'want', 'go', 'tonight', 'not', 'n', 'mess', 'like'], ['kind', 'hope', 'time', 'go', 'differnt', 'not', 'suck'], ['not', 'ditchin', 'barfin', 'sorri', 'guy', 'esotsm'], ['hot', 'room', 'want', 'go', 'swim'], ['ugh', 'kind', 'bore'], ['like', 'cheesecak', 'browni', 'miss', 'cheesecak', 'browni', 'walmart', 'closest', 'not'], ['head', 'home', 'foot', 'surgeri', 'wish', 'boyfriend', 'come', 'cuddl'], ['way', 'ian', 'watkin', 'stop', 'follow', 'wee', 'bit', 'piss'], ['ajax', 'php', 'think', 'concept', 'autorefresh', 'made', 'mistak'], ['greg', 'pritchard', 'got', 'threw', 'final', 'britain', 'got', 'talent'], ['yay', 'jack', 'downer', 'rememb', 'friday', 'mean', 'work', 'tomorrow'], ['ugh', 'feet', 'feel', 'like', 'go', 'fall'], ['omg', 'not', 'eat', 'everyth', 'eat', 'hurt', 'stomach', 'come', 'right'], ['suck', 'thunder', 'get', 'readi', 'shut'], ['tire', 'respons', 'wish', 'kid', 'seem', 'everyon', 'around', 'money', 'not', 'anymor'], ['tire', 'heck', 'want', 'go', 'home', 'sleep', 'not', 'wash', 'till', 'daddi', 'get', 'work'], ['anyway', 'not', 'take', 'shit', 'longer', 'mind', 'blow'], ['hell', 'hair', 'not', 'fall', 'constant'], ['need', 'friend', 'right', 'feel', 'like', 'mm', 'sosad'], ['set', 'chuck', 'bass', 'new', 'york', 'palac', 'hotel', 'bad', 'not', 'film', 'today'], ['ntah', 'realli', 'want'], ['head', 'home', 'long', 'week', 'wish', 'someon', 'onther', 'market', 'would', 'follow'], ['dinner', 'smell', 'hungri', 'sunni', 'outsid', 'wish', 'wonderland'], ['mee', 'bad', 'bore', 'eat', 'lol'], ['dude', 'feel', 'realli', 'bad', 'not', 'work', 'not', 'serial', 'not', 'use'], ['lmfaaoo', 'watch', 'pink', 'know', 'well', 'love', 'lol'], ['ha', 'thank', 'bryan', 'not', 'remind', 'state', 'budget', 'issu', 'actual', 'steve', 'staffer', 'offic'], ['watch', 'edit', 'old', 'grey', 'whistl', 'test', 'fanni', 'mama', 'papa', 'amp', 'isaac', 'hay', 'not', 'make', 'show', 'like', 'anymor'], ['aww', 'kany', 'west', 'shame', 'not', 'get', 'joke'], ['aww', 'hope', 'find', 'soon', 'miss', 'cnt', 'even', 'use', 'cam', 'memori', 'full', 'plus', 'want', 'take', 'sa', 'commin', 'weekend'], ['want', 'anoth', 'shake'], ['right', 'peep', 'hope', 'fix', 'twitter', 'mobil', 'tweet', 'race', 'day', 'fail'], ['total', 'forgot', 'friday', 'till', 'read', 'tweet', 'ha', 'feel', 'dumb', 'take', 'breath'], ['omg', 'mani', 'final', 'studi', 'freak', 'gona', 'fail'], ['sunburnt', 'arm', 'burnt', 'mouth', 'skin', 'come'], ['same', 'suck'], ['not', 'feel', 'good', 'happen', 'today', 'day', 'not', 'go', 'friend', 'tonight'], ['bhaha', 'teenag', 'nightclub', 'home', 'suppos', 'fuck', 'licens', 'touch'], ['sorri', 'pray'], ['sad', 'not', 'view', 'site', 'due', 'region', 'restrict'], ['sound', 'awesom', 'wish', 'could', 'go', 'way', 'could', 'afford', 'fun'], ['wendi', 'go', 'wish'], ['hate'], ['miss'], ['come', 'socket', 'feel', 'like', 'phone', 'hole', 'not', 'virgin', 'loos'], ['aww', 'poor', 'precious'], ['sad', 'friend', 'everyday', 'long', 'ass', 'time'], ['miss', 'friend', 'much'], ['sat', 'pub', 'pretti', 'quiet', 'far', 'prob', 'leav', 'bit', 'work'], ['sad', 'brother', 'bad', 'day'], ['oop', 'unfollow', 'everyon', 'anywayz', 'build', 'twitter', 'empir'], ['wow', 'realli', 'need', 'fun', 'tonight'], ['time', 'learn', 'tomorrow', 'earli', 'start', 'night', 'night', 'good', 'peopl', 'xx'], ['go', 'crazi', 'super', 'head', 'ach', 'hell', 'law', 'ben', 'sinc', 'morn', 'ahh'], ['job', 'especi', 'wmid', 'not', 'afford', 'move', 'away', 'yet', 'sorri', 'miss'], ['sit', 'take', 'littl', 'break', 'tri', 'recharg', 'continu', 'housework'], ['vp', 'get', 'headach', 'time', 'coffe', 'fight', 'migrain', 'ohnoyoudidnt'], ['car', 'broken'], ['get', 'write', 'halloween', 'interview', 'daniell', 'harri', 'darn', 'late', 'contest'], ['cheek', 'bakeri', 'close', 'crazi', 'williamsburg', 'support', 'infinit', 'boutiqu', 'cloth', 'not', 'one', 'decent', 'place', 'scone'], ['crisi', 'forgot', 'fring', 'comb', 'one', 'help'], ['ok', 'post', 'rni', 'girl', 'learn', 'rich', 'sugari', 'food', 'bad', 'idea', 'golden', 'graham', 'bar', 'vend', 'machin', 'bleck'], ['super', 'bum', 'whitecap', 'game', 'plan', 'friend', 'fell', 'need', 'home', 'let', 'sitter', 'go'], ['got', 'sing', 'fall', 'love', 'chang', 'week', 'day', 'saturday', 'not', 'quit', 'fit'], ['one', 'day', 'hug', 'come', 'finger', 'still', 'cross'], ['pot', 'geranium', 'talk', 'grandkid', 'well', 'maddi', 'jack', 'outsid', 'play', 'sure', 'miss'], ['hot', 'sleep', 'window', 'open', 'mean', 'nois', 'make', 'earli'], ['iphon', 'poor', 'credit', 'not', 'live', 'without', 'cell', 'phone', 'mass', 'transit', 'everi', 'day'], ['not', 'fuck', 'concentr', 'damn', 'heat', 'cooler', 'not', 'job'], ['depress', 'think'], ['super', 'bore', 'friday', 'night'], ['almost', 'made', 'read', 'comedi', 'outlet', 'headlin', 'weekend', 'took', 'extra', 'hour', 'traffic', 'basic', 'doubl', 'time'], ['get', 'dizzi', 'go', 'lower', 'origin', 'rais', 'pleas', 'not', 'think', 'less'], ['bill', 'likewis', 'next', 'time', 'spend', 'time', 'talk'], ['soo', 'stress', 'everyth'], ['tri', 'find', 'foreign', 'place', 'foreign', 'town', 'lost'], ['yes', 'nice', 'oh', 'kevin', 'shirtless', 'not', 'see', 'well'], ['knoww', 'da', 'best'], ['unlucki', 'day', 'not', 'without', 'hope', 'see', 'wednesday', 'though', 'right', 'x'], ['sorri'], ['sad', 'today', 'last', 'day', 'san', 'diego'], ['priest', 'realli', 'good', 'guess', 'would', 'not', 'welcom', 'late', 'late', 'moment'], ['head', 'hurt'], ['noo', 'roo', 'cri', 'omg', 'want', 'slap', 'sing', 'fine', 'boohoo'], ['not', 'look', 'forward', 'next', 'week', 'math', 'geographi', 'english', 'french', 'exam', 'total', 'hour'], ['iphon', 'fell'], ['weird', 'see', 'myspac', 'page', 'without', 'delet', 'page', 'though'], ['appl', 'also', 'rotten', 'center', 'luck'], ['oww', 'back', 'pain', 'hm', 'walmart', 'could', 'get'], ['hope', 'not', 'rain', 'tonight', 'tomorrow', 'fam', 'come', 'visit', 'swim', 'pool', 'carn', 'asada', 'rain', 'pool', 'go', 'dirti'], ['balmain', 'knockoff', 'bebe', 'make', 'want', 'real', 'shoe', 'look', 'cheapi', 'cheapi'], ['think', 'cold', 'get', 'wors', 'not', 'better', 'not', 'stop', 'cough', 'realli', 'suck'], ['damn', 'rain'], ['fun', 'amorsot', 'even', 'though', 'forgot', 'birthday'], ['would', 'not', 'revers', 'overdraft', 'fee'], ['boy', 'leav', 'summer', 'go', 'stay', 'grandpar', 'go', 'miss'], ['nope', 'not', 'think', 'crime'], ['bus', 'stop', 'alway', 'big', 'pile', 'loogi', 'gross'], ['work'], ['sittin', 'hospit', 'isaac', 'hit', 'head'], ['feel', 'lone', 'need', 'good', 'friend'], ['allerg', 'hot', 'wax'], ['omg', 'learn', 'littl', 'girl', 'play', 'ducki', 'first', 'land', 'time', 'movi', 'murder', 'age', 'wtf'], ['tire'], ['sit', 'babi', 'libbi', 'fever', 'fussi'], ['not', 'figur', 'empir', 'puzzl', 'stuck'], ['hate', 'sat', 'around', 'alon', 'friday', 'night', 'big', 'sad', 'old', 'loser'], ['final', 'got', 'money', 'bad', 'goe', 'bill'], ['well', 'tell', 'not', 'marri', 'like', 'mayb', 'stuck', 'situat', 'like'], ['never', 'ban', 'court', 'order'], ['two', 'hilaari', 'love', 'verna'], ['took', 'nap', 'tummi', 'hurt'], ['know', 'ef', 'embarrass', 'eff', 'live'], ['ugh', 'bore', 'day'], ['want', 'b', 'mari', 'antoinett', 'cos', 'perfect', 'hairdo', 'fab', 'cloth', 'n', 'ton', 'macaron', 'crappi', 'day'], ['not', 'find'], ['could', 'would', 'send', 'california', 'sunshin', 'way'], ['found', 'tink', 'cover', 'wii', 'remot', 'peopl', 'know', 'not', 'wii', 'fail'], ['abl', 'see', 'websit', 'america', 'languish', 'read', 'news', 'stori'], ['bore', 'xd', 'pic', 'photo', 'still', 'mum', 'steam', 'miss', 'nameless'], ['not', 'get', 'along'], [], ['work', 'hop', 'citi', 'got', 'miss', 'basebal'], ['tri', 'dm', 'not', 'follow'], ['planet', 'fit', 'van', 'wyck', 'keep', 'hear', 'homi', 'tell', 'bout', 'plus', 'close', 'hood', 'know', 'lazzi', 'ass'], ['oh', 'poor', 'thing', 'keep', 'us', 'post'], ['yay', 'move', 'sorri', 'dh', 'grr', 'xx'], ['thank', 'review', 'today', 'feel', 'like', 'not', 'know', 'anyth', 'anyway', 'r'], ['bore', 'without', 'camera'], ['senior', 'done', 'day', 'woohoo', 'go', 'night'], ['got', 'back', 'groceri', 'store', 'starv', 'not', 'find', 'anyth', 'eat'], ['sit', 'friday', 'night', 'bore'], ['show', 'amaz', 'cold', 'hope', 'give', 'victoria', 'card', 'get', 'dvds', 'back', 'ha'], ['shakalohana', 'week', 'two', 'flat', 'wavez', 'surfin'], ['ugh', 'gross'], ['nigel', 'realli', 'enjoy', 'got', 'big', 'scratch', 'side', 'inexplic', 'appear', 'afterward'], ['congrat', 'ugh', 'still', 'til', 'end', 'june'], ['work', 'yess', 'super', 'hungri'], ['comput', 'remain', 'dead'], ['damn', 'dublin'], ['world', 'make', 'sad'], ['everi', 'saturday', 'till', 'work', 'suck', 'friday', 'monday', 'juli', 'either'], ['sunburn', 'not', 'fun', 'rememb'], ['watch', 'missi', 'elliot', 'video', 'collect', 'sad', 'told', 'look', 'like', 'high', 'school'], ['club', 'weekend', 'due', 'bust', 'knee', 'lt', 'emo', 'gt', 'life', 'unfair', 'lt', 'gt'], ['unemploy', 'line', 'come'], ['suck'], ['date', 'script', 'realli', 'bad', 'midway', 'thru', 'pitch', 'catch', 'get', 'butthurt', 'storm', 'loss'], ['realli', 'want', 'ring', 'cost', 'much', 'dam', 'credit', 'crunch'], ['sorri', 'shannon'], ['think', 'pretti', 'awesom', 'could', 'quot', 'lotr', 'rotk', 'one', 'summer', 'not', 'anymor'], ['arm', 'hurt'], ['feel', 'quit', 'not', 'quit', 'sure', 'though', 'go', 'bed', 'night', 'everyon', 'x'], ['thank', 'hon', 'migrain', 'went', 'away', 'came', 'back'], ['sad', 'corpor', 'giant', 'employ', 'not', 'let', 'get', 'site'], ['lt', 'internet', 'weekend'], ['saw', 'dead', 'bird', 'way', 'work', 'kind', 'day', 'start', 'poor', 'littl', 'bird'], ['love', 'walk', 'dog', 'dark', 'nice', 'walk', 'though', 'hehe', 'x'], ['not', 'good', 'rememb', 'twitter', 'thing', 'sorri', 'everybodi', 'leav', 'tibet', 'head', 'cold'], ['ugh', 'hate', 'degre', 'weather'], ['ouch', 'sunburn', 'bad', 'hope', 'not', 'sore', 'bed', 'alway', 'problem'], ['ah', 'nfg', 'super', 'amaz', 'jordan', 'legit', 'not', 'stay', 'longer', 'meet', 'everyon', 'cuz', 'hv', 'hour', 'drive', 'home'], ['wow', 'hope', 'get', 'better', 'cancer', 'gtfo'], ['sorri', 'dunner', 'saw', 'tweet', 'total', 'let', 'sorri', 'babe', 'work', 'till', 'boo'], ['agre', 'miss', 'lot', 'away', 'busi', 'like', 'whole', 'new', 'place'], ['hope', 'rain', 'soo', 'warm'], ['rate', 'armi', 'wive', 'teari', 'crimin', 'mind', 'yike', 'crimin', 'intent', 'take', 'sort', 'real', 'life', 'news', 'horrifi', 'ok', 'bed', 'nite'], ['lost', 'one', 'best', 'friend', 'soo', 'sad'], ['anyon', 'bore', 'work'], ['not', 'get', 'chat', 'oh', 'well', 'time', 'eat', 'pralin'], ['thought', 'albani', 'could', 'not', 'wors', 'ao', 'leav'], ['poor', 'greg', 'stupid', 'uk', 'alway', 'sympathi', 'vote', 'xo'], ['neither', 'get', 'better'], ['oh', 'noe', 'not', 'averag', 'joe', 'lexington', 'close', 'sad'], ['hate', 'wait', 'line'], ['hope', 'fun', 'canada', 'not', 'worri', 'see', 'summer'], ['babi', 'first', 'bust', 'lip'], ['smash', 'pinki', 'julia', 'car', 'door', 'fuck', 'life'], ['anyhoo', 'thank', 'spank', 'x'], ['guess', 'miss', 'beer', 'good', 'time'], ['not', 'look', 'forward', 'next', 'wednesday'], ['watch', 'would', 'forgottenmost', 'enjoy', 'pay', 'today', 'face', 'not', 'bounc', 'back', 'anymor'], ['tire', 'go', 'take', 'nap', 'finger', 'hurt'], ['oki', 'go', 'tweet', 'loos', 'guy', 'girl'], ['hate', 'remind', 'weak', 'eye', 'overdid', 'read', 'today', 'sore', 'fuck', 'go', 'rest'], ['still', 'home', 'good'], ['daddi'], ['amaz', 'decor', 'store', 'ever', 'seen', 'amp', 'almost', 'year'], ['cool', 'boob', 'itch', 'got', 'sunburn', 'volcano'], ['bore', 'bore', 'bore', 'wish', 'someth', 'tomorrow', 'especi', 'weather', 'not', 'fair'], ['sorri', 'mike', 'assum', 'music', 'not', 'know', 'mysteri'], ['earli', 'wish', 'could', 'sleep', 'today'], ['alway', 'feel', 'guilti'], ['aww', 'chamber', 'callback', 'soo', 'emot'], ['facebook', 'not', 'load', 'damn', 'bore'], ['brows', 'web', 'expect', 'see', 'pms', 'forum', 'back', 'luck'], ['feel', 'bad', 'everyth', 'stupid', 'harsh', 'fault', 'know', 'sorri', 'savvi', 'love', 'guy', 'lt'], ['upset'], ['tummi', 'ach'], ['yeah', 'friday', 'thought', 'sis', 'come', 'town', 'turn', 'not', 'sad', 'miss', 'babi'], ['quot', 'icant', 'live', 'not', 'live', 'quot', 'lmao', 'oh', 'way', 'oowwch', 'foot', 'hurri', 'plaster', 'go', 'bleed', 'death'], ['suck', 'go', 'id', 'b', 'piss'], ['feel', 'better', 'sorri', 'feel'], ['oh', 'bore', 'buut', 'almost', 'day', 'til', 'leav', 'franc'], ['stuck', 'aw', 'traffic', 'way', 'wed', 'ceremoni', 'suppos', 'start', 'ughh'], ['miss', 'guy', 'much', 'xx'], ['oi', 'mock', 'fact', 'not', 'cri', 'tv', 'thing', 'feel', 'bad', 'xx'], ['soo', 'fuck', 'stress', 'think', 'could', 'possibl', 'lose'], ['av', 'ad', 'reali', 'gd', 'day', 'wiv', 'ciara', 'connolli', 'park', 'gate', 'west', 'kirbi', 'new', 'brighton', 'fukin', 'funni', 'bt', 'sunburnt', 'luk', 'like', 'driver', 'arm'], ['traffic', 'ridicul', 'may', 'not', 'make'], ['aw', 'yes', 'week', 'got', 'ask', 'return', 'end', 'wish', 'bought', 'never', 'mind'], ['oh', 'poor', 'thing', 'sorri', 'babe'], ['yeah', 'text', 'wnat', 'go', 'car', 'broken'], ['go', 'life', 'not', 'good', 'exit', 'hallway', 'stuck', 'world'], ['hey', 'sorri', 'late', 'leav', 'min'], ['damn', 'anytim', 'need', 'car', 'dammit'], ['one', 'random', 'phone', 'call', 'ever', 'god', 'kill'], ['bummer', 'phone', 'get', 'disconnect', 'weekend', 'birthday', 'darn', 'lt'], ['ugh', 'hate', 'life', 'one', 'hire', 'sigh', 'stupid', 'economi', 'stupid', 'bush'], ['pray', 'sorri', 'hear', 'bro', 'man'], ['great', 'pic', 'upload', 'pix', 'tomo', 'laptop', 'tonight'], ['brazil', 'love'], ['sunburn', 'face', 'amp', 'leg', 'fix', 'arm'], ['bang', 'elbow', 'bleed', 'owwie'], ['not', 'allow', 'call', 'live', 'uk', 'parent', 'say', 'cost', 'much', 'suck'], ['damn', 'could', 'call', 'told', 'person', 'not', 'humili', 'front', 'whole', 'twittervers'], ['aww', 'sound', 'sad'], ['miss', 'mojokin', 'go', 'not', 'long', 'enough', 'comment', 'weekend'], ['fieldwork', 'databook', 'slept', 'awkward', 'bone', 'sore'], ['throat', 'reallyy', 'sore', 'bare', 'talk'], ['decemb', 'not', 'good', 'next', 'big', 'birthday', 'flys', 'sure'], ['think', 'skippin', 'ny', 'morn', 'plan', 'tonight', 'well', 'anyway'], ['not', 'believ', 'come', 'near', 'place', 'not', 'get', 'love', 'jenni'], ['pleas', 'not', 'let', 'get', 'obsess', 'whatev', 'whoever', 'charg', 'action', 'bad', 'job', 'late'], ['nativ', 'not', 'french', 'hate', 'tri', 'find', 'anim', 'french', 'suck', 'someon', 'help', 'pleeas', 'allison', 'iraheta'], ['shit', 'night', 'want', 'john'], ['not', 'mtv', 'go', 'fmll'], ['ridicul', 'warm', 'bed'], ['got', 'caught', 'pour'], ['haha', 'amen', 'soo', 'damn', 'hungri', 'hate', 'know', 'weekend', 'go', 'shit', 'suppos', 'great'], ['tire', 'need', 'anoth', 'minut'], ['yeah', 'not', 'avail', 'public', 'market', 'yet', 'soon', 'look', 'forward', 'sunburnt', 'arm', 'itch', 'boo', 'hoo'], ['hang', 'rex', 'miss', 'alabama', 'nanna', 'alreadi'], ['noth', 'good', 'five', 'dollar', 'sale'], ['sad', 'got', 'money', 'phone', 'ahh', 'well', 'lli', 'mitchel', 'xx'], ['checkin', 'got', 'fever', 'cnt', 'sleep'], ['borin', 'not', 'play', 'comput', 'mom', 'say', 'makin', 'task'], ['also', 'final', 'home', 'friend', 'anyon', 'kind', 'nice', 'sit', 'quiet', 'room', 'wish', 'gf', 'though'], ['fuck', 'everyth'], ['haha', 'scare', 'shit'], ['thanxx', 'messag', 'want', 'leav', 'bye'], ['freakin', 'frustrat', 'not', 'coach', 'realiz', 'time', 'hard', 'not', 'nobodi', 'got', 'money', 'buy', 'cooki', 'dough', 'new', 'uniform'], ['children', 'hospit', 'er', 'hope', 'meredith', 'not', 'broken'], ['wish', 'could', 'famous', 'act', 'danc'], ['everyon', 'work', 'tonight', 'bore'], ['fight', 'horrid', 'headach', 'larg', 'vanilla', 'ice', 'coffe'], ['may', 'unintent', 'snub', 'someon', 'due', 'feel', 'bad'], ['sad', 'tanner', 'not', 'invit', 'panther', 'develop', 'camp', 'year', 'poor', 'glasser', 'calla', 'good'], ['probabl', 'not', 'good', 'idea', 'hard', 'tweet', 'web', 'miss', 'tweetdeck', 'cri'], ['miss', 'bri', 'come', 'back', 'queensland', 'bitch', 'one', 'sit', 'next', 'class', 'drama', 'fun', 'without', 'come', 'back', 'boob'], ['saw', 'red', 'audi', 'highway', 'sped', 'uo', 'hope', 'loss'], ['quit', 'hard', 'attempt', 'spread', 'cornbread', 'fall', 'apart'], ['not', 'work', 'uk'], ['hah', 'noo', 'obli', 'one', 'aumff', 'hate', 'nick', 'datin', 'miley'], ['watch', 'termin', 'cri', 'one', 'movi', 'make', 'cri', 'reason', 'arni', 'die', 'lame'], ['sad', 'mom', 'must', 'shaken', 'peac', 'strength', 'dear', 'famili', 'lost', 'littl', 'girl'], ['bit', 'disappoint', 'killer', 'jonathan', 'ross', 'sexi', 'hell', 'though'], ['epic', 'moment', 'hahahha', 'swear', 'realli', 'want', 'see'], ['hey', 'twit', 'watch', 'poor', 'holli', 'britain', 'got', 'talent', 'poor', 'thing', 'peopl', 'mean', 'year', 'old', 'littl', 'girl'], ['listen', 'kind'], ['wish', 'sluttin', 'w', 'waahh'], ['boredd', 'work', 'tomorrow', 'sunday', 'hate', 'clark'], ['realli', 'realli', 'hate', 'biolog'], ['hug'], ['aww', 'wait', 'hope', 'not', 'rain'], ['miss', 'use'], ['hope', 'feel', 'better', 'soon'], ['not', 'get', 'today', 'sad'], ['latharg', 'definit', 'need', 'today', 'rest', 'sad', 'bout', 'havin', 'call', 'mental', 'need'], ['yahyan', 'iaan', 'joke'], ['oh', 'man', 'feel', 'sick', 'might', 'contract', 'cold', 'mayb', 'kid', 'slobber', 'thursday'], ['tire', 'walk', 'kilometr', 'today'], ['neat', 'hear', 'kiddshow', 'today', 'wish'], ['wish', 'could', 'call', 'live', 'uk', 'not', 'cash', 'call'], ['fantast', 'open', 'flower', 'drummer', 'asian', 'cast', 'crew'], ['unfortun', 'noy', 'life', 'suck', 'year'], ['omg', 'guy', 'internet', 'whole', 'day', 'still', 'not', 'work', 'tri', 'fix'], ['notic', 'ridicul'], ['kid', 'ugh', 'one', 'thing', 'know', 'sure', 'not', 'show', 'properti', 'weekend'], ['truli', 'aw'], ['sorri', 'hear'], ['sad', 'top', 'hord', 'guild', 'like', 'disband'], ['love', 'plan', 'cancel', 'night', 'anoth', 'night', 'home', 'alon'], ['man', 'daddi', 'left', 'work', 'never', 'see', 'lot', 'miss', 'daddi'], ['inabl', 'manag', 'money', 'tough', 'job', 'market', 'get', 'behind', 'bill', 'save', 'bad'], ['want', 'ice', 'cream', 'expens'], ['wonder', 'effect', 'street', 'preacher'], ['feel', 'hope', 'smooth', 'flight', 'safe', 'mucho', 'amor', 'boston'], ['followfriday', 'follow', 'peopl', 'interest', 'not', 'tweet', 'much', 'though'], ['not', 'look', 'forward', 'hurrican', 'season', 'day'], ['fun', 'well', 'hope', 'not', 'much', 'go'], ['watch', 'quot', 'sicko', 'quot', 'utter', 'digust', 'countri'], ['jess', 'invit', 'not', 'feel', 'realli', 'unlov', 'aj', 'right', 'hahaha'], ['think', 'good', 'stood'], ['lame'], ['lmao', 'man', 'bum', 'stop', 'braid'], ['prob', 'skittl', 'alway', 'go', 'back', 'true', 'sweeti', 'not', 'play', 'lol', 'yea', 'got', 'heat', 'sri'], ['angri', 'sad', 'happi', 'excit', 'hate', 'mood', 'chang', 'right', 'immens', 'sad'], ['glass', 'cold', 'water', 'medit', 'bit', 'lt'], ['hope', 'earlier', 'septemb', 'along', 'time'], ['go', 'releas', 'anoth', 'album', 'alreadi', 'miss'], ['irrat'], ['hey', 'bow', 'yu', 'comin', 'baxx', 'thaa', 'miss', 'yu', 'hun', 'day'], ['tgif', 'hubbi', 'drag', 'buy', 'car', 'part', 'tire', 'n', 'cranki'], ['sbarro', 'dinner', 'krispi', 'kreme', 'dessert', 'mm', 'not', 'healthi'], ['comput', 'go', 'ie', 'xp', 'ie', 'vista', 'still', 'show'], ['jbobsess', 'xd', 'miss', 'soo', 'much', 'live', 'web', 'cast', 'bookfac', 'everi', 'thursday', 'xd'], ['hard', 'keep', 'everyth', 'whole', 'coldplay', 'twitter', 'facebook', 'not', 'talk', 'real', 'life', 'imposs'], ['plus', 'go', 'clash', 'ugli', 'betti', 'channel', 'show', 'season', 'next', 'month', 'well', 'grr'], ['aww', 'let', 'would', 'better', 'next', 'xd'], ['oi', 'love'], ['not', 'go', 'wknd', 'sorri', 'took', 'forev', 'respond', 'realiz', 'twitter', 'not', 'txting', 'updat'], ['not', 'go', 'movi', 'got', 'ground'], ['go', 'beamer', 'rest', 'high', 'school', 'sad', 'prn', 'journal'], ['consid', 'nurs', 'younger', 'realli', 'not', 'think', 'could', 'cope', 'babi', 'die'], ['homework', 'borri'], ['msn', 'crash', 'way', 'much', 'hmph'], ['back', 'kind', 'mess', 'strudel', 'go', 'live', 'anoth', 'town', 'move', 'go', 'miss', 'littl', 'runt'], ['back', 'miami', 'miss', 'south', 'beach'], ['friday', 'night', 'gone', 'quick', 'bottl', 'gone', 'tomorrow', 'come', 'everton'], ['freakin', 'hawt', 'guy', 'eat', 'dinner', 'father'], ['throat', 'scratchi'], ['batteri', 'low', 'boo', 'palm', 'spring', 'ca'], ['hot', 'texa', 'ac', 'upstair', 'broken', 'realli', 'hot', 'hous'], ['miss', 'wbc', 'counterprotest', 'probabl', 'go', 'waterfir', 'ben', 'yay'], ['ahh', 'know', 'realli', 'suck', 'sprain', 'toe', 'ouch'], ['better', 'macbook', 'keyboard', 'yesterday', 'spill', 'whole', 'cup', 'hot', 'chocol'], ['not', 'even', 'call', 'belgium', 'suck'], ['miss', 'husband'], ['born', 'rais', 'nyc', 'live', 'texa', 'past', 'year', 'still', 'miss', 'ny'], ['confus'], ['illeg', 'date'], ['graduat', 'done', 'littl', 'sad', 'anyon', 'want', 'hang'], ['hate', 'thunder', 'lightn'], ['life', 'bore', 'without'], ['not', 'seen', 'yet', 'come', 'dvd', 'hehe', 'haha'], ['poor', 'dead', 'josh', 'pleas', 'leav', 'messag', 'condol', 'boy', 'rip'], ['scare', 'not', 'mad', 'not', 'jip', 'world', 'presenc'], ['hate', 'rain', 'peopl'], ['gah', 'gregg', 'got', 'hot', 'talent', 'vote', 'dammit'], ['j', 'ross', 'not', 'leav', 'killer', 'still', 'sing', 'run', 'titl', 'edit', 'music', 'happi', 'not'], ['would', 'afraid', 'got', 'two', 'left', 'feet'], ['beg', 'mum', 'lt', 'get', 'attic', 'not', 'let', 'waa', 'yes', 'spoilt', 'hehe'], ['wish', 'could', 'realli', 'love', 'around', 'ill', 'see', 'tri', 'use', 'nation', 'champ', 'pull', 'lol'], ['exhaust', 'forc', 'attend'], ['test', 'discoveri', 'miss'], ['aw', 'torn', 'ace', 'heart', 'hunchback'], ['love', 'love', 'teas', 'babi', 'end', 'boo', 'still', 'love', 'though'], ['loner', 'haha', 'suckss'], ['wish', 'could', 'teach', 'dog', 'play', 'xbox', 'thumb'], ['great', 'great', 'cookoutofthecenturi', 'wife', 'tummi', 'hurt', 'great'], ['bike', 'put', 'known', 'argh', 'total', 'bummer'], ['disappoint'], ['good', 'mate', 'sad', 'could', 'not', 'get', 'piss', 'tonight', 'fuck', 'drive', 'bad', 'time'], ['yep', 'back', 'morn', 'nfg', 'fab', 'last', 'night', 'not', 'go', 'tomorrow', 'get', 'ms', 'ticket', 'soon', 'away'], ['forev', 'ethan', 'could', 'not'], ['one', 'bad', 'today', 'sinc', 'neck', 'surgeri', 'month'], ['need', 'write', 'realli', 'bad', 'someon', 'go', 'get', 'diari', 'flat'], ['poor', 'kella', 'med', 'ear', 'infect', 'lost', 'food', 'twice', 'doc'], ['hate', 'differ', 'referenc', 'assembl', 'fnh', 'goe', 'castl', 'caliburn', 'not', 'mention', 'dynamicproxi', 'nh'], ['realli', 'sad', 'miss', 'critic', 'mass'], ['watch', 'film', 'recov', 'oper'], ['smackdown', 'lot', 'bore', 'without', 'maria'], ['miss', 'not', 'say', 'quot', 'damn', 'quot', 'lol'], ['tire', 'amp', 'miss', 'dione', 'alreadi'], ['head', 'see', 'friend', 'new', 'babi', 'gave', 'trip', 'lake', 'danc', 'class', 'good', 'mama'], ['chillen', 'gmas', 'soo', 'humid', 'outsid'], ['not', 'get', 'load'], ['thunder', 'reallyr', 'loud', 'work', 'littl', 'boy', 'start', 'cri', 'want', 'cri', 'hate', 'storm', 'wah'], ['back', 'work', 'tomorrow', 'whose', 'idea', 'go', 'back', 'saturday', 'oh', 'wait', 'would', 'mine', 'fail'], ['made', 'not', 'bed', 'much', 'room', 'made', 'outta', 'space', 'sure', 'lol', 'know', 'pathet'], ['anyon', 'els', 'problem', 'follow', 'unfollow', 'peep', 'gone', 'week'], ['lol', 'sed', 'want', 'not', 'ach', 'dress', 'reason', 'please', 'bore', 'lol'], ['thank', 'alot', 'stuck', 'work'], ['love', 'goe', 'kanoa', 'sorri', 'loss', 'dear'], ['much', 'blip', 'immun', 'system', 'not', 'yet', 'newborn', 'give', 'month', 'noth'], ['wow', 'still', 'void', 'whre', 'thoma', 'left', 'heartach', 'never', 'go', 'go', 'away'], ['wow', 'not', 'free', 'wifi', 'amp', 'amp', 'pay', 'park', 'reducul'], ['love', 'puppi'], ['whaat', 'oh', 'not', 'know'], ['come', 'not', 'seem', 'excit', 'play', 'dc'], ['not', 'upload', 'pictur', 'alreadi', 'hate', 'twitter'], ['bbq', 'great', 'relax', 'around', 'hous', 'not', 'want', 'leav', 'citi', 'tomorrow', 'got', 'clean', 'hous', 'get', 'back'], ['not', 'get', 'one', 'fine', 'say', 'text', 'way', 'meaning', 'twitter'], ['cindi', 'babi', 'last', 'friday', 'togeth', 'dr', 'hope'], ['sad', 'malta', 'heard'], ['wish', 'call', 'blah', 'use', 'easi', 'move', 'wtf', 'happen'], ['realli', 'not', 'mind', 'much', 'sittin', 'standstil', 'listenin', 'music', 'twttrg', 'gas', 'gaug', 'not', 'lookin', 'healthi'], ['think', 'tonight', 'plan', 'not', 'go', 'happen', 'not', 'surpris'], ['fuck', 'song', 'fill', 'ipod', 'suppos', 'hold'], ['sick', 'feel', 'like', 'jello', 'not', 'talk', 'deliri'], ['head', 'work', 'n', 'freez'], ['miss', 'argh'], ['wish', 'anywher'], ['not', 'let', 'watch', 'sinc', 'state', 'boo'], ['true', 'unfortun', 'lead', 'movi', 'not', 'die', 'high', 'note', 'friday', 'model'], ['not', 'want', 'work', 'tomorrow'], ['next', 'week', 'exam', 'wise', 'aw', 'exam', 'not', 'see', 'adequ', 'revis', 'care', 'least'], ['sunburnt', 'horribl'], ['move', 'noth', 'access', 'camera', 'broken', 'kitchen', 'stuff', 'box', 'internet', 'make', 'hard', 'cook', 'blog', 'get', 'brooklyn'], ['yeah', 'late', 'lol'], ['get', 'readi', 'graduat', 'parti', 'id', 'much', 'rather', 'hello', 'marque', 'dane', 'cook'], ['earli', 'ish', 'night', 'tonight', 'overtim', 'work', 'tomorrow', 'boo', 'work', 'saturday'], ['aww', 'miss', 'see', 'tonight'], ['realli', 'miss', 'hockey', 'alreadi', 'night', 'dtn', 'napervill', 'not', 'wait', 'day', 'tomorrow', 'work', 'sunday'], ['homework', 'bound', 'whole', 'weekend', 'not', 'fun'], ['roxi', 'not', 'feel', 'well'], ['woke', 'five', 'hour', 'nap', 'still', 'headach', 'medic', 'time'], ['tri', 'fix', 'weird', 'queri'], ['go', 'siick', 'mad', 'jason', 'said', 'recov', 'fulli', 'go', 'paintballin', 'play'], ['soo', 'fuck', 'sick', 'wade', 'mood', 'swing', 'uhh', 'hate', 'asshol', 'ahh'], ['everyth', 'demi', 'lovato'], ['huge', 'headach', 'not', 'asprin', 'work'], ['anoth', 'david', 'hugh', 'list', 'hurt', 'ftw'], ['play', 'singstar', 'without', 'fave', 'duetter'], ['not', 'spell'], ['asda', 'readi', 'meal', 'not', 'think', 'ever'], ['back', 'see', 'miss', 'truck', 'fish'], ['glad', 'ts', 'brought', 'sorri', 'foot', 'go', 'relax', 'wit', 'heel'], ['ohww', 'whatev', 'excit', 'anyway'], ['realli', 'want', 'go', 'milwauke', 'sis', 'not', 'want', 'well', 'not', 'tell'], ['day', 'ff', 'worst'], ['got', 'overexcit', 'pizza', 'burn', 'mouth'], ['anoth', 'taken', 'met', 'see', 'real', 'sleep', 'disord'], ['harley', 'pass', 'away', 'decemb'], ['appar', 'not', 'tri', 'site', 'though', 'mayb', 'get', 'better', 'result'], ['learn', 'today', 'never', 'post', 'anyth', 'sold', 'ebay', 'use', 'royal', 'mail', 'lose', 'refund', 'compo', 'nowher', 'near', 'bad'], ['make', 'feel', 'physic', 'sick', 'read', 'let', 'right', 'one', 'horrifi', 'cat', 'violenc', 'horribl'], ['young', 'peopl', 'attract', 'troubl', 'make', 'sad', 'lt', 'kmv'], ['wish', 'work', 'done', 'soon', 'lt'], ['cabl', 'signal', 'mess', 'miss', 'ghostwhisper', 'news', 'hurt', 'toe', 'cold', 'like', 'hot', 'weather'], ['bore', 'work'], ['love', 'not', 'call', 'live', 'argentina', 'realli', 'realli', 'love', 'mitchel'], ['not', 'get'], ['new', 'guitar', 'hero', 'metallica', 'guitar', 'alreadi', 'broken', 'fail'], ['yeah', 'jus', 'glad', 'thunder', 'stop'], ['everi', 'time', 'pay', 'librari', 'fine', 'get', 'new', 'one', 'bad', 'patron'], ['still', 'pool', 'key', 'wth', 'even', 'hot', 'today'], ['lay', 'bed', 'til', 'workk', 'oh', 'life', 'definit', 'pinch', 'nerv'], ['umm', 'well', 'go', 'hous', 'club', 'never', 'go', 'north', 'beach', 'idea', 'sorri', 'defunctlesi', 'club'], ['definit', 'need', 'work', 'busi', 'much', 'free', 'food', 'alcohol', 'sure', 'gain', 'pound'], ['librari', 'friggin', 'bore'], ['point', 'wisdom', 'teeth', 'noth', 'grr', 'much', 'pain', 'look', 'like', 'chipmunk', 'fml'], ['know', 'mad', 'us'], ['everyth', 'cool', 'wish', 'boy', 'abl', 'talk'], ['thank', 'assign', 'work', 'today'], ['omg', 'anyon', 'see', 'wee', 'girl', 'bgt', 'xx', 'sucha', 'shame'], ['live', 'alki', 'without', 'park', 'blow', 'amp', 'park', 'wkds', 'worst', 'feel', 'like', 'hostag'], ['think', 'twitter', 'hate', 'come', 'photo', 'took', 'age', 'day', 'chang', 'pic', 'especi', 'time'], ['drove', 'mom', 'brynn', 'mom', 'said', 'worst', 'driver'], ['serious', 'mum', 'make', 'eat', 'yeah', 'weird', 'eat', 'habit', 'not', 'eat', 'day', 'realli'], ['kill', 'furbi'], ['go', 'get', 'got', 'bitten'], ['get', 'readi', 'start', 'work', 'week', 'not', 'tgif', 'monday'], ['never', 'commut', 'rain', 'peopl', 'get', 'much', 'meaner'], ['possibl', 'yes'], ['went', 'find', 'uniti', 'girl', 'bebo', 'not', 'find', 'fail', 'bebo', 'stalk'], ['final', 'nice', 'hour', 'leav'], ['one', 'ever', 'gave', 'info', 'sad'], ['hug', 'oh', 'gosh', 'sorri'], ['found', 'one', 'cowork', 'paul', 'actual', 'know', 'talk', 'got', 'laid', 'blow'], ['go', 'miss', 'gir', 'soo', 'super', 'load', 'wish', 'not', 'go', 'week', 'wayi', 'long'], ['went', 'bestbuy', 'today', 'found', 'pretti', 'much', 'ever', 'hp', 'except', 'one', 'want', 'look'], ['aww', 'sorri', 'hun', 'sure', 'not', 'purpos', 'though', 'seem', 'sweet', 'mayb', 'hour', 'thing'], ['sorri', 'bad', 'day', 'look', 'back', 'need', 'give', 'someon', 'knuckl', 'sandwich'], ['world', 'appar', 'involv', 'lot', 'less', 'twitter', 'sorri'], ['sun', 'see', 'ocean', 'almost', 'ran', 'squirrel', 'drive', 'home', 'store', 'foggi', 'r'], ['man', 'not', 'home', 'co', 'host', 'xo', 'blair'], ['got', 'hit', 'car', 'got', 'screw', 'oepn', 'wound', 'broken', 'finger', 'broken', 'toe', 'toe', 'nail', 'f', 'ed'], ['think', 'rain', 'kill', 'phone'], ['aww', 'poor', 'thing', 'hope', 'goe', 'well'], ['need', 'blackberri'], ['miss', 'nate', 'usual', 'tonight'], ['messag', 'could', 'let', 'peopl', 'know', 'boot'], ['would', 'one', 'plese', 'suggest', 'great', 'thriller', 'movi'], ['problem', 'wih', 'love', 'addict', 'pizza', 'dot', 'dot', 'curv', 'gt'], ['not', 'today', 'sad'], ['sad'], ['fml', 'today', 'suck', 'hope', 'danc', 'bring', 'soul', 'pray', 'still', 'hate', 'todayi', 'gt'], ['bore', 'start', 'work', 'weekend', 'soon', 'need', 'get', 'tim', 'coffe', 'make', 'damn', 'night', 'shift'], ['hope', 'feel', 'better', 'sweeti'], ['becom', 'grey', 'hope', 'not', 'one', 'quot', 'shower', 'quot', 'way'], ['want', 'korean', 'bbq', 'badd', 'one', 'come'], ['thing', 'last', 'thing', 'mind', 'clean', 'everyon', 'cake', 'mess'], ['alway', 'come', 'money', 'least', 'rotten', 'law', 'averag'], ['mani', 'attempt', 'not', 'figur', 'put', 'pic', 'avatar', 'tell', 'pic', 'big', 'frustrat'], ['want', 'not', 'call', 'live', 'argentina', 'realli', 'realli', 'love', 'mitchel', 'awesom', 'rock'], ['even', 'bother', 'get', 'new', 'fuck', 'break', 'anyway', 'not', 'float', 'thrown', 'pool'], ['hate', 'funer'], ['excel', 'pic', 'wish', 'long', 'drive', 'tn'], ['oh', 'celebr', 'ding', 'dong', 'age'], ['sadd', 'sancha', 'june', 'fail', 'go', 'chini'], ['aww', 'sorri', 'ot', 'hear', 'least', 'work', 'though'], ['mow', 'hate', 'lawn'], ['saw', 'trailer', 'batman', 'arkham', 'asylum', 'play', 'joker', 'exclus', 'damn', 'hurt'], ['get', 'littl', 'mow', 'grass', 'even', 'fun'], ['oh', 'sorri', 'hear', 'firefox', 'crash'], ['get', 'littl', 'mow', 'grass', 'even', 'fun'], ['realli', 'hope', 'car', 'ill', 'not', 'termin'], ['everi', 'time', 'friday', 'sad', 'not', 'often'], ['not', 'happi'], ['beer', 'excel', 'excus', 'earlier', 'sweat', 'god', 'know', 'much', 'not', 'look', 'forward', 'work', 'tomorrow'], ['class', 'tomorrow', 'tomorrow', 'saturday', 'hate', 'class', 'saturday'], ['k', 'way'], ['whaay', 'first', 'day', 'tomorrow', 'go', 'well'], ['yeeah', 'would', 'lmao', 'dentist', 'not', 'nice', 'espesh', 'decid', 'old', 'goodi', 'bag', 'sticker', 'amp', 'awesom', 'toothpast'], ['suck', 'boo'], ['even', 'tri', 'go', 'sleep', 'miss', 'cold', 'winter', 'night'], ['alway', 'one', 'joykil', 'crowd', 'hater'], ['miss', 'lucki', 'edmontonian'], ['went', 'see', 'quot', 'quot', 'realli', 'good', 'movi', 'pull', 'heart', 'string', 'high', 'recommend'], ['ugh', 'look', 'like', 'rain', 'min'], ['not', 'go', 'moe', 'mexican', 'grill', 'spici'], ['tri', 'find', 'driver', 'microsoft', 'lifecam', 'webcam', 'not', 'find', 'anywher', 'anyon', 'link'], ['ncp', 'longer', 'job', 'placement'], ['play', 'old', 'school', 'playground', 'still', 'except', 'lame', 'ass', 'got', 'rid', 'tire', 'swing'], ['noo', 'not', 'receipt', 'not', 'break', 'heart'], ['thing', 'alway', 'end', 'go', 'bad'], ['feel', 'reealli', 'bad', 'sorri'], ['unfortun', 'not', 'drunk', 'enough', 'lol', 'money', 'get', 'drunk', 'alot', 'though', 'imagin', 'haha'], ['troubl', 'not', 'think', 'help', 'wrist'], ['yeah', 'hate', 'sorri', 'goin', 'thru'], ['quot', 'guy', 'could', 'fun', 'cardboard', 'box', 'quot', 'miss', 'alreadi', 'bro'], ['well', 'left', 'six', 'flag', 'not', 'get', 'ride', 'want', 'bummer', 'mayb', 'next', 'time'], ['sorri', 'hear'], ['two', 'month', 'ago', 'becam', 'irrelev'], ['stuck', 'la', 'love', 'turn', 'road', 'rage', 'lol'], ['noo', 'sue', 'retir'], ['sometim', 'could', 'swear', 'realli', 'insan'], ['fuck', 'leg', 'sun', 'burn'], ['talk', 'kat', 'crappi'], ['right', 'ear', 'block', 'today', 'bit', 'like', 'got', 'water', 'idea', 'clear', 'not', 'like', 'put', 'liquid'], ['sadfac'], ['twitter', 'act', 'weird'], ['need', 'job', 'pay', 'hospit', 'bill', 'sick', 'late'], ['facepalm', 'hope', 'interview', 'choic', 'not', 'forc', 'thing'], ['twitterberri', 'hate'], ['thank', 'r', 'sorri', 'lotr', 'spam'], ['ughh', 'reject', 'mediat', 'program', 'suckss'], ['corona', 'bad', 'crave', 'mexican', 'pastri', 'would', 'go', 'uptown', 'get'], ['water', 'plant', 'home', 'drink', 'delici', 'smoothi', 'morgan', 'jamba', 'explod'], ['noo', 'not', 'go', 'see', 'new', 'nephew'], ['go', 'forgo', 'pub', 'night', 'wife', 'tonight', 'tough', 'week', 'us', 'neither', 'realli', 'plus', 'neighbor', 'die'], ['ask', 'suit', 'head', 'not', 'think', 'look', 'much', 'like', 'whore'], ['sad'], ['hey', 'dude', 'turn', 'flyer', 'poser', 'not', 'nice'], ['hungri'], ['aww', 'suck', 'mayb', 'youtub', 'somewher'], ['got', 'exam', 'centr', 'n', 'said', 'not', 'let', 'becuz', 'sleeveless', 'top', 'cud', 'believ', 'go', 'home'], ['aw', 'not', 'go', 'toronto', 'anymor'], ['brand', 'new', 'play', 'epicent', 'juli', 'ny', 'jess', 'lacey', 'hate'], ['hour', 'work', 'cri', 'not', 'surviv', 'weelcom', 'wonderland', 'sing', 'along'], ['sweati', 'tire', 'lap', 'run', 'go', 'sun', 'run', 'next', 'year', 'matter'], ['sorri', 'hon', 'know', 'feel', 'usual', 'crazi', 'famili', 'gather', 'would', 'probabl', 'hold', 'back', 'like', 'also'], ['not', 'sleep', 'not', 'finish', 'homework', 'damn'], ['peopl', 'id', 'never', 'guess', 'grouchi'], ['want', 'cool'], ['alreadi', 'cri', 'movi', 'start', 'like', 'ago'], ['wtf', 'pic', 'not', 'show'], ['ugh', 'hangov', 'sign', 'get', 'old'], ['know', 'make', 'sad', 'lol'], ['watch', 'big', 'broth', 'big', 'quiz', 'rather', 'tiredd', 'download', 'dvd', 'wait', 'till', 'finish', 'till', 'go', 'bed'], ['not', 'keep'], ['pass', 'wreck', 'car', 'hope', 'everyon', 'got', 'final', 'pick', 'speed'], ['lucki', 'winter', 'come', 'us'], ['thank', 'last', 'minut', 'doc', 'appoint', 'babi', 'girl', 'temp', 'sit', 'doc', 'waitin'], ['still', 'not', 'work', 'not', 'frustrat'], ['well', 'ef', 'iphon', 'nice', 'know'], ['wow', 'almost', 'got', 'involv', 'big', 'fight', 'school', 'ah', 'anyway', 'text', 'go', 'causin', 'hous', 'plus', 'game', 'crazi'], ['wish', 'rain', 'would', 'stop', 'stupid', 'headach', 'would', 'go', 'away'], ['tire', 'tire', 'tire', 'think', 'get', 'sick'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['weather', 'ugli', 'n', 'realli', 'cold'], ['catch', 'last', 'bit', 'later', 'jool', 'last', 'seri', 'sob', 'cri'], ['parent', 'busi', 'make', 'feel', 'like', 'crap', 'realis', 'got', 'wors', 'need', 'see', 'doctor', 'sleep', 'suck'], ['sick', 'week', 'still', 'not', 'feel', 'well', 'not', 'go', 'lena', 'gunna', 'spend', 'time', 'fam'], ['soo', 'gon', 'cheat', 'tell', 'everybodi', 'twitter', 'not', 'know', 'trust', 'anymor'], ['whini', 'right', 'annoy', 'need', 'get', 'rest', 'tonight', 'movi', 'night'], ['pleas', 'read', 'blog', 'not', 'best', 'day'], ['want', 'see', 'show'], ['si', 'pero', 'parec', 'que', 'las', 'persona', 'de', 'facebook', 'estan', 'de', 'acuerdo', 'probabl', 'wrong', 'tri'], ['yeah', 'amp', 'goe', 'wrong', 'worst', 'feel', 'ever'], ['headach', 'boo'], ['nice', 'cake', 'not', 'like', 'haha', 'soo', 'gayi', 'though'], ['head', 'hurt', 'beyond', 'much'], ['sorri', 'feel', 'way'], ['go', 'sleepi', 'feel', 'poor', 'piss', 'night', 'night', 'tweepl', 'xx'], ['hospit', 'week', 'half', 'pretti', 'much', 'virg', 'die'], ['ignor', 'get', 'sum', 'rid', 'headach'], ['sorri', 'feel', 'way'], ['omg', 'much', 'pain', 'ouchi'], ['chili', 'chees', 'fri', 'bad', 'idea', 'lunch'], ['yaeh', 'thank', 'god', 'suekd', 'kick', 'church'], ['home', 'alon', 'hous', 'go', 'scare', 'x'], ['okay', 'need', 'hit', 'sack', 'got', 'wake', 'like', 'hour', 'goodnight', 'everyon'], ['broke', 'favorit', 'necklac', 'superglu'], ['quit', 'afraid', 'string', 'sinc', 'not', 'wire', 'use'], ['not', 'mean'], ['k', 'finish', 'last', 'client', 'night', 'go', 'home', 'alon', 'ok', 'need', 'alon', 'must', 'find', 'inner', 'peac'], ['sorri', 'guy', 'wavv', 'show', 'cancel', 'miss', 'flight'], ['aw', 'wrong'], ['not', 'feel', 'good'], ['hmm', 'okayi', 'realli', 'sorri', 'hear', 'thikn', 'would', 'done'], ['waa', 'kick', 'us', 'bank', 'get', 'monday', 'omg', 'chilito'], ['oh', 'total', 'forgot', 'play', 'today'], ['wtf', 'crap', 'min', 'mark', 'cost', 'grand'], ['not', 'upload', 'pictur', 'everyth', 'big'], ['uh', 'final', 'home', 'complet', 'wipe'], ['not', 'mix', 'match', 'dumb', 'drive'], ['bad', 'work'], ['want', 'cri', 'thought', 'nba', 'season', 'almost', 'next', 'year', 'miami'], ['actual', 'quit', 'good', 'bed', 'long', 'day', 'tomorrow', 'june', 'come', 'soon', 'not', 'soon'], ['hey', 'tweeti', 'aunti', 'jus', 'got', 'n', 'bad', 'car', 'keep', 'prayer'], ['poor', 'bella', 'er', 'first', 'second', 'ear', 'infect', 'sinc', 'ear', 'infect', 'scream', 'blood', 'curdl'], ['dota', 'wast', 'hour', 'play', 'dota'], ['aaww', 'soo', 'tire', 'today', 'not', 'feel', 'good', 'not', 'want', 'go', 'work', 'wah', 'yeah', 'goin', 'work', 'min', 'til', 'close'], ['miss', 'alot', 'one', 'day'], ['meet', 'karen', 'boy', 'drink', 'dock', 'want', 'drink', 'though', 'fuck', 'like', 'andrea', 'said', 'haha'], ['flip', 'go', 'doc'], ['ahh', 'dang', 'cours', 'better', 'back', 'fast'], ['omg', 'toni', 'hawk', 'motion', 'nintendo', 'ds', 'suck', 'ass'], ['messag', 'teas', 'not', 'fair'], ['scare', 'wait', 'call'], ['kind', 'piss', 'boy', 'like', 'girl', 'go', 'kentucki', 'kingdom', 'date', 'alreadi', 'show'], ['liz', 'left', 'aww', 'good', 'see'], ['look', 'like', 'got', 'cloudi', 'outsid', 'noth', 'tonight', 'boo', 'friday'], ['ahh', 'fuck', 'none', 'friend', 'want', 'see', 'not', 'want', 'chill', 'tonight'], ['start', 'look', 'like', 'websit', 'may', 'not', 'happen', 'form'], ['wrong', 'babe', 'x'], ['think', 'food', 'ate', 'made', 'sick', 'feel', 'good'], ['ahh', 'got', 'stitch', 'serious', 'not', 'wait', 'go', 'beach', 'summer', 'hurri'], ['not', 'like', 'see', 'best', 'friend', 'cri', 'break', 'heart', 'not', 'know', 'say'], ['not', 'cri', 'long', 'time'], ['realli', 'sleepi', 'want', 'go', 'upstair', 'mess', 'know', 'go', 'clean', 'noo'], ['realli', 'scari', 'nois', 'come', 'outsid'], ['ok', 'final', 'start', 'hit', 'draw', 'short', 'game', 'gone', 'crap'], ['slowest', 'train', 'ever', 'stop', 'everywher', 'miss', 'quick', 'train', 'minut'], ['stop', 'mean', 'hurt', 'feel'], ['price', 'drop', 'would', 'nice', 'want', 'anoth', 'one', 'player'], ['not', 'find', 'camera'], ['omg', 'wow', 'hope', 'everyth', 'ok'], ['horribl', 'move', 'houston', 'apart', 'await', 'work', 'start', 'monday', 'real'], ['not', 'rare', 'dye', 'red', 'first', 'aaggess', 'hair', 'hate'], ['woohoo', 'noth', 'say', 'hot', 'date', 'night', 'squeege', 'lol', 'watch', 'dora', 'noggin', 'girl', 'hub', 'work'], ['home', 'phone', 'die', 'thou'], ['not', 'work'], ['got', 'drop', 'froma', 'coupla', 'peopl', 'follow', 'damn', 'detroit', 'fan'], ['heard', 'amp', 'away', 'miss', 'look', 'forward', 'tweet', 'return'], ['day', 'boredom', 'stuck', 'head'], ['leav', 'mrs', 'cuz', 'go', 'work', 'realli', 'not', 'want'], ['midnight', 'weather', 'damn', 'bore'], ['sick', 'ridicul'], ['mad', 'cuz', 'not', 'get', 'pictur', 'work'], ['miss', 'need', 'talk', 'keep', 'screw', 'love'], ['hell', 'yea', 'hot', 'miss', 'cali'], ['miss', 'senior', 'alreadi'], ['desper', 'need', 'tweet', 'cheer'], ['lol', 'went', 'okay', 'far', 'tell', 'test', 'today', 'geo', 'zone', 'got', 'like'], ['free', 'ice', 'cream', 'though'], ['watch', 'nhl', 'playoff', 'tomorrow', 'night', 'anyon', 'interest', 'know', 'none'], ['twitter', 'not', 'upload', 'icon', 'pictur', 'hate', 'eff', 'upload', 'later'], ['peopl', 'mustach', 'get', 'super', 'power', 'mustach', 'fair'], ['sunburn', 'realli', 'bad', 'regret', 'sit', 'sun', 'without', 'suncream'], ['need', 'coffe', 'get', 'serious', 'withdraw', 'symptom'], ['poor', 'dead', 'josh', 'pleas', 'leav', 'messag', 'condol', 'boy', 'rip', 'sad'], ['like', 'matter', 'much', 'fun', 'need', 'hug', 'bowl', 'ramen', 'comfi', 'blanket', 'soon', 'get', 'home'], ['mm', 'lauren', 'conrad', 'eep', 'go', 'miss', 'hill'], ['appropri', 'tweet', 'everyth', 'ok', 'last', 'day', 'tweet', 'not', 'paint', 'good', 'pictur'], ['today', 'not', 'day', 'not', 'seem', 'feel', 'better', 'not', 'eat', 'hungri', 'eat', 'feel', 'like', 'go', 'sick', 'blah'], ['oh', 'look', 'bore', 'even', 'bore', 'exam', 'saturday'], ['sick', 'flu', 'like', 'thing'], ['sad', 'fit', 'center', 'reopen', 'not', 'zumba', 'class', 'anymor', 'found', 'today', 'last', 'class', 'closur'], ['not', 'get', 'see', 'boy', 'sad'], ['tri', 'say', 'seem', 'like', 'peopl', 'facebook', 'not', 'agre', 'guess', 'fail'], ['hear', 'time', 'earlier', 'mean'], ['ughh', 'leg', 'still', 'cramp', 'panic', 'attack', 'outsid', 'ulu', 'morn', 'bloodi', 'hurt'], ['cafe', 'manag', 'end', 'month', 'noth', 'number', 'arti', 'littl', 'head', 'hurt', 'find', 'discrep'], ['ohh', 'line'], ['town', 'next', 'week', 'parti', 'get', 'back', 'happi', 'earli', 'birthday'], ['camera', 'douche', 'stop', 'work'], ['tire', 'fuck', 'piss', 'rain', 'miss', 'summer'], ['boo', 'bet', 'nice', 'wallet'], ['ty', 'long', 'tire', 'day', 'fill', 'expens', 'plumber', 'work', 'need', 'calgon', 'hope', 'amp', 'awesom', 'weekend'], ['yeah', 'know', 'fuck', 'annoy', 'good', 'promo', 'lost', 'contact', 'busi'], ['get', 'upset', 'listen', 'say', 'want', 'speak', 'mitchel', 'darn', 'phone', 'got', 'money', 'x'], ['bf', 'go', 'dad', 'week', 'end', 'full', 'day', 'bordom'], ['lol', 'bad', 'taken'], ['wreck', 'hungri', 'amp', 'get', 'earli', 'not', 'perfect', 'fri', 'night', 'lol', 'night'], ['problem'], ['miss', 'closest', 'freind', 'shirley', 'went', 'franc', 'summer', 'miss', 'shirley'], ['not', 'want', 'go', 'sit', 'heat', 'watch', 'high', 'school', 'graduat'], ['wish', 'could', 'spend', 'last', 'weekend', 'high', 'school', 'student', 'burbank', 'everyon', 'not', 'fli', 'dc'], ['got', 'home', 'hospit', 'anoth', 'clot', 'leg'], ['faill', 'whenev', 'free'], ['fact', 'room', 'hot', 'make', 'feel', 'sick'], ['yeah', 'work', 'busi', 'day', 'tire', 'hungri'], ['wish', 'brought', 'warmer', 'cloth', 'chilli', 'negat', 'thing', 'trip', 'amp', 'sun', 'connect', 'chilli'], ['piss'], ['listen', 'sweet', 'talk', 'cute', 'aim', 'consid', 'take', 'gameboy', 'color', 'miss', 'chiptun'], ['thank', 'none', 'close'], ['home', 'drink', 'alon'], ['jobo', 'tire', 'get', 'work'], ['dang', 'need', 'bed', 'bay', 'area', 'monday', 'tuesday', 'night', 'anyon', 'abl', 'help'], ['not', 'like', 'onlin', 'livebox', 'right', 'internet', 'dead'], ['bed', 'rest', 'weekend', 'next', 'week', 'neomonia', 'suck'], ['sigh', 'stay', 'late', 'role', 'assess', 'tire', 'eye', 'r', 'sting', 'amp', 'head', 'hurt', 'amp', 'still', 'need', 'word'], ['aau', 'thank', 'gi', 'realli', 'realli', 'love', 'realli', 'great', 'forgivem', 'leav', 'sometim'], ['sit', 'home', 'bore'], ['kimberle', 'hatch', 'miss'], ['unpleas', 'talk', 'look'], ['ouch', 'achi', 'sorri', 'not', 'mean', 'caus', 'pain'], ['note', 'twoloer', 'neva', 'stay', 'candlelight', 'suit', 'shower', 'slow', 'toilet', 'suck', 'bed', 'tini'], ['second', 'hit', 'repli', 'tweet', 'ask', 'stop', 'play', 'music', 'sad', 'someon', 'sing', 'key', 'work'], ['jealousi', 'not', 'get', 'life', 'ohh', 'myy'], ['net', 'die', 'yeah', 'sad'], ['hubbi', 'need', 'vacat', 'thank', 'god', 'leav', 'myrtl', 'beach', 'week'], ['tri', 'fix', 'realli', 'need', 'stop', 'cut'], ['ye', 'not', 'fare', 'x'], ['gut', 'not', 'play', 'kos', 'juli', 'jule'], ['someon', 'ignor', 'amp', 'mean'], ['love', 'wait', 'not'], ['not', 'even', 'tell', 'fuck', 'done', 'profession', 'fuckin', 'ass'], ['oop', 'meant', 'snowdayss'], ['forgot', 'word', 'start', 'cri', 'stop', 'sing', 'carri', 'cri', 'stop'], ['tummi', 'hurt'], ['went', 'galveston', 'want', 'go', 'back'], ['still', 'class', 'ouch'], ['ohh', 'ouch'], ['wrong', 'debbi'], ['disappoint', 'learn', 'newark', 'oh', 'cancel', 'juli', 'firework', 'due', 'economi'], ['hey', 'guy', 'sun', 'make', 'day', 'gloomi'], ['damnit', 'sorri', 'hear', 'dude'], ['call', 'know', 'stupid', 'ass', 'peopl'], ['go', 'panahra', 'dinner', 'miss', 'guy'], ['think', 'trick', 'ankl', 'cardio', 'yesterday', 'get', 'old'], ['not', 'understand', 'twitter'], ['yeah', 'silli', 'mistak', 'end', 'long', 'day', 'etc', 'etc', 'brand', 'new', 'plier'], ['drive', 'home', 'tire', 'bad', 'day'], ['hmm', 'mayb', 'time', 'realli', 'react', 'worst'], ['aw', 'gut'], ['hurt', 'breath'], ['pin', 'multi', 'core', 'cabl', 'goe', 'bad', 'servic'], ['belli', 'ach'], ['miss', 'ya', 'boyfriend', 'go', 'see', 'ya', 'br', 'tt', 'ny'], ['like', 'drew', 'said', 'quot', 'give', 'tc', 'chanc', 'quot', 'miss', 'thoma', 'move', 'watch'], ['think', 'lot', 'revis', 'tomorrow', 'woo', 'hope', 'sunni', 'one'], ['ohh', 'watch', 'best', 'friend', 'wed', 'sad'], ['not', 'need', 'hug', 'anymor'], ['imm', 'tire', 'callin', 'amp', 'amp', 'hearin', 'convo', 'wanaa', 'call', 'himm'], ['begin', 'think', 'sun', 'blcok', 'haox'], ['nope', 'not', 'yet', 'within', 'work', 'day', 'thursday', 'week', 'wednesday', 'hope'], ['everyon', 'seem', 'leav', 'weekend', 'bed'], ['miss', 'morn', 'work', 'bench', 'press', 'back', 'jakarta', 'goodluck', 'diga', 'test', 'easi', 'peasi', 'heheh'], ['everyon', 'eastcoast', 'rain', 'hate', 'us', 'let', 'us', 'fli', 'cali', 'lol'], ['yeah', 'know', 'stupid', 'job', 'mean', 'come'], ['tri', 'reason', 'not', 'listen'], ['last', 'night'], ['would', 'love', 'see', 'sun', 'rain', 'day'], ['go', 'much', 'bamboo', 'would', 'like', 'attempt', 'structur', 'sentenc', 'make', 'sens', 'fail', 'english', 'other', 'pass'], ['chandeli', 'serious', 'not', 'know', 'get', 'door', 'without', 'send', 'crash', 'step'], ['bad', 'time', 'everyon', 'whywhywhi', 'write', 'essay', 'fair'], ['ugh', 'sittin', 'work', 'wait', 'carpet', 'clean', 'suppos'], ['also', 'paracetamol', 'hard', 'swallow', 'even', 'long', 'one', 'snap', 'half', 'ow'], ['attempt', 'sync', 'facebook', 'twitter', 'seem', 'fail'], ['ahh', 'still', 'not', 'follow', 'think', 'forgot'], ['want', 'go', 'vintag', 'paper', 'show', 'one', 'accompani'], ['patio', 'weather', 'kirkland', 'also', 'weather', 'except', 'miss', 'boat', 'part'], ['today', 'last', 'day', 'high', 'school', 'end', 'go', 'home', 'sick', 'stupid', 'dead', 'rat'], ['make', 'peopl', 'unhappi', 'dun', 'like', 'unhappi'], ['wish', 'call', 'not', 'malta'], ['not', 'feel', 'good', 'not', 'miss', 'work', 'tomorrow'], ['not', 'realli', 'sure', 'need', 'deposit', 'save', 'money'], ['would', 'come', 'sick', 'inflam', 'vocal', 'cord'], ['awesom', 'pictur', 'happi', 'pint', 'not', 'send'], ['ouch', 'burnt', 'arm', 'grill'], ['wish', 'class', 'last', 'year'], ['william', 'shatner', 'version', 'rocket', 'man', 'head', 'day', 'fuck', 'distract'], ['hate', 'yell', 'sworn'], ['cross', 'ocean', 'citi', 'sad'], ['long', 'get', 'eyebrow', 'wax'], ['miss', 'yoou', 'poia'], ['wowzer', 'windi', 'not', 'good', 'allergi'], ['degre', 'crappi'], ['well', 'good', 'job', 'two', 'cousin', 'graduat', 'good', 'luck', 'life', 'lt', 'never', 'wear', 'pajama', 'pant', 'school', 'gt'], ['best', 'check', 'not', 'realli', 'see', 'anyth'], ['bore', 'fix', 'internet', 'dad', 'bore', 'death'], ['ohh', 'yeahh', 'prob', 'go', 'loner', 'start', 'thank', 'person', 'go', 'go', 'bitch'], ['outta', 'cours', 'til', 'monday', 'kind', 'bum', 'genuin', 'sick', 'nuthin', 'gt'], ['phone', 'die', 'die'], ['still', 'class', 'loader', 'even', 'custom', 'assembl', 'loader'], ['miss', 'yoou', 'poia'], ['hope', 'realli', 'need', 'one', 'see', 'unfortun', 'drama', 'alway', 'find'], ['sickk', 'need'], ['awesom', 'not', 'believ', 'poster', 'alreadi', 'not', 'seen', 'one', 'yet'], ['sound', 'like', 'worst', 'lurgi', 'ever', 'one', 'not', 'go', 'away', 'readi', 'action', 'yet'], ['know', 'stormi', 'outsid', 'hair', 'look', 'cute', 'today', 'hahah'], ['wat', 'nice', 'day', 'rachel', 'decid', 'walk', 'work', 'walk', 'back', 'warm', 'insid', 'though'], ['throat', 'hurt', 'today', 'blahh'], ['l', 'day', 'matt', 'fun', 'weekend'], ['glad', 'home', 'wish', 'could', 'make', 'feel', 'better'], ['crisi', 'avert', 'phew', 'differ', 'note', 'guy', 'make', 'proud', 'tear', 'wish', 'could', 'join'], ['ice', 'cream', 'crazi', 'mocha', 'ss', 'mean', 'espresso', 'milkshak'], ['hey', 'thought', 'ud', 'like', 'stress', 'realli', 'not', 'know', 'x'], ['fabul', 'not', 'get', 'pic', 'gmail', 'act', 'fool', 'sometim', 'dm'], ['noo', 'real', 'mushroom', 'neighbor', 'uproot'], ['not', 'wait', 'see', 'pls', 'come', 'back', 'iowa', 'not', 'theatr'], ['not', 'go', 'bed', 'yet'], ['notthebest', 'oh', 'right', 'sad'], ['puzzl', 'peopl', 'mood', 'swing', 'make', 'somewhat', 'sad', 'not', 'pinpoint', 'feel'], ['pandora', 'block', 'work', 'bum'], ['fall', 'nick'], ['bung', 'hate', 'cold'], ['nto', 'good'], ['unhook', 'twitter', 'facebook', 'facebook', 'croni', 'complain'], ['oh', 'hey', 'look', 'north', 'korea', 'go', 'kill', 'us', 'least', 'us'], ['either', 'inern', 'fuck', 'mind', 'pretti', 'sure', 'internet'], ['never', 'happen', 'orang', 'blinki', 'light', 'think', 'broke', 'batteri'], ['everyth', 'go', 'wrong', 'quot', 'happi', 'day', 'quot'], ['go', 'bed', 'not', 'take', 'longeerr', 'maan'], ['omg', 'haha', 'half', 'hour', 'late', 'work', 'whoop', 'hahaha', 'workin', 'sat', 'mornin'], ['unfortun'], ['belay', 'swimsuit', 'hot', 'tub', 'not', 'readi', 'weekend', 'sad'], ['bah', 'still', 'work', 'lol', 'feet', 'hurt', 'nose', 'not', 'stop', 'run'], ['not', 'evn', 'talk', 'huge', 'mistak', 'shoulda', 'listen', 'kno', 'disappoint'], ['feel', 'useless', 'not', 'know', 'right', 'bore'], ['ha', 'think', 'realli', 'lost', 'time', 'get', 'readi', 'work'], ['not', 'well', 'il', 'tri', 'night'], ['twitter', 'lame', 'not', 'post', 'twitpic', 'gucci'], ['sickk', 'get', 'hous', 'need', 'get', 'activ', 'go', 'celina', 'havin', 'parti', 'hit', 'uhpp'], ['ahh', 'suck'], ['yeah', 'made', 'great', 'nois', 'trip', 'hous', 'circuit', 'breaker', 'good', 'time', 'worth', 'part'], ['kenni', 'get', 'da', 'hair', 'bad', 'not', 'chillin', 'todat', 'kind', 'sad'], ['get', 'readi', 'see', 'cousin', 'graduat', 'go', 'miss'], ['jealous', 'not', 'know', 'abl', 'see', 'conan'], ['yes', 'not', 'follow'], ['jon', 'made', 'one', 'greatest', 'dinner', 'ever', 'roast', 'pork', 'tenderloin', 'bed', 'wild', 'rice', 'bed', 'mix', 'green', 'amp', 'yummi', 'sauc', 'wine'], ['trulli', 'aw', 'day', 'shitti'], ['bore'], ['get', 'readi', 'leav', 'girl', 'scout', 'not', 'feel', 'like'], ['arm', 'core', 'diet', 'would', 'eat', 'guess', 'wait', 'dinner', 'readi'], ['need', 'moni', 'school', 'expens'], ['miss', 'gone', 'whoolle', 'weekend', 'boo', 'hoo'], ['sick', 'fight', 'look', 'like', 'burlesqu'], ['gut', 'miss', 'one', 'night', 'tri', 'leav', 'earli', 'lol', 'friend', 'visitin', 'tire', 'haha'], ['followfriday', 'cuz', 'never', 'ad', 'anyon', 'followfriday', 'either', 'amp', 'cuz', 'got', 'cool', 'pictur'], ['dissappoint', 'past', 'day'], ['sorri', 'car', 'feel'], ['nick', 'wtf', 'go', 'go', 'ride', 'boo'], ['stupid', 'hand', 'flop', 'nut', 'low', 'top', 'pair', 'guy', 'also', 'low', 'flush', 'quarter'], ['feel', 'bit', 'lone'], ['sad', 'end', 'softbal', 'season'], ['deliveri', 'although', 'order', 'not', 'talk'], ['slowli', 'get', 'angri', 'jon', 'kate', 'plus', 'thing'], ['love', 'jazzercis', 'underwood', 'wish', 'chaperon'], ['oh', 'vote', 'not', 'worri', 'alreadi', 'vote', 'time', 'earlier', 'lt'], ['found', 'parent', 'put', 'dog', 'tomorrow', 'morn', 'upset'], ['sound', 'like', 'terrif', 'servic', 'sorri', 'hear', 'mom'], ['guy', 'said', 'want', 'spank'], ['honest', 'home', 'alon'], ['not', 'due', 'til', 'monday', 'freez'], ['got', 'fulli', 'deni', 'tonight', 'sleep', 'time', 'lnd', 'morn'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['gym', 'fun'], ['bad', 'life', 'gotten', 'werecount', 'raffl', 'answer', 'real', 'bad'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['omg', 'want', 'go', 'hahaha'], ['fun', 'without', 'pasti', 'lt'], ['wish', 'naptim'], ['mad', 'rain', 'got', 'not', 'go', 'see', 'jaiden'], ['miss', 'newest', 'version', 'glade', 'debian'], ['boredom', 'not', 'somebodi', 'hang', 'tonit'], ['seagul', 'hate', 'utter', 'depress', 'miss'], ['gloomi', 'hell', 'outsid', 'today'], ['not', 'know', 'not', 'shit'], ['yeah', 'late', 'lol'], ['wish', 'work'], ['apper', 'ea', 'know', 'copi', 'sim', 'not', 'legit', 'upset'], ['bore', 'could', 'not', 'go'], ['chris', 'sab', 'comm', 'esta', 'bitch'], ['oh', 'man', 'suck', 'sorri', 'doll'], ['first', 'impress', 'consider', 'slower', 'boot'], ['sad', 'last', 'entranc', 'academi', 'scienc', 'zipcod', 'free', 'day'], ['hole', 'twitter', 'thing', 'new', 'not', 'let', 'chang', 'pictur', 'stuvk', 'wee', 'stpid', 'thing'], ['much', 'summer', 'hope', 'come', 'favor', 'noth', 'cancel', 'work', 'hard'], ['sorri', 'bad'], ['love', 'sausag', 'kitchenfir'], ['know', 'know'], ['wonder', 'anyon', 'would', 'care', 'die', 'tomorrow'], ['argh', 'noo', 'miss', 'killer', 'wossi', 'suck', 'miss', 'brandon', 'total', 'failur', 'anyon', 'know', 'repeat', 'must', 'investig'], ['best', 'mate', 'found', 'move', 'not', 'understand', 'want', 'someth', 'life', 'leav', 'go', 'uni'], ['omg', 'yes', 'get', 'readi', 'work', 'earli', 'tonight', 'payrol', 'distribut', 'duti'], ['still', 'sick', 'think', 'name', 'puppi', 'june'], ['would', 'lot', 'easier', 'get', 'plane', 'ticket', 'az', 'not', 'rais', 'price'], ['ah', 'bad', 'time', 'hate', 'exam', 'feel', 'unprepar', 'time', 'well', 'suck', 'haha'], ['blackberri', 'soon', 'approach', 'death'], ['headach', 'killen'], ['bore', 'go', 'go', 'carniv', 'get', 'day', 'pass', 'tomorrow', 'excit', 'bore', 'today'], ['miss', 'bbi', 'wish', 'go', 'tomorrow', 'make', 'good'], ['hope', 'enjoy', 'back', 'feel', 'much', 'better', 'god', 'bed', 'night'], ['think', 'disgust'], ['tri', 'upload', 'custom', 'background', 'not', 'work'], ['wish', 'right'], ['dress', 'go'], ['homework', 'friday'], ['sorri'], ['found', 'quot', 'friend', 'quot', 'not', 'actual', 'hey', 'shit', 'happen'], ['see', 'gf', 'day', 'row', 'hour', 'day', 'wish', 'locat', 'not', 'hospit'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['miss', 'mrs', 'mcfox'], ['yeah', 'done', 'work', 'weekend', 'soo', 'bum'], ['softwar', 'use', 'design', 'site', 'cs', 'student', 'current', 'hard', 'code', 'everyth', 'not', 'fastest', 'way'], ['broken', 'fb', 'wed', 'sad', 'longer', 'excus', 'get', 'hauntingxealot', 'goulburn'], ['like', 'like', 'cause', 'babysit', 'haha', 'call', 'cause', 'kind', 'bore', 'right'], ['bore', 'noth'], ['think', 'get', 'sick'], ['tri', 'fix', 'internet', 'answer', 'not', 'studi', 'distract', 'ugh'], ['mean'], ['hope', 'everyth', 'ok', 'burr', 'fix'], ['bad', 'experi'], ['phone', 'die'], ['not', 'want', 'ugli', 'anymor'], ['last', 'day', 'school', 'last', 'concert', 'life', 'wow', 'say', 'emot', 'realli', 'go', 'miss', 'mhs', 'graduat', 'practic', 'today'], ['pain', 'shit'], ['great', 'project', 'wish', 'could', 'done', 'old'], ['phone', 'dead', 'suck'], ['oh', 'hear'], ['kind', 'tri', 'make', 'sure', 'everyth', 'yet', 'still', 'look', 'not', 'home', 'yet'], ['miss', 'citi', 'pollut', 'panhandl'], ['oh', 'sound', 'girl'], ['hve', 'blister', 'pinki', 'nd', 'hurt', 'soo', 'much'], ['twitter', 'stop', 'dick', 'let', 'chang', 'background', 'imag', 'imagin', 'shini', 'nhl', 'ring', 'background'], ['like', 'song', 'not', 'say', 'one', 'guy', 'love', 'ya'], ['late', 'alreadi', 'bus', 'goin', 'home', 'talkin', 'drinkin', 'tea'], ['yes', 'yes', 'inde', 'nut', 'like', 'though', 'not', 'rich', 'tut', 'x'], ['stupid', 'storm', 'river', 'us', 'tonight'], ['not', 'mad', 'pleas', 'dog', 'eye'], ['hate'], ['loan', 'set', 'aerobar', 'team', 'mate', 'tomorrow', 'texa', 'cup', 'race', 'alkek', 'bum', 'not'], ['hate', 'dryer'], ['mani', 'good', 'show', 'come', 'money', 'buy', 'ticket', 'fmfl', 'brand', 'new', 'troub'], ['oh', 'look', 'new', 'hous', 'santa', 'barbara', 'hahha', 'wish'], ['like', 'weird'], ['oh', 'fair', 'hour'], ['said', 'hi', 'doubl', 'take', 'amp', 'left', 'damn', 'let', 'look', 'around', 'first'], ['day', 'jus', 'keep', 'get', 'better', 'better', 'fml'], ['fuck', 'hate', 'goodby'], ['prayin', 'dad', 'wellington', 'fl', 'via', 'live', 'welli', 'may', 'pray', 'f'], ['phone', 'die', 'ttfn'], ['hahah', 'best', 'thank', 'god', 'terri', 'laugh', 'hard', 'miss', 'rememb', 'race', 'truck'], ['know', 'lame'], ['unanticip', 'thunderstorm', 'quash', 'camp', 'trip'], ['miss', 'play'], ['got', 'mark', 'bcit', 'death', 'swear'], ['hate', 'say', 'cla', 'realli', 'press', 'confer', 'someth', 'today'], ['hope', 'come'], ['head', 'hurt'], ['whatev', 'give', 'phone', 'die', 'anyway', 'next', 'time'], ['sorri', 'fail', 'grasp', 'mean'], ['got', 'home', 'work', 'not', 'look', 'forward', 'tomorrow', 'morn', 'oh', 'tomorrow', 'night', 'great'], ['oy', 'writin', 'cuz', 'followin', 'mean', 'lik', 'account', 'delet', 'due', 'quot', 'strang', 'activ', 'quot'], ['feel', 'sick', 'hmph'], ['oh', 'forgot', 'weigh', 'highest', 'weight', 'ever'], ['baffl', 'much', 'radio', 'shack', 'not', 'radio', 'shack', 'grew'], ['doubt', 'get', 'one', 'honest'], ['gross', 'haha', 'like', 'tiniest', 'piec', 'ever', 'tast', 'like', 'ate', 'whole', 'onion', 'eww'], ['realli', 'nervous', 'give', 'speech', 'wed', 'tomorrow'], ['wish', 'come', 'guess', 'make', 'time', 'though'], ['today', 'horribl', 'silly', 'caus', 'whole', 'lot', 'stress', 'head', 'ach', 'end', 'ruin', 'beauti', 'sunni', 'day'], ['ahh', 'omg', 'pridelin', 'got', 'talent', 'give', 'headach', 'wtf', 'omg', 'osn', 'make', 'stop', 'mommi', 'make', 'stop'], ['peel', 'much', 'feel', 'bad'], ['wake', 'got', 'flu'], ['thank', 'yoou', 'might', 'get', 'seen', 'hm', 'xx'], ['thought', 'like', 'realli', 'hot', 'room', 'hot', 'sleep'], ['omg', 'realli', 'sowwi', 'tire', 'morn', 'lol'], ['yea', 'thank', 'link'], ['home', 'alon', 'friday', 'night', 'not', 'get', 'sadder', 'folk'], ['day', 'left', 'school', 'bryce', 'tyler', 'day', 'elementari'], ['ew', 'traffic'], ['got', 'wrong', 'size', 'coat', 'sheep'], ['realli', 'want', 'go', 'see', 'haha', 'cute'], ['aww', 'hey', 'not', 'know', 'lol', 'sick', 'outti'], ['realli', 'wish', 'could', 'make', 'hr', 'drive', 'not', 'go', 'happen', 'weekend'], ['miss', 'tim'], ['ok', 'son', 'bath', 'go', 'see', 'find', 'quick', 'quot', 'go', 'miss', 'ya', 'weekend', 'alreadi', 'gettin', 'sad'], ['left', 'ipod', 'car', 'warm'], ['miss', 'rollerblad', 'shorelin'], ['bummer'], ['not', 'much', 'weekend', 'knox', 'short', 'amp', 'definit', 'must', 'get', 'garden', 'wee', 'bit', 'neglect'], ['think', 'may', 'ruin', 'friendship', 'week', 'get', 'carri', 'away'], ['miss', 'shotgun', 'match', 'guilt', 'go', 'store', 'wife'], ['think', 'home', 'want', 'next', 'week', 'work', 'book', 'forseeabl'], ['guess', 'ill', 'never', 'sad', 'thing', 'not', 'put', 'altern', 'not', 'rememb', 'secret'], ['girl', 'buy', 'amp', 'post', 'pressi', 'tomorrow', 'fuck', 'clue', 'get', 'sorri', 'hate'], ['soo', 'bore', 'fuckin', 'got', 'new', 'phone', 'call', 'man', 'hes', 'busi', 'one', 'els', 'bore'], ['sorri', 'not', 'singl', 'women', 'think'], ['drive', 'crazi', 'miss', 'big', 'blue', 'select', 'tweet', 'highlight', 'not', 'tell', 'tweet', 'select', 'anymor'], ['hate'], ['not', 'want', 'singl', 'rest', 'life'], ['bore', 'not', 'go', 'habbo', 'stupid', 'ban'], ['fought', 'jere', 'death', 'avoid', 'wet', 'willi', 'got', 'anyway', 'q', 'come', 'bike', 'ride'], ['without', 'whip', 'top', 'shortcak', 'shortcakefail'], ['aww', 'made', 'realiz', 'take', 'bulletin', 'board', 'mani', 'memori'], ['feel', 'sinus', 'headach', 'brew', 'not', 'take', 'drug'], ['goodnight', 'ipod', 'still', 'found', 'old', 'see', 'long', 'hold', 'xx'], ['work', 'ugghh', 'someon', 'save'], ['not', 'want', 'miss', 'laker', 'game', 'tonight', 'sad'], ['wish', 'live', 'closer', 'girl', 'tryna', 'chill', 'friday', 'night', 'next', 'weekeend', 'drink', 'day', 'night'], ['thank', 'tri'], ['feel', 'sick'], ['stupid', 'playstat', 'stupid', 'control', 'not', 'work', 'not', 'play', 'kingdom', 'heart'], ['go', 'shower', 'ffaf', 'fuck', 'distraact'], ['would', 'thought', 'wallac', 'amp', 'gromit', 'team', 'behind', 'monkey', 'island', 'could', 'combin', 'disastr'], ['ugh', 'blister', 'big', 'toe', 'leg', 'shoulder', 'raw', 'shit', 'life', 'suck', 'right'], ['trader', 'joe', 'quot', 'sushi', 'quot', 'fail'], ['hey', 'chick', 'alryt', 'dad', 'tmoro', 'sud', 'sumin', 'aen', 'like', 'last', 'week', 'neva', 'dun', 'oot', 'week', 'lol', 'miss', 'ha', 'bye', 'hun', 'xx'], ['hous', 'sad', 'look', 'without', 'furnitur', 'air', 'mattress', 'night', 'offici', 'move', 'knoxvill'], ['bore', 'mind', 'lol'], ['call', 'kris', 'not', 'pick', 'feel', 'realli', 'bad', 'ha', 'ha'], ['long', 'sinc', 'talk', 'let', 'alon', 'seen', 'make', 'sad'], ['miss', 'voic'], ['sad', 'littl', 'sad', 'last', 'day', 'school', 'readi', 'done', 'say', 'goodby', 'hard'], ['guess', 'relax', 'dinner', 'movi', 'look', 'forward', 'day', 'work'], ['realli', 'cri', 'shame'], ['hangov', 'movi', 'go', 'hilari', 'wish', 'could', 'see', 'crew'], ['oh', 'realli', 'alreadi', 'put', 'pic', 'sorri'], ['well', 'slack', 'earn', 'c', 'least', 'everyth', 'els', 'b', 'next', 'school', 'year', 'b', 'esh'], ['wait', 'go', 'movi', 'later', 'month', 'boor'], ['go', 'secur', 'alreadi', 'miss', 'babi'], ['ugh', 'report', 'monday'], ['ok', 'fuckin', 'hungri', 'fat', 'know', 'aha'], ['not', 'hunt', 'middl', 'make', 'work', 'got', 'eras', 'sri', 'guy', 'look', 'like', 'idiot', 'repli'], ['ok', 'got', 'bit', 'bad', 'back', 'lift', 'drum', 'hardwar', 'car', 'downer'], ['tri', 'follow', 'one', 'ff', 'recommend', 'quot', 'block', 'follow', 'request', 'user', 'quot'], ['sister', 'fuck', 'pc', 'blu', 'screen'], ['good', 'luck', 'footag', 'none', 'station', 'break', 'live'], ['keep', 'tri', 'get', 'not'], ['love', 'adriana'], ['wrote', 'anoth', 'song', 'ran', 'idea', 'one', 'bit', 'crap'], ['not', 'know', 'stupid', 'grader'], ['toldd', 'thunder', 'ew', 'raini', 'scare'], ['bah', 'cowork', 'ran', 'work', 'late', 'bag', 'smack', 'knee', 'realli', 'hurt'], ['unfortun', 'us', 'look', 'like', 'funni', 'peopl', 'twitter', 'move', 'fb', 'start'], ['beastypop', 'tire', 'wish', 'tablet', 'make', 'want', 'throw'], ['crap', 'alway', 'forget'], ['made', 'decis', 'stick', 'although', 'realli', 'not', 'sure', 'right', 'one'], ['bracelet', 'broke', 'today'], ['go', 'sleep', 'wake', 'decemb', 'hous', 'organ', 'babi', 'feel', 'like', 'poo', 'today'], ['ther', 'not', 'mani', 'peol', 'tweet', 'tonight', 'well', 'suppos', 'normal', 'person', 'partyin', 'skint'], ['internet', 'big', 'fail', 'today', 'not', 'twitter', 'usual', 'self', 'facebook', 'boo'], ['look', 'coal', 'harbour', 'not', 'find'], ['noo', 'poor', 'cat', 'want', 'cuddl', 'food', 'hard', 'tell'], ['car', 'alarm', 'amp', 'immobilis', 'make', 'incred', 'complic', 'cost', 'key', 'code', 'neither', 'immobilis'], ['idea', 'mean', 'bb'], ['ugh', 'back', 'kill'], ['quot', 'true', 'theatr', 'call', 'music', 'theatr', 'actor', 'quot', 'wish', 'xx'], ['great', 'cloud', 'realli', 'realli', 'dark', 'grey', 'right', 'outsid', 'offic', 'window', 'sure', 'lotta', 'precip'], ['wish', 'chicago'], ['left', 'amp', 'alreadi', 'miss', 'nashvill', 'back', 'sunday'], ['poor', 'littl', 'woman', 'smush', 'head'], ['increas', 'convinc', 'moder', 'given', 'deep', 'abid', 'love', 'chees', 'total', 'suck'], ['think', 'lost', 'blog', 'post'], ['realli', 'desappoint'], ['bore', 'tear', 'without', 'boy', 'dad', 'week'], ['go', 'soo', 'busi', 'today', 'not', 'funni', 'hate', 'busi', 'day'], ['waayi', 'hot'], ['ahh', 'member', 'toaster', 'play', 'void', 'union', 'sick', 'miss', 'union'], ['point', 'go', 'left', 'tommi', 'prize'], ['sick', 'sad', 'miss', 'martini', 'loung', 'tonight'], ['not', 'groom', 'think', 'die', 'old', 'maid', 'lol'], ['aww', 'feel', 'bad', 'not', 'know', 'nicol', 'citi', 'look', 'probabl', 'worri', 'srri', 'hun'], ['dear', 'rain', 'suck', 'got', 'chang', 'plan', 'tonight'], ['sunburnt'], ['big', 'moan', 'dave', 'leyrock', 'piti', 'coloursfest', 'ahoy', 'xo'], ['miss'], ['sad', 'wish', 'go'], ['hour', 'later', 'hav', 'new', 'telecom', 'phone', 'dosent', 'work', 'stupid', 'telecom'], ['sorri', 'hear', 'dog'], ['not', 'beat', 'time', 'low', 'soo', 'want', 'go', 'metro', 'station', 'cheap', 'shot', 'not', 'abl', 'break', 'bone'], ['start', 'throw', 'us', 'traffic', 'crazi'], ['worst', 'day', 'ever', 'told', 'chav'], ['bed', 'two', 'day', 'migrain'], ['go', 'see', 'puppi', 'not', 'want', 'alon'], ['much', 'light', 'pollut', 'see', 'star'], ['realli', 'miss', 'satan', 'kitti'], ['read', 'mom', 'hope', 'okay'], ['clean', 'follow', 'list', 'block', 'porn', 'girl', 'amp', 'crap', 'look', 'like', 'spammer'], ['not', 'friend', 'anyon', 'anymor'], ['bear', 'beet', 'shit', 'never', 'mind', 'wasabi', 'vodka', 'ginger', 'ale', 'lime'], ['hate', 'stupid', 'boy', 'arrgh'], ['omg', 'great', 'day', 'today', 'went', 'art', 'thingi', 'noe', 'realli', 'want', 'zune', 'hd', 'bed', 'part', 'rain', 'come', 'mister', 'sun'], ['hate', 'much'], ['oh', 'vote', 'not', 'worri', 'alreadi', 'vote', 'time', 'earlier'], ['run', 'today', 'let', 'slight', 'ach', 'bad', 'excus', 'make', 'tomorrow', 'go'], ['got', 'mad', 'cramp', 'leg'], ['aw', 'one', 'fishi', 'die'], ['damn', 'shame', 'bodi', 'wast'], ['puppi', 'sick'], ['not', 'think', 'text', 'read', 'lol', 'figur', 'html'], ['like', 'ogberri'], ['hey', 'mitchel', 'live', 'not', 'get', 'chanc', 'call'], ['milkshak', 'hot', 'day', 'unsettl', 'stomach'], ['miss', 'sad', 'not', 'get', 'meet'], ['hope', 'one', 'day', 'abl', 'go', 'date', 'year', 'old', 'boyfriend', 'without', 'parent'], ['dark', 'knight', 'dvd', 'miss', 'piss'], ['sorri', 'delay', 'publish', 'week', 'show', 'technic', 'difficulti', 'encod', 'soon', 'possibl', 'may', 'saturday'], ['wish', 'cali', 'wit', 'mari', 'nd', 'lupita', 'see', 'vfc', 'not', 'fair'], ['june', 'go', 'long', 'lone', 'month'], ['aww', 'miss', 'usa'], ['feel', 'like', 'dream', 'got', 'crush'], ['hungri', 'thirsti', 'afraid', 'go', 'downstair'], ['kept', 'call', 'call', 'never', 'got'], ['yaay', 'suppos', 'go', 'miss'], ['farmer', 'sunburn', 'ahh'], ['hate', 'not', 'get', 'go', 'stuff', 'toe', 'long', 'stori', 'calpol', 'cold', 'soo', 'night', 'xx'], ['home', 'amp', 'myka', 'meann'], ['grri', 'want', 'come', 'kiss', 'justic'], ['tri', 'get', 'sleep', 'mum', 'blare', 'les', 'mis', 'realli', 'loud', 'sit', 'room'], ['absolut', 'gut', 'not', 'go', 'badu', 'tonight', 'guy', 'fun', 'got', 'home', 'need', 'head', 'downtown', 'gd', 'heat'], ['wow', 'month', 'sinc', 'twitter', 'suppos', 'go', 'see', 'maat', 'pa', 'jame', 'sleepin'], ['go', 'mad', 'hungri', 'get', 'home', 'forgot', 'money'], ['amp', 'cheat', 'system', 'green', 'day', 'ticket', 'damn', 'amp'], ['gloomi', 'outsid', 'make', 'sad', 'miss', 'sun', 'happi'], ['wish', 'abl', 'talk'], ['ohh', 'noo', 'joshua', 'soo', 'sorri', 'realli', 'sorri', 'not', 'get', 'see', 'pleas', 'forgiv', 'sorri', 'lt'], ['sorri', 'day', 'not', 'good', 'make', 'feel', 'better', 'know', 'beat', 'oprah', 'ms', 'twitterworld'], ['yes', 'herr', 'dude', 'go', 'fuck', 'cri'], ['oh', 'yah', 'dad', 'not', 'landlin'], ['best', 'friend', 'away', 'special', 'olymp', 'said', 'go', 'bring'], ['moment', 'silenc', 'budget', 'bout', 'b', 'spend', 'wayi', 'much', 'omg', 'budget'], ['fair'], ['sad', 'miss', 'call', 'time', 'got', 'home', 'practic', 'late'], ['go', 'home', 'enjoy', 'left', 'day', 'not', 'believ', 'quick', 'week', 'flew', 'time', 'tweet'], ['darn', 'crave', 'wed', 'cake', 'crave', 'hard', 'satisfi', 'anyth', 'els'], ['heyheyheyheyehyeyi', 'noo', 'tokio', 'hotel', 'tshirt', 'friad', 'omg', 'shame'], ['hey', 'gerardo', 'late', 'respons', 'day', 'talk', 'bout', 'forgiv', 'brother', 'givin', 'wrong', 'direct', 'got', 'way', 'upset'], ['oh', 'today', 'jay', 'leno', 'last', 'show', 'miss', 'leno'], ['head', 'hurt', 'air', 'freshner', 'horriblel', 'scent', 'ever', 'super', 'gross'], ['sorri', 'weekend', 'start', 'hour', 'ago'], ['realli', 'gutwrench', 'sad'], ['visit', 'famili', 'hospit', 'not', 'fun'], ['suck', 'playmat', 'mia', 'weekend', 'sad'], ['ador'], ['yeah', 'everyth', 'becom', 'difficult', 'generalis', 'break', 'not', 'easi', 'problem'], ['get', 'esplain', 'awhil', 'ago'], ['not', 'work', 'except', 'use', 'word', 'autofollow', 'got', 'follow', 'bot', 'sell', 'autofollow', 'program'], ['troubl', 'breath', 'damn', 'fever', 'lt', 'gt'], ['power', 'outag', 'door', 'freezer', 'prop', 'open', 'ice', 'cream', 'make', 'slippi', 'floor'], ['nose', 'chap', 'yuck'], ['aww', 'guess', 'not', 'mani', 'peopl', 'onlin', 'though'], ['well', 'phone', 'today', 'wait', 'till', 'june', 'get', 'better', 'deal', 'soo', 'good'], ['hahahaha', 'watch', 'miss', 'ocean'], ['thank'], ['not', 'worri', 'hate', 'nobodi', 'comment', 'pic'], ['kill', 'sick', 'n', 'friday', 'night'], ['tummi', 'hurt'], ['wish', 'gave', 'one', 'last', 'kiss'], ['love', 'much', 'call', 'talk', 'fan', 'love', 'lot', 'mitchel', 'see', 'el', 'cajon', 'june'], ['noth', 'boo', 'total', 'bore'], ['jealous', 'suppos', 'go', 'see', 'seattl', 'friend', 'summer', 'bail', 'work'], ['cool', 'actual', 'believ', 'begun', 'jail', 'sentenc', 'arkansa'], ['would', 'plain', 'go', 'crazi'], ['okay', 'final', 'get', 'meet', 'dia', 'name', 'right', 'oh', 'geez', 'feel', 'stupid', 'not'], ['yeah', 'behind', 'classic', 'cinema', 'not', 'time', 'go', 'see', 'anyway'], ['appeal', 'fact', 'would', 'hop', 'pretti', 'quick', 'not', 'want', 'impos', 'sacr', 'birthday', 'hun', 'friend'], ['stupid', 'wireless'], ['start', 'get', 'annoy', 'socialscop', 'need', 'updat'], ['tip', 'finger', 'hurt', 'lmao'], ['tummi', 'kind', 'hurt'], ['feel', 'extrem', 'depress', 'right'], ['ugh', 'tire'], ['aww', 'not', 'wait', 'back', 'la', 'lt'], ['omg', 'twin', 'sister', 'fav', 'song'], ['gari', 'tri', 'ommegang', 'chocol', 'indulg', 'chocol', 'indulg', 'metal', 'best'], ['goin', 'hun', 'worri'], ['twitter', 'happi', 'score', 'think', 'drop', 'point', 'sinc', 'yesterday'], ['poor', 'johnni', 'sick', 'look', 'like', 'go', 'vet', 'tomorrow'], ['last', 'day', 'school', 'sad'], ['reason', 'corona', 'light', 'tast', 'much', 'better', 'alon'], ['headach'], ['nurs', 'sick', 'guniea', 'pig', 'back', 'health', 'cat', 'jealous'], ['dream', 'not', 'like', 'ladi'], ['realli', 'big', 'spider', 'floor', 'two', 'metr', 'away', 'actual', 'littl', 'scare'], ['hate', 'dream', 'awesom', 'parti', 'wake', 'home', 'jager', 'parti'], ['anybodi', 'els', 'experienc', 'pain', 'slowdown', 'facebook'], ['oh', 'must', 'gettin', 'old', 'mom', 'use', 'watch', 'miss'], ['got', 'show', 'monday', 'hope', 'head', 'better'], ['hang', 'fone', 'get', 'hot'], ['okay', 'feel', 'realli', 'sick'], ['learn', 'hard', 'way', 'firewir', 'not', 'backward', 'compat', 'firewir'], ['end', 'face', 'face', 'bear', 'drive', 'home', 'even', 'sad', 'took', 'wood', 'haul', 'cameraphon'], ['came', 'cold', 'chees', 'sauc', 'good', 'though'], ['miss', 'dooddiie'], ['regret', 'not', 'go', 'movi', 'audit', 'today', 'seem', 'like', 'neighbor', 'go', 'get', 'call', 'back'], ['lucki', 'rain', 'citi', 'today', 'enjoy'], ['omg', 'srri', 'hear'], ['hi', 'sweetiepi', 'friday', 'night', 'miss', 'sidekick', 'amp', 'slipper', 'not', 'friday', 'night'], ['fuudge', 'burn', 'finger', 'oil', 'hurt'], ['lol', 'know', 'fall', 'asleep', 'get', 'bore', 'shaun', 'p', 'joke'], ['dumb', 'keep', 'lose', 'follow'], ['bore', 'homework', 'done', 'master', 'program', 'friday', 'nite', 'wit', 'nutin'], ['suck'], ['big', 'sis', 'move', 'gna', 'b', 'weird', 'without', 'x'], ['acsvxdcbgfn', 'soccer', 'shall', 'see', 'young', 'phoeb', 'not', 'want', 'dress', 'though'], ['jordan', 'babi', 'talk', 'wish', 'coulda', 'met', 'ugh'], ['not', 'believ', 'preseason', 'not', 'start', 'august', 'footbal', 'drawl'], ['oh', 'push', 'gqmf', 'trend', 'tonight', 'awesom', 'woefulli', 'behind', 'read'], ['sorri', 'suck', 'bad', 'way', 'p'], ['want', 'die', 'want', 'take', 'life', 'forev', 'tri', 'get', 'duet'], ['ugh', 'las', 'vega', 'airport', 'quot', 'ground', 'stop', 'quot', 'mean', 'stuck', 'plane', 'tarmac', 'lax'], ['sister', 'rip', 'heart', 'outta', 'myy', 'fukkn', 'chest', 'super', 'hurt', 'right', 'ever', 'need', 'life'], ['aleesha', 'piggi', 'die', 'not', 'catch', 'fuck', 'break', 'man'], ['well', 'sacramento', 'hope', 'appreci', 'rivkah', 'sass', 'amp', 'treat', 'well', 'sit', 'omaha', 'pout'], ['realli', 'need', 'mind', 'busi', 'eat', 'disord', 'not', 'reason', 'peopl', 'vomit', 'asshol'], ['left', 'phone', 'home', 'not', 'get', 'back', 'till', 'not', 'call'], ['realize', 'today', 'made', 'sad', 'least', 'heal', 'begin'], ['um', 'not', 'write', 'smut', 'tonight', 'like', 'smut', 'want', 'write', 'smut', 'yet', 'noth', 'smut'], ['get', 'better', 'omg', 'still', 'not', 'believ', 'pictur', 'soo', 'sad', 'not', 'go', 'see'], ['goddamn', 'bloodi', 'stress', 'shit', 'send', 'bodi', 'haywir'], ['two', 'month', 'ago', 'becam', 'worthless'], ['exam', 'yuck', 'hectic'], ['hug', 'sorri', 'feel', 'sad', 'e'], ['unfortun', 'yes'], ['would', 'know', 'not', 'tell', 'busi', 'cakin', 'pay', 'attent'], ['chang', 'num', 'not', 'give', 'good', 'dude'], ['cute', 'pic', 'girl', 'vibrant', 'not', 'get', 'anyth', 'cpeven', 'close'], ['knoww', 'yur', 'mother', 'bitch', 'not', 'want', 'take', 'movi', 'bitch'], ['aww', 'noo', 'not', 'sound', 'great'], ['shiit', 'advanc', 'databas', 'hour', 'minut', 'fail'], ['maan', 'pain', 'would', 'come', 'want', 'come', 'eat', 'lol', 'roll', 'eye'], ['order', 'new', 'blackberri', 'arriv', 'tue', 'may', 'die', 'without', 'phone', 'withdraw', 'alreadi'], ['iphon', 'quot', 'not', 'open', 'download', 'app', 'quot', 'thing', 'forgot', 'cord', 'home'], ['peopl', 'not', 'appreci', 'natur', 'sad', 'lil', 'dude', 'surviv'], ['damn'], ['think', 'get', 'state', 'probabl', 'still', 'tour', 'not', 'dammit'], ['iphon', 'quot', 'not', 'open', 'download', 'app', 'quot', 'thing', 'forgot', 'cord', 'home'], ['miss', 'soccer', 'mom'], ['poop', 'shirt', 'insan', 'crack', 'screen', 'iphon', 'daang'], ['oh', 'antiboyl', 'not', 'work', 'either', 'never', 'much', 'bad', 'thing', 'eh', 'uk', 'eh'], ['sick', 'fell', 'last', 'night', 'outsid', 'coz', 'put', 'someth', 'bin'], ['littl', 'irk', 'moment'], ['need', 'one'], ['yum', 'home', 'deliveri'], ['fight', 'feel', 'sick', 'hope', 'tire', 'realli', 'not', 'feel', 'well', 'though'], ['greenvill', 'drive', 'game', 'not', 'without', 'quot', 'basebal', 'guy', 'quot', 'clown'], ['aww', 'tummi', 'ach'], ['sad', 'hollyoak'], ['drive', 'past', 'tatter', 'cover', 'stop', 'promis', 'make', 'time', 'next', 'week'], ['sick', 'fell', 'last', 'night', 'outsid', 'coz', 'put', 'someth', 'bin'], ['nope', 'one', 'realli', 'good', 'cuban', 'place', 'ask'], ['day', 'left', 'freedom', 'realli', 'want', 'get', 'weekend', 'hate', 'essay'], ['exhaust', 'hour', 'work', 'week'], ['drive', 'home', 'trade', 'car', 'hope', 'make'], ['bad', 'news', 'go', 'take', 'dog', 'walk', 'upset'], ['drat', 'land', 'boot', 'die', 'think', 'boot', 'like', 'one', 'go', 'seed', 'first', 'season'], ['sad', 'cancel', 'silverston', 'show', 'better', 'see', 'sandown', 'park'], ['like', 'kiss', 'night', 'not', 'evict', 'bad', 'edit'], ['miss', 'work', 'peep'], ['finish', 'read', 'twilight', 'thought', 'love', 'realli', 'want', 'read', 'next', 'one'], ['think', 'get', 'state', 'probabl', 'still', 'tour', 'not', 'home', 'dammit'], ['not', 'feel', 'well'], ['poor', 'lost', 'duck', 'outsid', 'oliv', 'garden', 'make', 'sad'], ['go', 'watch', 'bgt', 'bad', 'time'], ['hot', 'thermomet', 'show', 'moment'], ['month', 'end', 'still', 'stuck', 'offic', 'wait', 'straggler', 'get', 'togeth'], ['ugh', 'work', 'suck', 'could', 'sher', 'right'], ['feel', 'pretti', 'tire', 'lone'], ['weak', 'facebook', 'fail'], ['panda', 'express', 'long', 'miss'], ['took', 'guy', 'think', 'bluff', 'three', 'time', 'row', 'get', 'away', 'back', 'show', 'shit', 'work'], ['leather', 'thing'], ['damn', 'brah', 'not', 'happi'], ['noo', 'parrent', 'found', 'stash'], ['ugh', 'migrain'], ['not', 'get', 'go', 'wakeboard', 'good', 'lush', 'night'], ['cower', 'pain'], ['person', 'stood', 'world', 'full', 'spineless', 'cunt', 'make', 'sad'], ['tri', 'swat', 'fli', 'buddhist', 'magazin', 'bad', 'karma'], ['omg', 'hair', 'salon', 'tear', 'hope', 'get', 'soon', 'watch', 'real', 'hous', 'wive', 'nyc'], ['hm', 'happi', 'want', 'join', 'drama', 'practic', 'today'], ['thank', 'found', 'articl', 'say', 'not', 'join', 'uk', 'though'], ['chanc', 'might', 'come', 'back', 'moncton', 'miss', 'show', 'tonight'], ['gosh', 'need', 'rude'], ['not', 'feel', 'good'], ['absolut', 'jealous', 'hell', 'brenda'], ['whaat', 'hous', 'work', 'hard'], ['feel', 'sad', 'elizabeth'], ['wish', 'area', 'offer', 'chines', 'food', 'deliveri'], ['sad', 'day', 'christian', 'lacroix', 'file', 'bankruptci'], ['feel', 'f', 'cked', 'feet', 'ach', 'need', 'beedd'], ['dose', 'want', 'go', 'work', 'tomorrow'], ['everyth', 'weep'], ['mobil', 'not', 'let', 'not', 'stop', 'think', 'x'], ['tomorrow', 'good', 'appar', 'movi'], ['adventur', 'time'], ['ahh', 'needa', 'hurri', 'shower', 'quot', 'huge', 'quot', 'storm', 'hit'], ['could', 'not', 'call', 'time', 'phone', 'would', 'run', 'give', 'shoutout', 'happi'], ['listen', 'darren', 'hay', 'spin', 'talkin', 'wacki', 'friend', 'go', 'insan', 'not', 'tire', 'mess', 'bout', 'thing'], ['fml', 'step', 'needl', 'ouch', 'waa', 'damn', 'dryclean'], ['wish', 'love', 'come', 'home'], ['muscl', 'back', 'cramp', 'hurt', 'bad', 'oww'], ['sore', 'weight', 'lift', 'howev', 'good', 'kind', 'sore', 'give', 'move', 'power', 'mind', 'alon'], ['fault', 'leav', 'outsid', 'locker', 'swim', 'usf', 'koret', 'oh', 'would', 'want', 'take'], ['wonder', 'hard', 'concentr'], ['uggh', 'everyth', 'send', 'keep', 'send', 'twitter', 'forward', 'suck', 'life'], ['sad', 'not', 'follow', 'updat', 'amp', 'not', 'use', 'twitter', 'sinc', 'may', 'want', 'name'], ['ride', 'daddi', 'bike', 'yes', 'man', 'bike', 'conveni', 'not', 'dark', 'without', 'glass', 'scare', 'surviv', 'haha'], ['could', 'bad', 'idea', 'hayley'], ['good', 'night', 'fellow', 'twitterati', 'back', 'work', 'tomorrow'], ['write', 'paper', 'lot', 'harder', 'thought', 'lol'], ['damn', 'alway', 'miss'], ['got', 'fight', 'pavement', 'think', 'poor', 'littl', 'knee'], ['stay', 'home', 'wife', 'take', 'daughter', 'friend', 'tokyo', 'steak', 'hous', 'sad', 'bodi', 'not', 'cooper', 'today'], ['quot', 'monarchi', 'quot', 'go', 'bleed', 'us', 'dri', 'noth', 'slave', 'pig', 'not', 'recon', 'countri', 'anymor'], ['saw', 'ucla', 'convinc', 'everi', 'singl', 'major', 'univers', 'better', 'bookstor', 'fun', 'far'], ['crazi', 'kid', 'not', 'nap', 'think', 'heat', 'still', 'tell', 'not', 'go', 'grandma', 'cuz', 'sick'], ['late'], ['hi', 'name', 'kate', 'addict', 'mm'], ['get', 'dinner', 'readi', 'not', 'much', 'go', 'life', 'seem'], ['want', 'go', 'walk', 'still', 'miss', 'satan'], ['ahh', 'get', 'realli', 'tire', 'ej', 'not', 'yet', 'might', 'go', 'sleep', 'without', 'talk'], ['still', 'feel', 'weird', 'ex', 'engag', 'mom', 'made', 'thing', 'wors', 'not', 'even', 'want', 'still', 'odd'], ['see', 'sec', 'clip', 'new', 'moon', 'trailer', 'big', 'teas', 'though'], ['jeff', 'right', 'call', 'duti', 'pwns', 'got', 'figur', 'xtra', 'copi', 'wolvarin', 'bought', 'earlier', 'week'], ['work', 'sick', 'blow', 'kill', 'feel', 'like', 'crap'], ['outsid', 'play', 'ball', 'dog', 'hot', 'sweati'], ['assign', 'due', 'midnight', 'profession', 'write', 'class', 'amp', 'realli', 'wish', 'alreadi', 'done', 'love', 'write', 'thought', 'id', 'like'], ['hs', 'still', 'tire', 'want', 'go', 'home'], ['oh', 'darn', 'not', 'london'], ['sorri', 'neglect', 'twitter'], ['head', 'hurt'], ['wish', 'lay', 'side', 'not', 'comfort', 'posit', 'tire', 'lay'], ['preorder', 'razer', 'sphex', 'ship', 'today', 'pay', 'review', 'razer', 'ignor', 'email'], ['would', 'love', 'hear', 'music', 'batteri', 'tv', 'play', 'besid', 'think', 'kind', 'vampir', 'movi'], ['hangin', 'cousin', 'holli', 'tlkin', 'grandpar', 'phone', 'went', 'dead'], ['summer', 'one', 'loner'], ['twitter', 'drive', 'not', 'let', 'download', 'profil', 'pic', 'keep', 'tri'], ['appar', 'paig', 'parti', 'rose', 'jenn', 'adam', 'without', 'child', 'wild', 'imagin'], ['not', 'much', 'well'], ['hope', 'get', 'spend', 'weekend', 'home'], ['miss', 'alreadi'], ['ouch', 'pick', 'nose', 'count'], ['not', 'mean', 'laugh', 'littl', 'giggl', 'come', 'sorri'], ['sad', 'miss', 'go', 'away', 'parti', 'due', 'much', 'work', 'realli', 'go', 'miss', 'kid'], ['slept', 'miss', 'bus', 'train', 'delay', 'not', 'stop', 'stop', 'late', 'work', 'fuck', 'heell'], ['hate', 'bleech', 'mess', 'black', 'outfit'], ['must', 'weather', 'b', 'nice', 'bad', 'minut'], ['poop', 'hog', 'shitter'], [], ['minut', 'till', 'not', 'best', 'day', 'late', 'class'], ['not', 'find', 'trusti', 'hair', 'tie', 'hair', 'spill', 'place', 'run', 'mom', 'band', 'not', 'work', 'normal', 'one', 'hurt'], ['realli', 'warm', 'day', 'seattl', 'rees', 'chocol', 'melt'], ['ugh', 'gone', 'new', 'phone', 'screen', 'black', 'mean', 'text'], ['wave', 'want', 'come', 'get', 'diablo', 'bark', 'much', 'til', 'made', 'sick'], ['not', 'near', 'excit', 'thought', 'would'], ['mouth', 'hurt', 'wish', 'could', 'cut', 'head'], ['sell', 'drumset', 'sad', 'day'], ['today', 'good', 'littl', 'girl', 'holli', 'bgt', 'complet', 'sympahti', 'vote', 'cute', 'aidan', 'davi', 'l', 'tweet', 'x'], ['least', 'not', 'tri', 'violent', 'hump', 'like', 'femal', 'dog'], ['omg', 'icecream'], ['got', 'earli', 'pay', 'bill', 'figur', 'like', 'bandaid', 'get', 'quick', 'not', 'bad', 'wrong'], ['shoot', 'rob', 'miss', 'got', 'home'], ['got', 'nail', 'done', 'n', 'alreadi', 'mess', 'alejandra', 'lt'], ['not', 'drank', 'much'], ['origin', 'acc', 'delet', 'got', 'not', 'bad', 'not', 'receiv'], ['sad', 'cut', 'pink', 'tree', 'notic', 'left', 'today', 'get', 'beto'], ['ugh', 'lost', 'remot', 'got', 'actual', 'move', 'chang', 'channel', 'wtf', 'twat'], ['actual', 'post', 'say', 'not', 'nevermind'], ['oouchh', 'pinch', 'nippl', 'accid', 'tri', 'fix', 'top'], ['nice', 'not', 'ever', 'get', 'ex'], ['lost', 'happi', 'right', 'sloanster'], ['not', 'feelin', 'right', 'hope', 'feel', 'pass', 'stupid', 'stomach'], ['got', 'go', 'go', 'upto', 'bed', 'sec', 'not', 'drunk', 'disgust', 'haha'], ['still', 'stuck', 'offic', 'work'], ['realli', 'sick', 'tire', 'bodi', 'resist', 'rest'], ['marley', 'cri', 'ball', 'eye', 'door'], ['saddest', 'movi', 'ever', 'seen'], ['miser', 'boredom'], ['oh', 'ok', 'not', 'know', 'courthous', 'id', 'either', 'learn', 'nkotb', 'twitter', 'stole', 'pic', 'hate'], ['comput', 'die', 'soon', 'much', 'virus', 'virus', 'scanner', 'not', 'find'], ['miss', 'babi', 'duck'], ['stress', 'mood'], ['worki', 'dad', 'aw', 'suck', 'work', 'saturday', 'morn', 'studi', 'exam'], ['not', 'come', 'toniit', 'arggh', 'want', 'though', 'fun', 'uss', 'well', 'def', 'see', 'nite', 'though'], ['okay', 'hailey', 'realli', 'gone', 'everyon', 'keep', 'prayer'], ['not', 'school', 'done', 'alreadi', 'hurt', 'much', 'see', 'everi', 'day'], ['soo', 'sad'], ['wtf', 'twitter', 'not', 'support', 'messag', 'phone', 'want', 'abl', 'twit', 'vacay', 'poo', 'twitter'], ['upset', 'right', 'like', 'not', 'even', 'formul', 'complet', 'thought'], ['wear', 'certain', 'tye', 'dye', 'tshirt', 'moment', 'miss', 'counterpart'], ['final', 'lost'], ['stand', 'ovat', 'wieter', 'nobodi', 'sit', 'insan', 'hit', 'doubl', 'play', 'though'], ['shame', 'job', 'thought', 'work', 'big', 'money', 'paid'], ['omg', 'jlo', 'marc', 'anthoni', 'old', 'school', 'graduat', 'brb', 'upset'], ['soo', 'peopl', 'tell', 'went', 'tonit', 'show', 'dream', 'meet', 'embarrassd', 'lil', 'lol'], ['first', 'day', 'summer', 'suck', 'overcast', 'cold', 'not', 'summer'], ['tell', 'chris', 'stop', 'make', 'fun', 'lizzi'], ['well', 'love', 'complet', 'flatten', 'back', 'injuri', 'goe', 'weekend'], ['poor', 'mom', 'told', 'look', 'like', 'hooker', 'skirt', 'not', 'short', 'degre'], ['good', 'job', 'wish', 'work', 'zoo'], ['grrh', 'phone', 'brand', 'new', 'might', 'add', 'keep', 'switch', 'other', 'say'], ['musashi', 'great', 'go', 'kitaro'], ['start', 'least', 'favourit', 'chore', 'mop', 'floor'], ['back', 'hurt', 'heat', 'pad', 'stupid', 'ladder', 'collaps', 'make', 'fall'], ['ouch', 'use', 'hate', 'irat', 'caller', 'tri', 'record', 'get', 'p', 'ed', 'etc'], ['poor', 'littl', 'old', 'taken', 'hospit', 'yesterday', 'syring', 'feed', 'home', 'not', 'want', 'drink'], ['gah', 'macbook', 'pro', 'get', 'frickin', 'hot', 'sit', 'tabl', 'noth'], ['ugh', 'plane', 'delay', 'due', 'weather', 'stuck', 'anoth', 'hour', 'kill'], ['oh', 'pleas', 'not'], ['wow', 'pm', 'roll', 'around', 'realli', 'fast', 'accomplish', 'one', 'thing', 'list', 'today'], ['realli', 'oh', 'sorri', 'lol'], ['macbook', 'pro', 'sit', 'close', 'poor', 'macbook', 'asham', 'plastic', 'face', 'side'], ['seen', 'till', 'hour', 'normal', 'sleep', 'miss', 'mad', 'haha'], ['yeah', 'total', 'unfair', 'flame', 'everywher'], ['freak', 'afraid', 'manag', 'stick', 'foot', 'mouth', 'scare', 'yet', 'anoth', 'person'], ['put', 'fuckin', 'mohawk', 'son', 'kill', 'vibe', 'alway'], ['go', 'watch', 'dogtown', 'hope', 'not', 'sad'], ['pain', 'poor', 'hate', 'sun'], ['well', 'movi', 'night', 'spoilt', 'frack', 'gone', 'time', 'sleep'], ['noth', 'aim', 'join'], ['feel', 'aw', 'last', 'night'], ['bed', 'not', 'abl', 'sleep', 'bloodi', 'bipolar'], ['not', 'believ', 'eye', 'say', 'browser', 'omg', 'omg', 'omg'], ['sorri', 'rb'], ['thank', 'googl', 'adsens', 'payment', 'aussi', 'dollar', 'not', 'strong'], ['hurt', 'sunshin', 'weekend', 'not', 'get', 'play', 'sad'], ['long', 'day', 'matine', 'even', 'show', 'sad', 'tomorrow', 'last', 'ever', 'welsh', 'colleg', 'show'], ['ok', 'not', 'true', 'plus', 'insult', 'say', 'insult', 'tri', 'cheer'], ['grass', 'fed', 'beef', 'burger', 'saute', 'mushroom', 'cheddar', 'wheat', 'bun', 'along', 'salad', 'yum', 'poor', 'kim', 'still', 'not', 'feel', 'well'], ['startin', 'get', 'head', 'ach', 'uugghh'], ['busi', 'work', 'new', 'kit', 'coupl', 'interview', 'weekend', 'pray', 'uncl', 'still', 'young', 'massiv', 'stroke'], ['not', 'want', 'sit', 'home', 'prom', 'night', 'someon', 'hang'], ['print', 'opera', 'give', 'much', 'better', 'result', 'print', 'pdf', 'name', 'alway', 'got', 'compromis'], ['ps', 'wish', 'come', 'tonight'], ['get', 'messag', 'account', 'suspend', 'far', 'know', 'not', 'violat', 'term', 'contact', 'twitter'], ['research', 'could', 'not', 'find', 'specif', 'thing', 'want', 'drive', 'autorun'], ['free', 'thing', 'amp', 'not', 'effect', 'comp', 'use'], ['sad', 'babi', 'make', 'angsti', 'write'], ['ipod', 'die', 'not', 'run', 'charg'], ['need', 'nap', 'not', 'get', 'one'], ['ah', 'annoy'], ['lot', 'stress', 'though', 'support', 'two', 'big', 'famili', 'never', 'quit', 'smoke', 'die', 'lung', 'cancer'], ['sorri', 'sad', 'nitenit', 'love'], ['damn', 'bum', 'right', 'love'], ['someon', 'save', 'boredom'], ['citi', 'dippin', 'iz', 'fun', 'much', 'eye', 'candi', 'rememb', 'miss', 'lol'], ['thought', 'simpl', 'one', 'found', 'hilari'], ['sher', 'good', 'quit', 'peopl', 'not', 'even', 'get', 'see', 'due', 'court', 'rush', 'see', 'fam'], ['weekend', 'not', 'work'], ['problem', 'adult', 'shirt', 'annoy', 'sinc', 'lot', 'adult', 'player', 'shirt', 'not', 'come', 'kid', 'size'], ['wake', 'pleas'], ['ooh', 'jealous', 'might', 'tri', 'get', 'saturday', 'exam', 'monday', 'go', 'fail'], ['look', 'like', 'twitter'], ['aw', 'sorri', 'root', 'let', 'know'], ['seem', 'like', 'work', 'rofl', 'sad', 'money', 'not', 'grow', 'tree'], ['fender', 'hide', 'couch', 'know', 'get', 'readi', 'leav', 'not', 'happi'], ['go', 'go', 'bed', 'amp', 'fail', 'miser', 'book', 'holiday', 'although', 'seem', 'new', 'follow', 'high', 'five', 'x'], ['aww', 'hes', 'cute', 'wish', 'could', 'gone'], ['tri', 'go', 'sleep', 'luck', 'think', 'sick'], ['floor', 'mop', 'sound', 'unapp'], [], ['not', 'go', 'logan', 'squar', 'pretti', 'sure', 'shirt', 'not', 'philli', 'local', 'tomorrow'], ['not', 'fair', 'bath'], ['today', 'horribl', 'dayi'], ['gloomi', 'outsid'], ['sometim', 'black', 'girl', 'piss', 'like', 'mother', 'fucker'], ['oh', 'sorri', 'least', 'still', 'abl', 'buy', 'regular', 'ticket', 'not', 'worri', 'limit'], ['know', 'guilt', 'associ', 'pick', 'winner'], ['ohh', 'not', 'fun', 'hell', 'man', 'look', 'like', 'got', 'shit', 'done', 'today'], ['think', 'bill', 'ha', 'ii', 'finish', 'pay', 'mine', 'broke'], ['saw', 'toy', 'stori', 'trailer', 'get', 'epic', 'woodi', 'take', 'l'], ['cup', 'cake', 'soo', 'yummi', 'would', 'coffe', 'know', 'lead'], ['allegra', 'flonas', 'steroid', 'inhal', 'rest', 'allergi', 'season', 'throat', 'still', 'hurt', 'asthma'], ['damn', 'accident', 'listen', 'rick', 'ross'], ['bought', 'pool', 'instead', 'go', 'california', 'pool', 'broken', 'wast', 'vacat', 'money', 'next', 'year'], ['spend', 'saturday', 'morn', 'take', 'note', 'research', 'essay', 'stupid', 'whore', 'recal', 'book', 'use', 'not', 'fair'], ['want', 'shut', 'fuck', 'realli', 'hate', 'live', 'step', 'dad', 'not', 'wait', 'move'], ['oh', 'hate', 'rain', 'septa', 'leav', 'dog'], ['aww', 'go', 'miss'], ['dayum', 'tweet', 'r', 'come', 'fast', 'like', 'miss', 'lot', 'plz', 'dm', 'k', 'oh', 'real'], ['neighbour', 'fond', 'loud', 'nickelback'], ['jungl', 'book', 'soo', 'cute', 'noth', 'eat', 'drink'], ['heard', 'icecream', 'truck', 'took', 'like', 'shot', 'could', 'not', 'catch'], ['hey', 'guy', 'work', 'need', 'worri', 'mani', 'follow', 'though'], ['oh', 'lord', 'idea', 'crap', 'spout', 'get', 'anyon'], ['jerk', 'not', 'go', 'dammit', 'frank', 'suck', 'bad'], ['look', 'like', 'got', 'defect', 'macbook'], ['arrgghhgguuiisshh', 'idea', 'modern', 'assign', 'burma', 'cuba', 'eep', 'help'], ['aww', 'miss', 'least', 'get', 'go', 'home', 'right'], ['pretti', 'good', 'day', 'let', 'us', 'see', 'night', 'goe', 'oh', 'work', 'day', 'tomorrow', 'picnic'], ['hope', 'whoever', 'stole', 'purs', 'money', 'get', 'come'], ['suck', 'would', 'said', 'self', 'tanner', 'realli', 'good', 'stuck'], ['fuck', 'alreadi', 'think', 'show', 'go', 'miss', 'broke'], ['soo', 'n', 'findin', 'asthma'], ['realli', 'want', 'go', 'see', 'script', 'ny', 'august', 'one', 'go'], ['last', 'hero', 'ep', 'sept', 'sick', 'amp', 'drug', 'past', 'day', 'dr', 'say', 'lack', 'everyth', 'esp', 'sunshin'], ['love', 'printer', 'decid', 'print', 'black', 'marbl', 'interview', 'new', 'work', 'morn'], ['tonight', 'bore'], ['noon', 'want', 'talk', 'lol'], ['not', 'bother', 'work', 'tomorrow'], ['not', 'know', 'mean', 'sorri'], ['awak', 'sad', 'see', 'leon', 'today'], ['not', 'want', 'cri', 'senior', 'graduat', 'amp', 'breakin', 'heart', 'home'], ['slow', 'lost', 'phone'], ['think', 'quot', 'chevrolet', 'doom', 'quot', 'would', 'fit', 'gm'], ['rachel', 'alexandra', 'not', 'belmont', 'appear', 'vogu', 'best', 'look', 'model', 'year'], ['colleg', 'work', 'suck', 'much'], ['tire'], ['myweawk', 'not', 'say'], ['ew', 'use', 'get', 'quot', 'suicid', 'quot', 'high', 'school', 'mix', 'like', 'soda', 'togeth', 'drink', 'think', 'rememb', 'enjoy'], ['yeah', 'left', 'pc', 'not', 'run', 'client', 'anymor', 'thought', 'would', 'new', 'one'], ['sigh', 'sister', 'bein', 'strang', 'came', 'way', 'copenhagen', 'london', 'phone', 'turn', 'want', 'see', 'dammit'], ['omg', 'memori', 'must', 'fail', 'weird', 'sinc', 'not', 'normal', 'forget', 'profess'], ['clean', 'four', 'bathroom', 'afternoon', 'yes', 'go', 'ahead', 'feel', 'sorri', 'still', 'wait', 'attent'], ['aww', 'yeah', 'feel', 'know', 'hard'], ['tri', 'realli', 'hard', 'not', 'hate'], ['boo', 'best', 'friend', 'leavin', 'weekend', 'ever', 'without'], ['not', 'know', 'live', 'middl', 'nowher', 'hous', 'spider', 'central'], ['not', 'sleep', 'due', 'watch', 'uktv', 'food', 'keep', 'crave', 'bay', 'think', 'bodi', 'guna', 'ach', 'tomro'], ['miss'], ['stop', 'store', 'pick', 'item', 'debit', 'card', 'miss'], ['nicki', 'land', 'like', 'get', 'home', 'ugh', 'not', 'fish', 'fri', 'left', 'anyway'], ['help', 'anyon', 'know', 'store', 'carri', 'blackberri', 'trackbal', 'went', 'verizon', 'retail', 'luck', 'not', 'want', 'order', 'one'], ['take', 'willi', 'dog', 'get', 'ct', 'scan', 'cos', 'not', 'walk', 'proper', 'atm'], ['hurt', 'much', 'not', 'even', 'chew', 'gum', 'lost', 'much', 'weight', 'not', 'even', 'eat'], ['noth', 'even', 'miss', 'lifestori'], ['tix', 'usual', 'upssuck'], ['ew', 'use', 'get', 'quot', 'suicid', 'quot', 'mid', 'school', 'mix', 'like', 'soda', 'togeth', 'drink', 'think', 'rememb', 'enjoy'], ['yes', 'bb', 'actual', 'one', 'not', 'realli', 'give', 'shit'], ['suck'], ['sick', 'rig', 'tomorrow'], ['miss', 'alot', 'not', 'go', 'talk', 'hope'], ['joe', 'love'], ['ouch', 'not', 'miami', 'tomorrow', 'morn', 'suck', 'cruis', 'drive', 'back', 'next', 'saturday'], ['mani', 'cocktail', 'last', 'night', 'head', 'hurt'], ['saw', 'doop', 'bmw', 'seri', 'park', 'top', 'bad', 'rain'], ['never', 'speak', 'colleg', 'think', 'might', 'stick', 'hashim', 'dosnt', 'shoot'], ['lose', 'money', 'vega'], ['sh', 'get', 'even', 'sad', 'current', 'librari', 'j', 'think', 'last', 'one'], ['not', 'internet', 'work'], ['ooh', 'earli', 'start', 'got', 'bed', 'plan', 'xx'], ['upset', 'friday', 'night', 'cri'], ['need', 'word', 'inspir', 'need'], ['want', 'go', 'home', 'see', 'erin'], ['hug', 'sorri', 'anyth'], ['ground', 'til', 'tomorrow', 'sorri', 'anyon', 'made', 'plan', 'tomorrow', 'annoy'], ['aww', 'hate', 'wen', 'famili', 'brokun', 'humun', 'maybe', 'see', 'agin', 'wun', 'day'], ['guilt', 'trip', 'feel', 'sick', 'pressur', 'stress', 'much', 'drama'], ['said', 'goodby', 'younger', 'bro', 'misshimalreadi'], ['not', 'get', 'much', 'time', 'either', 'go', 'get', 'wors', 'girl', 'r', 'home', 'summer', 'stink'], ['underwir', 'bra', 'stick', 'poke', 'armpit'], ['ahh', 'knoww', 'saw', 'may', 'newcastl', 'good', 'soo', 'excit', 'june', 'birthday', 'aswel'], ['fear', 'spaceship', 'not', 'long', 'earth', 'strand', 'edwin', 'highway', 'smoke'], ['stolen', 'purs', 'new', 'tag', 'still'], ['like', 'must', 'confess', 'one', 'dark', 'side', 'sometim', 'stubborn', 'littl', 'morn', 'grouch'], ['tv', 'bore'], ['start', 'feel', 'bad', 'ugh', 'hate', 'not', 'feel', 'good'], ['weird', 'think', 'may', 'total', 'chang', 'crappi', 'mood', 'miss', 'much'], ['not', 'go'], ['aww', 'dude', 'fair', 'thought', 'point', 'thing'], ['save', 'heart', 'think', 'go', 'let', 'go', 'see', 'get', 'hurt'], ['wow', 'hot', 'miser', 'peopl', 'probabl', 'kill', 'right'], ['accid', 'drop', 'amp', 'screen', 'mess'], ['kristen', 'miss'], ['not', 'enough', 'room'], ['yep', 'good', 'feel', 'not', 'last', 'back', 'sleep'], ['day', 'go', 'good', 'budget', 'video', 'go', 'put', 'low', 'budget', 'video', 'stadium', 'music', 'end', 'may', 'near'], ['mom', 'annoy', 'live', 'crap', 'outta', 'aol', 'radio', 'look', 'brook', 'amp', 'dunn'], ['feel', 'like', 'die', 'way', 'need', 'girl', 'spa', 'day', 'soon', 'possibl'], ['hate', 'break', 'heart', 'confirm', 'jus', 'came', 'austin', 'amp', 'sophia', 'not', 'amp', 'never', 'twitter', 'anoth', 'sad', 'day'], ['st', 'joe', 'dirti'], ['sushi', 'well', 'cook', 'veggi', 'preggo', 'onto', 'trolley', 'car', 'birthday', 'parti', 'mckinney', 'actial', 'feel', 'awak'], ['oh', 'noe', 'melt', 'ice', 'cream', 'not', 'want'], ['bad', 'thought', 'talk', 'today'], ['layenn', 'uughh', 'dunt', 'feel', 'well'], ['occur', 'tonight', 'cheri', 'prom', 'suppos', 'go', 'mile', 'make', 'kind', 'difficult'], ['soo', 'fed'], ['miss', 'someone'], ['arm', 'hurt'], ['got', 'peanut', 'butter', 'beard', 'felt', 'weird', 'axe', 'bodi', 'wash', 'burnt', 'eye', 'okay'], ['h', 'ous', 'start', 'sunday', 'sad', 'not', 'afford', 'sky'], ['made', 'vid', 'prove', 'skill', 'deni', 'step', 'dad', 'said', 'would', 'disown', 'post', 'sowey'], ['grr', 'back', 'mean', 'headach', 'bright', 'one', 'side'], ['sad', 'not', 'come', 'one'], ['clean', 'hous', 'bore'], ['omg', 'shame', 'holli', 'watch', 'clip', 'post'], ['suffer', 'hemorrhoid'], ['cousin', 'move', 'like', 'year', 'ago', 'miss', 'much', 'look', 'facebook', 'sad'], ['not', 'sure', 'way', 'yay', 'wick', 'ticket', 'awesom', 'go'], ['rang', 'irish', 'one', 'drunk', 'must', 'confisc', 'phone', 'hate', 'lot'], ['would', 'soo', 'much', 'geeki', 'ultim', 'level', 'work'], ['best', 'show', 'life', 'mcfli', 'rock', 'world', 'want', 'meet', 'guy'], ['know', 'fuck', 'suck', 'anyway', 'get', 'fake', 'id', 'someth'], ['noo', 'sorri', 'go', 'pop', 'zyrtec', 'go', 'sleep'], ['waterfront', 'anymor', 'faccia', 'luna', 'clarendon'], ['go', 'bed', 'watch', 'bit', 'qi', 'wake', 'tomorrow', 'face', 'start', 'last', 'summer', 'bath', 'bit', 'gut', 'atm', 'home'], ['stupid', 'shop', 'bag', 'left', 'red', 'mark', 'arm'], ['busi', 'fantast', 'tri', 'unplug', 'day', 'thank', 'ff'], ['nurs', 'sore', 'back', 'today'], ['twitter', 'dumb', 'saw', 'quot', 'quot', 'amp', 'kind', 'folk', 'tweet', 'ah', 'sorri', 'not', 'ignor', 'slow'], ['came', 'back', 'bowl', 'offiaci', 'suck'], ['not', 'good', 'day', 'hous'], ['realli', 'tire', 'work', 'whole', 'day', 'tomorrow', 'thought', 'depress', 'uncool'], ['unhappi', 'return', 'occupi', 'citi', 'cri'], ['know', 'think', 'go', 'miss', 'though', 'sacrif', 'money', 'job', 'happi', 'suck', 'ass'], ['think'], ['not', 'make', 'graduat'], ['want', 'talk'], ['nervous', 'hope', 'get', 'could', 'cost', 'mistak', 'like', 'procrastin', 'assumpt'], ['sit', 'around', 'fuck'], ['everybodi', 'alreadi'], ['eli', 'er', 'prick', 'finger', 'blood', 'sugar', 'tri', 'not', 'cri'], ['miss', 'vermont'], ['miss'], ['rain', 'almost', 'perfect', 'day', 'cloth', 'wet'], ['not', 'feel', 'good'], ['say', 'dick', 'find', 'hurt'], ['drew', 'new', 'song', 'make', 'cri', 'miss', 'thoma', 'alreadi'], ['goodbye', 'arizona', 'see', 'week'], ['yeah', 'economi', 'suck', 'bad', 'yeah', 'know', 'cafeteria', 'unemploy', 'moment', 'hate'], ['big', 'sam', 'houston', 'not', 'big', 'enough', 'overcom', 'challang', 'photographi'], ['boo', 'lone', 'bore'], ['afraid', 'yes', 'true', 'hope', 'r', 'not', 'disappoint', 'yet'], ['pleas', 'pleas', 'anyon'], ['miss', 'bffls', 'miss', 'friday', 'night', 'date', 'hot', 'dog', 'dinner', 'know', 'even', 'hold'], ['want', 'becom', 'vegetarian', 'go', 'hard'], ['wow', 'storm', 'power'], ['today', 'head', 'hurt', 'bad', 'want', 'see'], ['heard', 'disappoint', 'disappoint', 'even', 'seen', 'wast', 'bale'], ['tire', 'may', 'go', 'bed', 'troubl', 'miss', 'american', 'even', 'friend', 'x'], ['wish', 'could', 'go', 'cabo', 'tonight'], ['surpris', 'not', 'fire', 'announc', 'whole', 'world', 'bodi', 'would', 'found', 'quot', 'selfish', 'quot'], ['not', 'like', 'dress'], ['ugh', 'walmart', 'hot', 'white', 'wrong', 'see', 'peopl', 'becom', 'agoraphob'], ['lend', 'one', 'cold'], ['beauti', 'stay', 'insid'], ['tri', 'figur', 'not', 'go', 'well'], ['miss', 'puppi'], ['ouchh', 'burnt', 'frkn', 'tongu'], ['final', 'eat', 'unagi', 'save', 'agh', 'realiz', 'band', 'play', 'bear', 'garden', 'today', 'one', 'like'], ['miss', 'game', 'pleas', 'keep', 'updat', 'go', 'nugget'], ['aww', 'feel', 'bad', 'lil', 'nigga', 'look', 'like', 'know', 'come'], ['could', 'go', 'cali', 'without', 'sad'], ['oh', 'sorri', 'pet'], ['feel', 'sad', 'not', 'goodby', 'z'], ['go', 'miss', 'bb'], ['miss', 'stand', 'next'], ['dismal', 'week'], ['spent', 'go', 'colleg', 'well', 'spent', 'go', 'meet', 'man', 'tomorrow', 'toy', 'park', 'lot', 'clean', 'job'], ['not', 'las', 'vega', 'weekend', 'noctweetup'], ['srsli', 'jealous', 'never', 'ever', 'one', 'one', 'rd', 'longer', 'oper'], ['storm', 'power', 'keep', 'go', 'suck'], ['friday', 'stuck', 'home', 'agh', 'bore', 'grr'], ['wish', 'rollin', 'ya'], ['wait', 'till', 'januari', 'life', 'not', 'fair'], ['oh', 'hope', 'reach'], ['dad', 'told', 'want', 'put', 'sale', 'craigslist'], ['know', 'suck', 'data', 'plan', 'weak', 'sauc'], ['si', 'bueno', 'guess', 'not', 'entertain'], ['cousin', 'jail', 'shoplift', 'drug', 'upset', 'pleas', 'help', 'feel', 'better'], ['ohh', 'regal', 'block'], ['still', 'not', 'figur', 'twitter', 'thing', 'not', 'background', 'pic', 'stick', 'not', 'seem', 'chang', 'profil', 'pic'], ['send', 'angri', 'vibe', 'individu', 'blue', 'vehicl', 'hit', 'car', 'qfc', 'park', 'lot', 'broad', 'fail', 'leav', 'note'], ['violent', 'fightclub', 'like', 'sex', 'dream', 'involv', 'heavili', 'tattoo', 'ladi', 'not', 'want', 'wake', 'lol'], ['birthday', 'june', 'wack', 'ihav', 'seen', 'promot', 'birthday', 'parti', 'someon', 'better', 'finagl', 'soon', 'possibl'], ['yea', 'yea', 'tortur', 'stanki', 'leg', 'danc', 'hrs', 'til', 'not', 'mo'], ['oh', 'man', 'seen', 'bgt', 'news', 'not', 'cool', 'love', 'greg', 'danc', 'weepi', 'kid', 'fuck', 'obnoxi', 'go'], ['mommi', 'come', 'home', 'vega', 'tonight', 'go', 'pick', 'later', 'islip', 'plane', 'not', 'get', 'killm', 'want', 'mommi'], ['jealous', 'slave', 'away', 'store', 'chill', 'boat'], ['damnit', 'suck', 'one', 'one', 'thought', 'would', 'drag', 'back', 'lol'], ['new', 'work', 'pictur', 'taken', 'today', 'hate', 'look', 'much', 'like'], ['want', 'chat', 'day'], ['music', 'teacher', 'either', 'expir', 'forgot', 'lesson', 'leav', 'outsid', 'wait', 'ride', 'pick', 'hour'], ['cool', 'look', 'forward', 'san', 'francisco', 'realli', 'nice', 'not', 'make', 'napa', 'though', 'mayb', 'next', 'time'], ['wish', 'could', 'feel', 'pain', 'ok', 'least', 'like', 'brazil'], ['wish', 'could', 'come', 'see', 'denver', 'husband', 'lost', 'job', 'not', 'afford'], ['jane', 'realli', 'sad', 'probabl', 'not', 'get', 'perfect', 'tonight', 'quiz', 'without', 'miss', 'articl', 'ask', 'someon'], ['shud', 'lol', 'devic', 'thing', 'not', 'work'], ['omg', 'tri', 'fix', 'pic', 'not', 'work', 'ugh', 'also', 'mom', 'not', 'let', 'sleep', 'sanzz', 'bad', 'day'], ['tummi', 'ach'], ['wish', 'well', 'past', 'hour', 'bed', 'proper', 'migrain'], ['yeah', 'bit', 'overh', 'bit', 'ac', 'die'], ['total', 'ignor', 'sad', 'heartbroken'], ['got', 'stuck', 'traffic', 'jam', 'today', 'one', 'sunburn', 'arm'], ['hug', 'still', 'feel', 'poor'], ['way', 'work', 'kind', 'sad'], ['love', 'rain', 'golf'], ['chillin', 'break', 'eatin', 'grub', 'pretti', 'burnt', 'event', 'day', 'want', 'go', 'movi', 'ian', 'not', 'happen', 'though'], ['miss', 'call'], ['peopl', 'cruel', 'sometim', 'not', 'imagin', 'star'], ['went', 'run', 'sinus', 'piss'], ['thank', 'cute', 'not', 'home', 'mani', 'year', 'not', 'seen', 'person'], ['miss', 'phone', 'servic', 'suck'], ['wait', 'sleep', 'pill', 'kick', 'go', 'tire', 'work', 'tomorrow'], ['sad', 'voic', 'food', 'fair', 'academ', 'pep', 'ralli', 'need', 'voic'], ['fuck', 'not', 'feel', 'like', 'cri', 'bit', 'reali', 'not', 'want', 'bother', 'soo', 'much'], ['pleasant', 'soo', 'rare', 'time', 'kill'], ['miss', 'youhh', 'ci', 'tell', 'dem', 'japenes', 'peopl', 'give', 'yu', 'comput', 'sumthinn', 'ya', 'twit', 'fam', 'missess', 'supa', 'c'], ['love', 'love', 'love', 'beauti', 'sweet', 'girl', 'ever'], ['wow', 'honest', 'not', 'surpris', 'everi', 'time', 'tri', 'push', 'guy', 'get', 'injur'], ['sorri', 'miss', 'saw', 'across', 'way', 'busi', 'take', 'came', 'meet', 'gone'], ['not', 'go', 'lie', 'go', 'miss', 'high', 'school', 'lunch', 'lot', 'damn'], ['traffic', 'way', 'home', 'traffic', 'light', 'afraidiow', 'karma', 'big', 'check'], ['dang', 'voic', 'not', 'came', 'snot', 'cover', 'tissu', 'dangit', 'hate', 'flu'], ['bud', 'light', 'massachusett', 'boston', 'lager', 'guess', 'not', 'catch', 'next', 'flight', 'njoy'], ['chees', 'chip'], ['went', 'concert', 'rememb', 'derek', 'mark', 'host', 'miss', 'see', 'bhb', 'grove'], ['haha', 'damn', 'not', 'invit'], ['aghh', 'mann', 'miss', 'like', 'half', 'wowp', 'nd', 'not', 'like', 'start', 'watch', 'thing', 'middl', 'show', 'forgot', 'record', 'madd'], ['feel', 'like', 'not', 'talk', 'realli', 'realli', 'long', 'time'], ['not', 'let', 'vote', 'even', 'though', 'sign'], ['dude', 'look', 'crazi', 'dat', 'hair', 'face', 'lmao', 'old', 'wrestler', 'went', 'tna', 'thank', 'vinc', 'dude', 'clown', 'lol'], ['ugh', 'bore', 'friday'], ['gone', 'minut', 'alreadi', 'show', 'boobag', 'without'], ['tire'], ['sorri', 'miss', 'tweet', 'nice', 'long', 'chat', 'across', 'border', 'pastel', 'want', 'recip', 'email'], ['waah', 'not', 'open', 'eye', 'wider', 'want', 'go', 'back', 'sleep', 'not', 'sleep', 'proper'], ['god', 'not', 'asylum', 'realli', 'never', 'get', 'anyth', 'cool'], ['fckeditor', 'give', 'problem', 'post', 'fine', 'edit', 'plain', 'text', 'help'], ['hate', 'trevor', 'drive'], ['fab', 'broke'], ['say', 'gosh', 'miss', 'yesterday', 'live', 'chat', 'bed', 'sick'], ['broken', 'iphon'], ['uugh', 'hate', 'miss', 'interview', 'not', 'home', 'darn'], ['final', 'plug', 'listen', 'flashpoint', 'shoutout', 'miss', 'segment', 'chevron'], ['ow', 'shitt', 'not', 'come', 'get', 'drunk', 'ihav', 'go', 'photo', 'shoot', 'portsmouth', 'sumfink', 'oww'], ['shot', 'suuck', 'done', 'vacin'], ['oh', 'noe', 'miss'], ['hate', 'present', 'hahah', 'whatev', 'glad'], ['aww', 'live', 'van', 'would', 'great', 'see', 'great', 'flight'], ['like', 'friend', 'kind', 'sad'], ['offic', 'dc', 'miss', 'numero', 'uno'], ['doin', 'homework', 'ugh'], ['room', 'damn', 'warm', 'window', 'open', 'still', 'cook'], ['know', 'tweet', 'though', 'not', 'worri', 'haha', 'wish', 'could', 'fli', 'ohio', 'saw', 'beyonc', 'monday', 'uhmygawdd'], ['reupload', 'damn', 'thing'], ['pictur', 'bliss', 'jpeg', 'format', 'sorri', 'messag', 'board', 'terminolog', 'not', 'play', 'board'], ['burnt', 'zuccini'], ['freakin', 'migrain'], ['feel', 'sick', 'headach', 'bore', 'tiredd'], ['oh', 'noo', 'not', 'see'], ['currenc', 'drop', 'like', 'nobodi', 'busi', 'not', 'good', 'time', 'go', 'oversea'], ['miss', 'vlogcandi'], ['not', 'find', 'jewellri', 'dress'], ['missin', 'fun', 'aww', 'cryin', 'lol'], ['epic', 'fail', 'chocol', 'fountain', 'got', 'clog'], ['tire', 'not', 'get', 'sat', 'lawn', 'mower', 'not', 'push', 'whole', 'damn', 'thing'], ['aw', 'could', 'not', 'see', 'robert', 'practic', 'make', 'sad'], ['think', 'well', 'lucki'], ['thing'], ['bit', 'tongu', 'blood', 'everywher'], ['made', 'wisconsin', 'golden', 'corral', 'dang', 'lol', 'miss', 'graduat', 'though', 'dang'], ['cool', 'sound', 'love', 'quot', 'drama', 'quot', 'quot', 'love', 'game', 'quot', 'not', 'work', 'myspac', 'wish', 'good', 'luck', 'xoxo', 'spain'], ['time', 'ritualist', 'friday', 'night', 'depress'], ['fri', 'bread', 'good', 'gave', 'littl', 'pinch', 'lettuc', 'ha', 'ha'], ['aww', 'miss', 'drive', 'elmwood'], ['wow', 'follow', 'friday', 'not', 'tweet', 'fail', 'nobodi', 'follow', 'today', 'dble', 'fail', 'suicid'], ['sorri', 'ambien', 'got', 'sick', 'perhap', 'work', 'ash', 'garden', 'catnip', 'plant'], ['mess', 'look', 'next', 'week'], ['not', 'call', 'blown', 'yet'], ['sometim', 'forget', 'favorit', 'porn', 'star', 'real', 'peopl', 'made', 'orang', 'chicken', 'last', 'night', 'cut', 'finger', 'sad'], ['car', 'need', 'one', 'ha', 'ha', 'one', 'found', 'last', 'night', 'want', 'bad', 'sold', 'not'], ['eye', 'still', 'hurt', 'think', 'go', 'sleep'], ['not', 'sound', 'great', 'palmpr'], ['glad', 'day', 'almost', 'anoth', 'nite', 'nd', 'pain', 'pill', 'alon', 'crib', 'lol', 'ughh', 'wish', 'weekend', 'alreadi'], ['skwl', 'not', 'realli', 'want', 'studi', 'saw', 'gt', 'j', 'make', 'feel'], ['damn', 'natalya', 'got', 'tell', 'go', 'would', 'call', 'lost', 'phone', 'number', 'broke', 'blackberri'], ['much', 'happier', 'despit', 'loom', 'departur'], ['hahahaha', 'not', 'know', 'said', 'sheeitt', 'not', 'get', 'not', 'pictur', 'bwaahh'], ['love', 'though'], ['ha', 'asham'], ['not', 'want', 'work', 'tonight'], ['aww', 'hug', 'wish', 'could', 'help'], ['work', 'wrist', 'hurt', 'much'], ['lol', 'sorri', 'bout', 'today', 'get', 'amp', 'els', 'r', 'guyz', 'doinq', 'cuz', 'c', 'elig', 'howeva', 'itz', 'spell', 'lol'], ['knew', 'idiot'], ['realli', 'not', 'lookin', 'forward', 'monday', 'bak', 'colleg'], ['feelin', 'depress', 'miss', 'soo', 'damn', 'fcking', 'much', 'besti', 'wish', 'would', 'not', 'left', 'yt'], ['good', 'gracious', 'chair', 'broke'], ['lot', 'noisi', 'peep', 'outsid'], ['upset', 'not', 'get', 'fix', 'tonight'], ['milk', 'drink', 'think', 'make', 'feel', 'sick'], ['god', 'brera', 'plot', 'twist', 'go', 'fuck', 'everyth', 'feel'], ['wish', 'guy', 'gotten', 'video'], ['oh', 'today', 'suck'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['dude', 'check', 'could', 'not', 'find', 'anyth', 'haha', 'capit'], ['lost', 'follow'], ['bounc', 'rush', 'make', 'feel', 'nauseous'], ['hard', 'run', 'back', 'forth', 'constant', 'ya', 'kno', 'workin', 'time', 'havin', 'crazi', 'sleepin', 'schedul', 'must', 'hard'], ['school', 'year', 'not', 'get', 'see', 'teacher', 'not', 'get', 'see', 'johnathan'], ['wow', 'hate', 'stapl', 'right', 'major', 'thank', 'complet', 'fucktard', 'kill', 'product'], ['sigh', 'problem', 'though', 'need', 'call', 'stoopid', 'lime', 'aka', 'cabl', 'wireless', 'reconnect', 'inter', 'day', 'without', 'net', 'sad'], ['miss', 'parti', 'bought', 'wine', 'everyth'], ['think', 'phone', 'offici', 'bit', 'dust'], ['want', 'comment', 'not', 'understand', 'say'], ['go', 'big', 'plan', 'thank', 'tonsil'], ['miss', 'youu', 'wish', 'dodg', 'semi'], ['saw', 'us', 'postal', 'hire', 'done', 'fill', 'thingi', 'not', 'show', 'job', 'open', 'area'], ['make', 'sad'], ['want', 'happi'], ['wish', 'could', 'see', 'dramafest', 'bad'], ['god', 'bore', 'wish', 'could', 'done', 'someth'], ['miss', 'stupid', 'work'], ['work', 'miss', 'miami', 'fam', 'carolina', 'amp', 'amp', 'amp'], ['lame', 'right', 'know', 'date', 'cali'], ['think', 'not', 'handl', 'life', 'like', 'anymor', 'almost', 'seem', 'suicid', 'answer', 'unfortun'], ['tri', 'reorgan', 'plan', 'tonight', 'ugg', 'hope', 'still', 'lot', 'fun'], ['noth', 'sad'], ['yeah', 'sound', 'bit', 'bad', 'man', 'got', 'fuck', 'exam', 'week', 'week'], ['terribl', 'save', 'money'], ['work', 'diffus', 'irrit', 'traffic', 'sure', 'not', 'help', 'mother', 'f', 'alway', 'real', 'bad', 'day', 'th', 'help', 'plan', 'stuff'], ['want', 'see', 'saw', 'pg', 'total', 'bum'], ['brother', 'back', 'amp', 'amp', 'found', 'realli', 'small', 'dead', 'bird', 'deck', 'sad', 'basic', 'cri'], ['wish', 'could', 'via', 'funchal', 'yesterday', 'perfect', 'best', 'day', 'life', 'xx'], ['see', 'color', 'sky', 'look', 'philli', 'look', 'scari', 'lol'], ['miss', 'jp', 'not', 'know', 'iv', 'given', 'headach', 'think', 'make', 'want', 'cri'], ['sister', 'would', 'hahah', 'funni', 'thought', 'like'], ['lost', 'pleas', 'help', 'find', 'good', 'home'], ['ugh', 'not', 'feel', 'well', 'sudden'], ['anyway', 'could', 'forgiv'], ['trip', 'tired', 'nott', 'nice'], ['bella', 'not', 'love'], ['sore', 'tummi'], ['miss', 'alreadi', 'sad', 'face', 'text', 'serious', 'go', 'make', 'cri'], ['happen', 'jerk'], ['haha', 'miss', 'havnt', 'seen', 'age'], ['jetway', 'feel', 'like', 'seventh', 'layer', 'hell', 'oh', 'way', 'mani', 'babi', 'flight', 'forgot', 'bose'], ['realli', 'need', 'invest', 'ellipt', 'machin', 'run', 'shin', 'splint', 'suck'], ['alex', 'slam', 'head', 'edg', 'tabl', 'min', 'ago', 'go', 'nice', 'blue', 'bruis'], ['everyon', 'left', 'gone', 'bed'], ['hungov'], ['yay', 'soon', 'possibl', 'lol', 'awwh', 'miss', 'friday', 'night', 'happi', 'hour', 'even', 'luna', 'del', 'sea', 'quot', 'boy', 'quot', 'hahahaha'], ['slam', 'via', 'dm', 'papaya', 'lobbyist', 'holi', 'crap', 'mangosteen', 'durian', 'cybersecur', 'stick'], ['aw', 'littl', 'asian', 'girl', 'run', 'round', 'poop', 'pant', 'public', 'miss', 'laugh'], ['love', 'alreadi', 'got', 'plan', 'go', 'queen', 'mari'], ['hope', 'hoe', 'much', 'much', 'without', 'though', 'lol'], ['kennedi', 'raw', 'monday', 'got', 'serious', 'muscl', 'issu', 'back', 'broken', 'wrist'], ['not', 'let', 'twitter', 'keep', 'say', 'twitter', 'capac', 'someth', 'bird', 'keep', 'come'], ['took', 'calculus', 'exam', 'today', 'think', 'well', 'mess', 'one', 'deriv', 'ident', 'though', 'well', 'never', 'miss', 'one'], ['miss', 'soo', 'much', 'not', 'go', 'see', 'month'], ['coupl', 'year', 'may', 'die', 'without', 'kateag', 'keep', 'finger', 'cross', 'though'], ['lost', 'voic'], ['woke', 'earli', 'morn', 'not', 'happi', 'bout', 'headach', 'dizzi', 'not', 'breath', 'yeh', 'still', 'sick'], ['not', 'win', 'lammi', 'last', 'night', 'happi', 'scott', 'sherman', 'walk', 'feet', 'bea', 'today'], ['yea', 'think', 'wait', 'long', 'oh', 'well', 'cool', 'sign', 'alreadi', 'done', 'core', 'class'], ['reaon', 'not', 'worth', 'drunk', 'reason', 'depress', 'revis', 'noth', 'happen', 'reason', 'worth', 'matt', 'not', 'know'], ['nocturn', 'serendip', 'kashmir', 'import', 'mean', 'end'], ['aww', 'type', 'beyond'], ['stupid', 'putet', 'not', 'let', 'go', 'chat'], ['shout', 'might', 'right', 'starv', 'thing', 'littl', 'lol'], ['sit', 'traffic', 'car', 'get', 'rain', 'wash', 'sunday', 'not', 'weather', 'know', 'california'], ['sorri', 'bro', 'rough'], ['miss', 'roommat'], ['scanton', 'farr', 'elain', 'got', 'cartilag', 'pierc', 'cute'], ['tri', 'fix', 'not', 'quot', 'ahi', 'dio', 'mio', 'quot', 'good', 'lol'], ['plan', 'take', 'flight', 'go', 'tonight', 'sink', 'hudson', 'sinc', 'work', 'morn', 'stupid', 'bird', 'strike'], ['soo', 'hungri', 'right', 'eaten', 'wed'], ['bore', 'internet', 'not', 'made', 'downtown', 'beach', 'yet'], ['ooh', 'boo', 'see', 'bar', 'well', 'miss', 'make', 'pt', 'stop'], ['omfg', 'down', 'tasti', 'ate', 'almost', 'lo'], ['umm', 'comment', 'lol', 'actual', 'not', 'watch', 'gh', 'week'], ['scram', 'littl', 'earli', 'nib', 'sound', 'pathet'], ['dear', 'god', 'hope', 'save'], ['ballerina', 'famili', 'super', 'nice', 'albeit', 'littl', 'control', 'son', 'life', 'bayou', 'famili', 'judgement'], ['chew', 'starbuck', 'subway', 'gift', 'card', 'christma', 'time', 'got', 'big', 'troubl', 'not', 'allow', 'near', 'purs'], ['sometim', 'wish', 'man', 'could', 'pee', 'stand', 'scratch', 'chest', 'instead', 'lie', 'breast', 'hah'], ['feel', 'realli', 'sick', 'puke', 'gut', 'help', 'pleas'], ['dang', 'hour', 'drive', 'bad', 'daughter', 'birthday', 'parti', 'host', 'donni'], ['slip', 'caught', 'flu', 'feel', 'like', 'poop'], ['noo', 'not', 'busi', 'ever', 'srsli', 'pal', 'not', 'yet', 'familiar', 'iphon', 'twitter'], ['nope', 'love'], ['awe', 'sorri', 'probabl', 'true'], ['swollen'], ['babi', 'maryland', 'not', 'go', 'make', 'see', 'sexi', 'ass', 'next', 'sat', 'camden', 'earli', 'n', 'hang'], ['music', 'work', 'today', 'pain'], ['wish', 'see', 'cnn', 'volum'], ['realli', 'realli', 'itchi', 'eye'], ['feel', 'sick', 'wonder', 'get', 'bed', 'go', 'throw', 'go', 'sleep'], ['sorri', 'want', 'call', 'not', 'aim', 'coupl', 'hour', 'need', 'vent'], ['repli', 'would', 'make', 'life', 'repli', 'usual', 'peopl', 'call', 'gay', 'tell', 'willblok'], ['lol', 'go', 'water', 'prob', 'cold', 'heck'], ['mile', 'run', 'meter', 'swim', 'thing', 'look', 'better', 'better', 'lay', 'bike', 'today'], ['disney', 'store', 'not', 'treat', 'well', 'hour', 'reali', 'want', 'go', 'willdo', 'anythig', 'go', 'show'], ['yeah', 'need', 'fricken', 'cell', 'number', 'tri', 'home', 'month', 'hes', 'busi', 'miss', 'bradd'], ['far', 'tri', 'kill', 'twice', 'min', 'outsid', 'trip', 'stupid', 'thing', 'knew', 'stay', 'bed'], ['spoke', 'cultur', 'racker', 'castl', 'time', 'awesom', 'mexican', 'food', 'drink', 'antibiot'], ['ani', 'sorri'], ['troubl', 'starship', 'trooper', 'mean', 'great', 'big', 'pink', 'bug'], ['sad', 'not', 'hehe'], ['l', 'come', 'could', 'australia', 'far', 'away'], ['noth', 'wors', 'get', 'text', 'dog', 'abandon', 'town'], ['ftr', 'lt', 'miss', 'team', 'alreadi'], ['sorri', 'chang', 'plan', 'revis', 'monday', 'exam', 'park', 'one', 'friend'], ['littl', 'kid', 'annoy', 'hell', 'outa', 'activ', 'shout', 'attack', 'etc'], ['iphon', 'app', 'came', 'month', 'back', 'call', 'zemot', 'bump', 'domain', 'spot'], ['oh', 'god', 'look', 'quot', 'use', 'twitter', 'quot', 'hopeless'], ['know', 'twitter', 'depress', 'tonight'], ['serious', 'parent', 'non', 'stop', 'minniapoli', 'newport', 'week', 'weekend', 'san', 'diego', 'miss'], ['admit', 'grandma', 'hospit', 'last', 'one', 'pleas', 'pray'], ['yeah', 'tri', 'send', 'messag', 'also', 'tri', 'put', 'pic', 'not', 'happen', 'approv', 'summit'], ['not', 'bring', 'suck'], ['bye', 'selena', 'bad', 'not', 'get', 'talk'], ['junk', 'food', 'movi', 'tshirt', 'sweat', 'way', 'tonight', 'would', 'better', 'someon', 'hang'], ['hate', 'song', 'survey', 'alway', 'seem', 'make', 'cri'], ['let', 'know', 'soon', 'figur', 'sorri', 'mix', 'suppos', 'get', 'work', 'hour', 'ago'], ['time', 'get', 'readi', 'wrk', 'ahh', 'dnt', 'want', 'goo'], ['hate', 'bff', 'groundedd', 'boo'], ['damn', 'want', 'see', 'rest', 'saw', 'like', 'minut'], ['welcom', 'life'], ['well', 'even', 'breakdown', 'better', 'act', 'unfortun', 'britain', 'got', 'littl', 'talent'], ['lol', 'not', 'ever', 'forget'], ['start', 'min'], ['infam', 'awesom', 'eye', 'sore', 'though'], ['forgot', 'calcul', 'physic', 'oh', 'well', 'class', 'allmost'], ['fell', 'deep', 'crack', 'glacier', 'terribl'], ['dang', 'last', 'url', 'went'], ['dog', 'die', 'today', 'year', 'miss', 'much'], ['new', 'kitten', 'took', 'giant', 'wet', 'stinki', 'shit'], ['bore', 'not', 'want', 'stay', 'home', 'tonight', 'not', 'want', 'spend', 'money', 'blah'], ['cri', 'not', 'believ', 'lost', 'chat'], ['hair', 'hurt'], ['food', 'cheesecak', 'factori', 'travi', 'lost', 'passport', 'btwn', 'sd', 'lv'], ['oh', 'thank', 'put', 'follow', 'friday', 'new', 'follow', 'usual', 'tire'], ['tire', 'drive', 'realli', 'could', 'use', 'chauffeur'], ['saw', 'babi', 'dove', 'fall', 'tree', 'break', 'neck', 'die', 'tri', 'save', 'could', 'not', 'cruel', 'world'], ['movi', 'tym', 'sad', 'cri'], ['sound', 'like', 'scariest', 'zombi', 'dream', 'ever'], ['not', 'like', 'thing', 'get', 'confus', 'seem', 'happen', 'alot', 'late'], ['hey', 'fun', 'friend', 'clean'], ['guy', 'know', 'abil', 'read', 'time', 'tell', 'devic', 'fail'], ['forc', 'eat', 'red', 'hotdog', 'coz', 'starv', 'noth', 'els', 'breakfast', 'ick'], ['go'], ['feel', 'like', 'piec', 'garbag', 'see'], ['soo', 'jelous', 'right'], ['headach'], ['unfortun', 'not', 'take', 'repair', 'shop', 'replac'], ['thank', 'forev', 'curs', 'make', 'spend', 'hour', 'everytim', 'go', 'could', 'not', 'go', 'tan', 'today'], ['ugh', 'cri', 'write', 'rant', 'tumblr'], ['realli', 'wish', 'could'], ['not', 'though', 'lol', 'work', 'miss', 'blah', 'wut', 'cha'], ['sorri', 'mo', 'thought', 'work', 'tomorrow', 'go', 'casino', 'togeth'], ['friend', 'cancel', 'tomorrow', 'noth', 'make', 'sad', 'xx'], ['sad', 'daniel', 'leav', 'florida', 'gave', 'big', 'hug'], ['perform', 'lifebal', 'vienna', 'year', 'unfortun', 'not', 'get', 'chanc', 'see'], ['go', 'miranda', 'shop', 'centr', 'spend', 'time', 'famili', 'go', 'away', 'week', 'malaysia', 'go', 'miss'], ['aww', 'fine'], ['home', 'sick'], ['find', 'hardest', 'thing', 'christian', 'put', 'god', 'first', 'life', 'need', 'help'], ['sad', 'yo', 'hear', 'ashleycat'], ['twitter', 'almost', 'pass', 'bastard'], ['need', 'come', 'spend', 'time', 'roof', 'miss', 'amp', 'doubl', 'date', 'coupl', 'week'], ['go', 'kill', 'wast', 'hundr', 'download', 'realis', 'got', 'wrong', 'one'], ['sad', 'kid', 'ungrat', 'today'], ['guinea', 'pig', 'die', 'today'], ['got', 'crush', 'issu', 'tomorrow', 'friend', 'go', 'india', 'whole', 'summer', 'back', 'sad'], ['cri'], ['feel', 'dpress'], ['also', 'pop', 'phone', 'open', 'got', 'goddamn', 'dust', 'wore', 'clip', 'camera', 'panel', 'glue', 'shut'], ['lost', 'link', 'sent', 'pull', 'batteri'], ['lol', 'done', 'one', 'victim', 'lol'], ['stomach', 'hurt'], ['not', 'win', 'continu', 'tri', 'keep', 'give', 'away', 'fabul', 'watch', 'not', 'wait'], ['think', 'hate', 'not', 'realli', 'want', 'make', 'hard', 'like', 'cake', 'concert'], ['becom', 'one', 'pathet', 'girl', 'feel', 'lone', 'without', 'boyfriend', 'hahaha', 'miss', 'josey', 'alreadi'], ['put', 'origin', 'art', 'comic', 'album', 'realli', 'nice', 'except', 'show', 'much', 'like', 'cut', 'corner', 'finish'], ['yep', 'damn'], ['want', 'go', 'tonight', 'not', 'go', 'money', 'one', 'go', 'taker'], ['tvs', 'not', 'work', 'want', 'watch', 'vhit'], ['thought', 'like', 'name'], ['sadd', 'last', 'night', 'fl', 'go', 'back', 'ar', 'tomorrow'], ['woot', 'freak', 'hoo', 'though', 'mad', 'world', 'not', 'well', 'itun', 'top', 'chart'], ['sad', 'panda', 'hulu', 'not', 'eleph', 'show', 'skinnamarinkydinkydink', 'sing', 'along'], ['unfortun', 'heffa', 'decid', 'take', 'impromptu', 'mall', 'trip', 'without', 'tell'], ['miss'], ['found', 'link', 'stink'], ['jus', 'sittn', 'yo', 'boy', 'realli', 'gone', 'smh', 'yo', 'bout', 'week', 'sunday', 'von'], ['bad'], ['sad', 'think', 'know', 'exact', 'put', 'expir', 'drawer', 'thing', 'life', 'span', 'less', 'two', 'year'], ['callin', 'grimmi'], ['miss', 'nathan', 'bccg', 'alreadi', 'best', 'friend', 'tri', 'visit', 'head', 'back', 'tomorrow', 'afternoon'], ['teh', 'part', 'hes', 'liek', 'feel', 'girl', 'feel', 'soo', 'soori'], ['miss', 'nicc', 'today'], ['hair', 'earli', 'start', 'tomorrow', 'head', 'london', 'cloth', 'show', 'great', 'place', 'feel', 'fat', 'bright', 'side', 'motiv'], ['brother', 'week'], ['plus', 'janessa', 'hurt', 'feel'], ['bahah', 'sad', 'not'], ['know', 'funni', 'thing', 'everyon', 'pack', 'pack', 'go', 'mexico', 'not'], ['justin', 'warm', 'make', 'worri', 'high', 'fever', 'go', 'sleep'], ['heart', 'broke', 'littl', 'littl', 'mean', 'lot'], ['mom', 'season', 'weed', 'got', 'burnt', 'famili', 'friend', 'mobil', 'home'], ['not', 'bank', 'cash', 'shit', 'tom', 'thumb', 'four', 'bank', 'account', 'gone', 'negat'], ['chill', 'tv', 'quit', 'bore', 'moment'], ['glad', 'sam', 'good', 'mood'], ['enjoy', 'laker', 'game', 'guy', 'sinc', 'work'], ['worst'], ['think', 'plus', 'everyon', 'want', 'see', 'could', 'keep', 'go', 'obvious', 'not', 'hope', 'bounc', 'back'], ['wow', 'soo', 'hungov'], ['miss', 'home', 'farm'], ['not', 'make', 'shop', 'alway', 'tomorrow'], ['tryin', 'not', 'bore', 'today', 'not', 'seem', 'come', 'thing', 'say'], ['love', 'game', 'show', 'suupper', 'piss', 'got', 'cancel'], ['said', 'bum', 'miss', 'sigh', 'want', 'go', 'california'], ['stupid', 'bipolar', 'weather', 'ruin', 'day'], ['sorri', 'drace', 'suck', 'bad'], ['oh', 'stink'], ['heart', 'mela', 'much', 'cept', 'last', 'time', 'went', 'book', 'us', 'saturday', 'instead', 'friday', 'would', 'not', 'feed', 'us'], ['friday', 'made', 'miss', 'high', 'school'], ['know', 'asham', 'not', 'watch', 'singl', 'episod', 'new', 'gh', 'season', 'kept', 'fall', 'asleep', 'gave'], ['fail', 'second', 'year', 'med', 'school', 'not', 'know', 'say'], ['hi', 'daughter', 'youngest', 'turn', 'monday', 'time', 'go', 'sniffl', 'sniffl', 'sob', 'sob'], ['chillaxin', 'screw'], ['friend', 'mine', 'meet', 'today', 'not', 'wait', 'turn'], ['not', 'believ', 'tire', 'right', 'not', 'know', 'go', 'tonight', 'exhaaust'], ['shame', 'wisdom', 'come', 'age', 'age', 'destroy', 'youth'], ['think', 'pay', 'attent', 'type', 'thing', 'bout', 'hit', 'bush', 'pretend', 'purpl'], ['mess', 'miss', 'bra', 'strap'], ['plane', 'land', 'final', 'go', 'get', 'hour', 'late', 'stupid', 'rain'], ['okay', 'drive', 'know', 'know', 'correct', 'say'], ['final', 'chanc', 'show', 'genuin', 'love', 'not', 'depend', 'selfish', 'love', 'hope', 'heart', 'goe', 'sorri', 'pain'], ['bus', 'roll', 'along', 'faster', 'expect', 'might', 'make', 'home', 'mayb'], ['work', 'soonn', 'look', 'realli', 'dead', 'today'], ['well', 'look', 'like', 'go', 'anoth', 'night', 'without', 'snuggl', 'bug', 'miss', 'big', 'girl'], ['wow', 'one', 'love'], ['spill', 'everyth'], ['not', 'feel', 'good'], ['hahahaha', 'not', 'friend', 'sinc', 'sunday', 'lame'], ['hannah', 'montana', 'set', 'miss', 'tennesse', 'alot', 'today'], ['wait', 'dang', 'pizza', 'cook', 'almost', 'still', 'not', 'eaten', 'wifey', 'fail', 'mention', 'feel', 'like', 'crap'], ['take', 'caltrain', 'go', 'see', 'giant', 'cold', 'someon', 'smell', 'like', 'pee'], ['biglot', 'hous', 'jesus', 'amp', 'virgin', 'mari', 'ring', 'one', 'machin', 'rock', 'one', 'til', 'shit', 'broke'], ['argh', 'fail', 'make', 'sad'], ['token', 'not', 'work', 'day'], ['wrong', 'flickr', 'quilt', 'top', 'photo', 'show', 'click', 'sad', 'stori'], ['lmao', 'mess', 'go', 'atl', 'week'], ['hous', 'hunt', 'next', 'fun'], ['aww', 'homesick', 'feel', 'homesick', 'home', 'campp'], ['hope', 'yer', 'ok', 'hunni'], ['still', 'pic', 'sad'], ['slept', 'alarm', 'woke', 'instead', 'feel', 'like', 'complet', 'tool'], ['want', 'see', 'ephraim', 'zenh', 'tomorrow', 'lot', 'find', 'sitter', 'wtf', 'everyon', 'plan', 'saturday'], ['whore', 'never', 'know', 'said', 'cuz', 'not', 'love', 'twitter'], ['sorri', 'fell', 'asleep', 'first'], ['tri', 'listenin', 'music', 'half', 'hour', 'tri', 'readin', 'realli', 'bore', 'wide', 'awak'], ['took', 'shirt', 'back', 'cover', 'blister'], ['cool', 'aww'], ['go', 'bed', 'late', 'headach'], ['stuck', 'ladi'], ['feel', 'sick'], ['cancel', 'perform', 'letterman', 'sad', 'less', 'option'], ['even', 'town', 'jeremi', 'sad', 'carri', 'not', 'come'], ['would', 'nowher', 'go', 'one', 'go'], ['rachel', 'chelsey', 'left', 'jenni', 'stole', 'bike', 'make', 'muy', 'trist'], ['list', 'sad', 'song', 'sad'], ['still', 'rain', 'forget', 'sunshin', 'look', 'like'], ['watchin', 'greas', 'wait', 'hurri', 'come', 'talk', 'girl', 'ugh', 'seem', 'far', 'away'], ['oh', 'suck', 'tell', 'dh', 'act', 'like', 'grown', 'mayb', 'would', 'stress'], ['boo', 'use', 'live', 'upland', 'funn'], ['load', 'high', 'qualifi', 'stuff', 'load', 'still', 'use', 'snail', 'mail'], ['noth', 'wors', 'work', 'friday', 'night', 'wake', 'saturday', 'want', 'babe'], ['could', 'get', 'sack', 'soon', 'not', 'good'], ['think', 'world', 'hannah', 'montana', 'set', 'miss', 'tennesse', 'alot', 'today'], ['rememb', 'still', 'summer', 'project', 'never', 'end'], ['know', 'lot', 'comment', 'return', 'realli', 'busi', 'get', 'round', 'guy', 'sorri'], ['josi', 'surgeri', 'offici', 'unabl', 'procreat', 'way', 'poor', 'medic', 'babi'], ['gaah', 'rain', 'tomorrow'], ['saturday', 'worst', 'saturday', 'age'], ['riley', 'alphabet', 'fashion', 'show', 'today', 'forgot', 'camera', 'cute'], ['not', 'sound', 'fun'], ['oh', 'damn', 'suck'], ['hannah', 'montana', 'set', 'miss', 'tennesse', 'alot', 'today'], ['got', 'home', 'nice', 'parti', 'not', 'tire', 'yet'], ['not', 'make', 'pitch'], ['want', 'new', 'moon', 'ahh', 'go', 'crazi'], ['daang', 'sold'], ['not', 'want', 'work'], ['carnivalsofpari', 'think', 'still', 'bl', 'not', 'sure', 'hard', 'talk', 'anyon', 'anymor'], ['want', 'get', 'dress', 'go', 'one', 'go', 'mentor'], ['twitter', 'not', 'chang', 'anyth', 'twitter', 'heck', 'wrong'], ['starv', 'diet', 'kill', 'not', 'eat'], ['miss'], ['super', 'sad', 'bart', 'etc', 'hold'], ['home', 'lost', 'basebal', 'game', 'friggin', 'point', 'go', 'scrap'], ['not', 'want', 'senior', 'leav'], ['playin', 'citi', 'villain', 'wishin', 'buddi', 'playin'], ['lone'], ['terribl', 'day', 'six'], ['mom', 'want', 'lay', 'later', 'probabl', 'littl', 'sorri', 'sick'], ['least', 'posada', 'good', 'ab'], ['coupl', 'hour', 'got', 'sun', 'burn', 'realli', 'uncomfort'], ['hope', 'get', 'well', 'soon', 'lt'], ['follow', 'sad', 'lose', 'hope'], ['test', 'tomorrow', 'not', 'studi', 'go', 'bad'], ['congratul', 'guy', 'finish', 'month', 'earli', 'boo'], ['think', 'wear', 'bermuda', 'cinema', 'not', 'good', 'idea', 'outsid', 'humid', 'like', 'cwazi'], ['doubl', 'rainbow', 'organ', 'pretti', 'not', 'take', 'edg', 'groceri', 'tab'], ['took', 'properti'], ['ac', 'hous', 'broke'], ['pavement', 'boil', 'hot', 'dog', 'limp', 'guess', 'summer', 'offici'], ['life', 'suck', 'not', 'fun'], ['went', 'get', 'inflat', 'gas', 'went', 'anoth', 'cent', 'hit', 'tcot'], ['not', 'mood', 'crazii', 'crazii', 'high', 'upset', 'everyth', 'amp', 'everybodi'], ['gossip', 'fluffodil', 'latest', 'mad', 'night', 'teg', 'jack', 'lou', 'tess', 'frey', 'gender', 'war', 'sad', 'friend', 'also'], ['use', 'book', 'expo', 'canada', 'toronto', 'cancel', 'year', 'beatwittyparti', 'beatwittyparti'], ['nail', 'broke', 'haat'], ['well', 'first', 'tweet', 'today', 'fail', 'lol', 'back', 'sleep', 'bacon', 'egg', 'hard', 'choos'], ['girl', 'come', 'boyfriend', 'forget'], ['thank', 'point', 'crucial', 'problem', 'taken', 'care', 'cc'], ['pleas', 'ignor', 'cheesey', 'music'], ['victori', 'bulldog', 'celebr', 'white', 'chocol', 'cheesecak', 'nom', 'nom', 'nom', 'whatta', 'fattyy'], ['love', 'everi', 'littl', 'thing'], ['macbook', 'run', 'linux', 'parallel', 'imac', 'use', 'vmware', 'fusion', 'great', 'especi', 'quot', 'uniti', 'quot'], ['job', 'nice', 'day', 'not', 'better'], ['tweet', 'whore', 'tweet'], ['well', 'welcom', 'back', 'dark', 'side'], ['cat', 'enjoy', 'sunbeam', 'open', 'window', 'think', 'count'], ['susan', 'egan', 'love', 'yeah', 'said', 'would', 'pleasant', 'trip'], ['sike', 'sike', 'call', 'truce', 'still', 'bitch', 'peopl', 'still', 'go', 'air', 'though'], ['wait', 'email', 'probabl', 'never', 'arriv', 'ed', 'later', 'consti', 'studi', 'hopeless', 'bum'], ['happi', 'clean', 'squeaki', 'clean'], ['thank', 'thank', 'thought', 'cool', 'kid', 'hang', 'hehe', 'xoxo'], ['annoy', 'gear', 'take', 'hand'], ['want', 'semest', 'week', 'half', 'move', 'time'], ['yes', 'nba', 'song', 'great', 'got', 'old', 'funni', 'nba', 'cheerlead', 'remix', 'song', 'ohrwurm', 'day', 'quot', 'colorblind', 'quot'], ['thank', 'share'], ['great', 'chat', 'friend', 'total', 'put', 'mind', 'eas'], ['cheap', 'good', 'system'], ['oh', 'good', 'idea', 'put', 'ice', 'cream'], ['yay', 'moment', 'today', 'yay', 'hope'], ['sound', 'like', 'great', 'night', 'glad', 'success'], ['thank', 'god', 'camera', 'fix', 'want', 'new', 'ipod'], ['woop', 'bought', 'elliot', 'minor', 'album', 'itun', 'final', 'work'], ['point', 'point', 'yesterday', 'peopl', 'wait', 'til', 'midnight', 'kind', 'piss'], ['come', 'tri', 'find', 'fan'], ['watch', 'video', 'youtub', 'funni', 'david', 'oh', 'talent', 'cours'], ['thks', 'follow', 'tweet', 'return', 'love'], ['interest', 'generat', 'setup', 'script', 'uninstal'], ['morn', 'back', 'blighti', 'bill', 'hope', 'love', 'time', 'away'], ['want', 'hear', 'someth', 'funni', 'radio', 'right'], ['happi', 'woke', 'side', 'earth', 'wish', 'bit', 'late'], ['work', 'mama', 'sweetdream'], [], ['noth', 'better', 'go', 'chines', 'supperinn', 'fave', 'cousin'], ['feel', 'pretti', 'damn', 'gud', 'not', 'even', 'hangov', 'nice', 'feel'], ['ahh', 'gtg', 'pls', 'help', 'number', 'come', 'back', 'later', 'see', 'said', 'haha', 'plz', 'thank'], ['lol', 'well', 'thank'], ['not', 'bad', 'expect', 'could', 'done', 'better', 'today', 'great', 'show'], ['aww', 'boo', 'fuck', 'love', 'gir', 'thingss'], ['thankyou', 'short', 'stack', 'bring', 'second', 'sydney', 'show', 'go', 'thank', 'guy', 'good', 'fan'], ['final', 'gone'], ['hey', 'never', 'realiz', 'also', 'get', 'twitter', 'account', 'guid', 'truli', 'mani', 'time', 'lifesav'], ['good', 'job'], ['welcom'], ['love', 'go', 'one', 'new', 'fave', 'quot'], ['love', 'sunshin', 'happi', 'bring'], ['thank', 'bebeisi', 'right', 'name', 'chanv', 'elisabeth'], ['chem', 'not', 'better', 'physic', 'tire', 'hahaha', 'ntn', 'bbf', 'juga', 'ya', 'hihi', 'gue', 'sukanya', 'jun', 'pyo'], ['happi', 'birthday', 'cheer', 'pao'], ['aww', 'think', 'lot', 'glad', 'enjoy'], ['download', 'movi', 'quot', 'annual', 'academi', 'award', 'quot', 'cool', 'movi'], ['realli', 'smart'], ['thank', 'link', 'geoff'], ['aahh', 'shower', 'great'], ['awesom'], ['cri', 'tuesday', 'cos', 'find', 'econom', 'offic', 'cri', 'subject', 'lol'], ['hangin', 'home', 'watchin', 'twiligghhtt', 'readin', 'lol', 'school', 'sukk', 'today', 'bahaha'], ['yea', 'know', 'right', 'love', 'song'], ['bank', 'holiday', 'stupid', 'wait', 'not', 'bank', 'holiday', 'america', 'okay', 'keep', 'celebret'], ['hi', 'recov', 'parti', 'look', 'forward', 'excit', 'bank', 'holiday', 'around', 'diy', 'not', 'get', 'much'], ['birthday', 'well', 'happi', 'birthday'], ['say', 'got', 'card', 'today', 'eva', 'n', 'clara', 'thank', 'guy'], ['back', 'woo', 'want', 'press', 'releas'], ['anoth', 'one', 'pop', 'human', 'congrat', 'nana', 'wan', 'babi', 'iri', 'cuti'], ['tx', 'worth', 'wait', 'lol'], ['awesom', 'work', 'good', 'friend'], ['well', 'done', 'visteon', 'belfast', 'year', 'salari', 'paid', 'show', 'happen', 'stand'], ['not', 'worri', 'get', 'stamina', 'back', 'soon', 'kind', 'distanc', 'run', 'usual'], ['thank', 'learn', 'someth', 'new', 'today', 'enjoy'], ['possibl', 'phobia', 'phobia', 'afraid', 'look', 'list'], ['head', 'long', 'band', 'practic', 'last', 'one', 'first', 'show', 'saturday', 'night', 'hope', 'good', 'one'], ['thank', 'kno', 'peopl', 'alreadi', 'look', 'chest', 'ne', 'way', 'might', 'well', 'give', 'somethng', 'throw', 'lol'], ['dj', 'partypeopl', 'great', 'cc', 'kick', 'next', 'one', 'june'], ['fine', 'go', 'big', 'walk', 'today', 'mile'], ['wow', 'realli', 'sweet', 'assum', 'thank', 'much'], ['ok', 'david', 'talk', 'later', 'great', 'dayi', 'ay', 'ay', 'ay', 'ay'], ['know', 'work', 'bore', 'prefer', 'take', 'life'], ['aw', 'sound', 'amaz', 'think', 'work', 'thank', 'invit', 'though'], ['yay', 'excit'], ['mayb', 'hot', 'date', 'nice', 'littl', 'cesna'], ['cool', 'doown', 'patienc', 'virtu'], ['stop', 'follow', 'ama', 'realli', 'need', 'clean', 'break', 'anoth', 'note', 'kate', 'super', 'nice', 'right', 'work'], ['sound', 'great', 'look', 'forward'], ['want', 'share', 'follow', 'feel', 'inspir', 'long', 'day'], ['bye', 'great', 'time', 'whisk', 'away'], ['not', 'wait', 'love', 'script', 'honest', 'futur', 'career', 'script', 'writer', 'stock', 'twit'], ['not', 'mind', 'chang', 'profil', 'pic', 'pictur', 'uk', 'fun'], ['hey', 'good', 'see', 'follow', 'would', 'nice', 'photo'], ['woke', 'school', 'today', 'free'], ['got', 'brace', 'tighten', 'today', 'got', 'mcdonald', 'haha', 'sport', 'tomorrow', 'yay', 'yay', 'yay', 'netbal', 'tryout', 'wish', 'luck', 'make', 'team', 'l'], ['lot', 'usual', 'laundri', 'thank', 'god', 'clean', 'hous', 'prais', 'god', 'cut', 'hedg', 'thank', 'prais', 'god'], ['thank', 'sympathi', 'not', 'bad', 'hour', 'ago', 'start', 'think', 'appoint', 'tomorrow'], ['tafe', 'actual', 'quit', 'good'], ['true', 'form', 'bank', 'holiday', 'monday', 'look', 'like', 'might', 'raini', 'hope', 'hold', 'til', 'later', 'famili', 'amp', 'friend', 'plan', 'walk', 'picnic', 'today'], ['thank', 'follow', 'ad', 'twitter', 'page', 'comment', 'blog'], ['thank', 'soo', 'much', 'lil', 'mama', 'xoxo'], ['like', 'abl', 'say', 'truth', 'instead', 'magic', 'mysteri', 'tour', 'get', 'led'], ['lt', 'korn', 'guy', 'champion', 'world'], ['long', 'frisbe', 'golfer', 'quot', 'accident', 'quot', 'catch', 'one', 'back', 'head', 'friend'], ['ad', 'butt', 'name', 'phone', 'made', 'go', 'home', 'cold', 'love'], ['not', 'read', 'book', 'heard', 'feed', 'spay', 'love', 'great', 'motto', 'pet', 'owner', 'although', 'involv'], ['photo', 'great', 'night'], ['would', 'like', 'june', 'nineteenth', 'hurri', 'self', 'wait', 'impati', 'see', 'wes', 'carr'], ['listen', 'commentari', 'track', 'holiday', 'inn', 'never', 'thought', 'would', 'see', 'bing', 'crosbi', 'black', 'face', 'rest', 'movi', 'cute'], ['gt', 'quot', 'live', 'q', 'amp', 'quot', 'definit', 'best', 'part', 'twitter'], ['oh', 'hi', 'terri', 'good', 'good', 'gossip'], ['woohoo', 'well', 'done', 'start'], ['bank', 'holiday', 'mondaay', 'exam', 'tomorrow'], ['thank', 'good', 'read', 'blog', 'post'], ['hi', 'nice', 'meet', 'new', 'twitter', 'guess'], ['good', 'thought', 'regist', 'na'], ['also', 'brain', 'tumor', 'call', 'jefferi'], ['excit', 'lot', 'good', 'thing', 'happen', 'melbourn'], ['recov', 'mexican', 'fiesta', 'bit', 'much', 'good', 'time'], ['jealous', 'guess', 'walk', 'around', 'offic', 'tomorrow', 'malo'], ['new', 'babi', 'arriv', 'yesterday', 'fab', 'babi', 'boy', 'kilo', 'proud', 'happi'], ['spirit', 'uk', 'realli', 'lol', 'like', 'pic', 'way', 'xx', 'x'], ['dinner', 'amount', 'dinner', 'one', 'greater', 'say', 'afternoon', 'snack', 'pack', 'day', 'prob', 'ok'], ['glad', 'call', 'relationship', 'clear', 'happi', 'hear', 'voic', 'eventhough', 'absent', 'school'], ['awhh', 'age', 'not', 'matter', 'awesom', 'ladi'], ['hello', 'sound', 'good', 'count', 'follow'], ['yeah', 'suspicion', 'think', 'go', 'come', 'home', 'want', 'spend', 'ton', 'money', 'tool'], ['musicmonday', 'nicest', 'thing', 'kate', 'nash'], ['great'], ['good', 'luck', 'breakfast', 'search', 'us', 'go', 'bed', 'lol', 'goodnight', 'david'], ['look', 'forward', 'new', 'week', 'present', 'book', 'store', 'dillingen', 'today', 'interest', 'sale', 'seminar'], ['watch', 'jona', 'funni'], ['come', 'rochest', 'nikki', 'beer', 'hog', 'roast', 'alway', 'help'], ['make', 'feel', 'better', 'cocktail', 'honour', 'get', 'retort'], ['watch', 'movi', 'rock', 'babi', 'kitti', 'asleep', 'sling', 'hang', 'neck', 'cute'], ['nice', 'new', 'profil', 'pictur', 'glad', 'see', 'friend'], ['awoogahh', 'hehe', 'hope', 'get', 'decent', 'price', 'breakfast', 'real', 'quick', 'david'], ['would', 'hurt', 'touch', 'get', 'hit', 'not', 'not', 'month', 'would', 'not', 'hurt', 'na'], ['shrug', 'funni', 'plus', 'know', 'enjoy', 'tweet', 'whore', 'love'], ['morn', 'coffe', 'fresh', 'air'], ['welcom'], ['omg', 'mummi', 'bought'], ['hah', 'great', 'thank', 'wait', 'crazi', 'take'], ['weekend', 'also', 'great', 'two', 'friend', 'julia', 'four', 'day'], ['excit', 'thing', 'jay', 'room', 'arriv'], ['realli', 'realli', 'want', 'go', 'see', 'coralin'], ['care', 'eurovis', 'yes', 'vote', 'year'], ['happi', 'birthday', 'littl', 'sister', 'mine', 'also', 'good', 'night', 'priscilla'], ['want', 'honorari', 'filipino', 'follow', 'thank'], ['look', 'forward', 'coffe', 'drive', 'tomorrow', 'realli'], ['actual', 'use', 'standard', 'speaker', 'wire', 'standard', 'termin', 'solder', 'involv', 'anyth'], ['haha', 'good', 'bet'], ['clever', 'girl'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['oop', 'would'], ['consol', 'definit', 'one', 'hottest', 'gg', 'imho'], ['today', 'celebr', 'two', 'new', 'peopl', 'becom', 'australian', 'citizen', 'hope', 'good', 'dinner'], ['naw', 'miss', 'video', 'cool', 'look', 'sexi'], ['not', 'realli', 'injur', 'not', 'much', 'exercis', 'kg', 'come', 'alreadi', 'also', 'still', 'look', 'rent', 'place', 'fun', 'time'], ['prom', 'awesom'], ['good', 'boy', 'friend', 'like'], ['joey', 'get', 'new', 'lizard', 'fun', 'x'], ['wow', 'heheh', 'mode'], ['hope', 'train', 'rememb', 'way', 'go', 'bit', 'loopi', 'bank', 'holiday'], ['possess', 'beyond', 'certainti', 'made', 'rite', 'decis'], ['well', 'hope', 'good', 'weekend', 'even', 'good', 'day', 'work', 'alreadi', 'monday', 'far', 'good'], ['good', 'more', 'mr', 'bailey', 'birthday', 'today'], ['like', 'lott', 'lott', 'think', 'realli', 'hot', 'hot', 'good', 'night'], ['seen', 'doctor', 'today', 'everyth', 'fine', 'might', 'go', 'ultrasound', 'scan', 'precaut'], ['like', 'report', 'tester', 'new', 'packag', 'synolog', 'diskstat'], ['bruno', 'arghh', 'not', 'wait'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['thank', 'welcom', 'back'], ['thank', 'good', 'sir', 'surpris', 'good', 'afternoon', 'product'], ['welcom', 'home', 'glad', 'made', 'home', 'safe'], ['best', 'thing', 'life', 'free', 'x'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['cuddl', 'girl', 'cuddl', 'fun', 'soft'], ['good', 'take', 'rest'], ['not', 'get', 'urself', 'gin', 'whichev'], ['glad', 'like', 'done', 'load', 'arrang', 'one', 'could', 'find', 'blip'], ['fil', 'cool', 'peopl', 'like'], ['hey', 'thank', 'advic', 'amp', 'support'], ['sleepi', 'tabz', 'head', 'bed', 'fun', 'night', 'listen', 'next', 'episod', 'joss'], ['oh', 'see', 'like', 'morn', 'right', 'happi', 'breakfast', 'thumb'], ['tell', 'ill', 'beat', 'not', 'share'], ['aww', 'love', 'way', 'cute'], ['brilliant', 'sweeti', 'bless', 'joy'], ['hello', 'late', 'play', 'internet', 'love'], ['finish', 'studi', 'abnorm', 'psycholog', 'eek', 'still', 'two', 'day', 'fine'], ['ooh', 'coffe', 'great', 'idea', 'want', 'one'], ['lol', 'highlight'], ['touch', 'hand', 'video', 'simpli', 'amaz', 'love'], ['brave', 'standbi', 'line', 'theview', 'bright', 'amp', 'earli', 'today', 'hope', 'hear', 'book', 'amp', 'hope', 'get', 'time', 'charm'], ['know', 'would', 'make', 'realli', 'tire', 'put', 'sleep', 'would', 'sleep', 'good', 'lmao'], ['omg', 'never', 'would', 'believ', 'ahaha', 'love', 'felt', 'like', 'movi', 'real'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['sound', 'pretti', 'cool', 'great', 'job', 'man'], ['haha', 'cours', 'favorit', 'album', 'time'], ['lol', 'made', 'huge', 'mess', 'school', 'shirt', 'use', 'charcoal', 'stick', 'art'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['haha', 'hey', 'check', 'love', 'tweet'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['sunday', 'relax', 'enjoy', 'beauti', 'weather', 'good', 'nite'], ['late', 'news', 'much', 'need', 'tweet'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['yeah', 'great', 'outsid', 'without', 'amp', 'cold', 'air', 'love', 'sunni', 'day'], ['one', 'look', 'not', 'know', 'yet', 'follow', 'anyway', 'good', 'guy'], ['year', 'move', 'ibm', 'compat', 'would', 'love', 'desk', 'call', 'techi'], ['ohmygosh', 'know', 'would', 'make', 'night', 'sure', 'lol', 'goodnight'], ['not', 'ever', 'turn', 'part', 'brain', 'talk', 'crap', 'fun', 'come'], ['gave', 'great', 'smile', 'nice', 'way', 'end', 'day', 'right'], ['love', 'night', 'famili', 'guy', 'bed'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['want', 'say', 'best', 'screen', 'name', 'ever'], ['still', 'want', 'smartcar', 'not', 'wonder', 'design', 'ever'], ['love', 'worship', 'paper', 'fantast', 'day', 'lord', 'good', 'constant', 'surpris'], ['ah', 'bank', 'holiday', 'shift', 'work', 'fun'], ['lol', 'could', 'written', 'would', 'good', 'monday', 'week', 'might', 'catch', 'x'], ['want', 'leave', 'gurante', 'not', 'find', 'nobodi', 'els', 'like', 'mee'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['excel', 'never', 'know', 'lmao'], ['night', 'night', 'dolli', 'al', 'amaz'], ['go', 'eat', 'chip', 'anybodi', 'want', 'hahaha'], ['finish', 'watch', 'episod', 'amp', 'rubi', 'metaprogram', 'screencast', 'lot', 'cool', 'tip', 'great', 'need', 'code', 'practic', 'master'], ['man', 'behind', 'awesom', 'macarena', 'vid', 'great', 'work', 'love'], ['wish', 'ya', 'belgian', 'time', 'differ', 'suck', 'take'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['yeah', 'prom', 'night', 'craft', 'good', 'movi'], ['fantast', 'love', 'thing', 'krautrock'], ['like', 'support', 'friend', 'sad', 'friend', 'though'], ['thank', 'end', 'go', 'makino', 'chaya'], ['ah', 'haha', 'excit', 'ever', 'come', 'australia', 'definit', 'go', 'movi', 'night', 'fyi'], ['excit', 'hust', 'let', 'know', 'want', 'go', 'tattoo'], ['milk', 'gran', 'torino', 'bolt', 'bride', 'war', 'new', 'town', 'yeah', 'got', 'damn', 'love', 'longhaul'], ['watch', 'quot', 'know', 'quot', 'lovin'], ['funni', 'time', 'nebal', 'plc', 'score', 'game'], ['wow', 'not', 'realis', 'hami', 'lol', 'thank', 'comment', 'blog', 'dude'], ['soo', 'wake', 'way', 'back', 'sb', 'good', 'night', 'america'], ['lol', 'got', 'use', 'talkin', 'ya'], ['new', 'van', 'nice', 'one'], ['lol', 'know', 'funni', 'ahaha'], ['watch', 'yes', 'man', 'good'], ['perfect', 'day', 'throw', 'back', 'head', 'kiss', 'good', 'bye', 'love', 'cheer'], ['top', 'word', 'tweet', 'hug', 'good', 'peopl', 'fun', 'realli', 'quit', 'nice'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['may', 'fourth', 'happi', 'star', 'war', 'day'], ['love', 'find', 'new', 'follow'], ['good', 'morn', 'fella', 'joy', 'work', 'today', 'plan'], ['hey', 'good', 'daughter', 'still', 'asleep', 'son', 'draw', 'better', 'feed', 'v', 'soon'], ['probabl', 'get', 'chilli'], ['oh', 'ok', 'kool', 'keep', 'inform', 'bout', 'check', 'page', 'nice'], ['engag', 'may', 'best', 'guy', 'could', 'not', 'happier', 'love', 'jay'], ['love', 'session', 'king', 'queen'], ['thought', 'sever', 'time', 'got', 'good', 'friend'], ['omgsh', 'follow', 'gt', 'gt', 'paramor', 'lt', 'lt'], ['saw', 'none', 'baddi', 'best'], ['hey', 'girl', 'new', 'follow', 'think', 'awesom', 'gotten', 'chanc', 'get', 'close', 'donni', 'cool'], ['thankyou'], ['trust', 'matt', 'life', 'pictur', 'funn', 'night', 'though'], ['favorit', 'thing', 'fuzzbal', 'swine', 'flu'], ['wish', 'could', 'last', 'night', 'sound', 'like', 'rock', 'not', 'wait', 'see', 'pix', 'vid'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['morn', 'hope', 'r', 'well', 'bed', 'soon'], ['best', 'show', 'ever'], ['look', 'photo', 'shoot', 'myspac', 'pic', 'see', 'love'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['monday', 'morn', 'bath', 'soo', 'relax', 'ladi', 'luxuri', 'would', 'start', 'everi', 'day', 'like'], ['love', 'find', 'region', 'group', 'twitter', 'glad', 'could', 'connect', 'new', 'peopl'], ['realli', 'love', 'pictur'], ['love', 'continu', 'delight', 'us', 'amber', 'great', 'job', 'back', 'video', 'kudo'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['ha', 'fine', 'posit', 'amp', 'aha', 'know', 'huh', 'wht', 'long', 'convers', 'remeb', 'allyson', 'even', 'lnger', 'one', 'x'], ['hi', 'upload', 'complet', 'new', 'chines', 'lesson', 'pleas', 'feel', 'free', 'watch', 'enjoy'], ['fun', 'blatant', 'ignor', 'advic'], ['well', 'uhm', 'guess', 'pretti', 'not', 'lol', 'still', 'sound', 'good'], ['play', 'around', 'amp', 'amp', 'fun', 'littl', 'kid', 'right', 'hahahahaha'], ['awesom', 'thank'], ['lol', 'hell', 'yes', 'keen', 'go', 'ski', 'trebl', 'cone', 'sometim', 'winter'], ['busi', 'alway', 'hope', 'great', 'time', 'travel', 'go', 'welcom', 'back'], ['get', 'self', 'nice', 'cup', 'tea', 'turn', 'music'], ['factori', 'ng', 'elmer', 'hihihi', 'sorri', 'corni', 'baka', 'si', 'ate', 'rubi', 'alam'], ['work', 'realli', 'hard', 'sometim', 'need', 'break', 'haha', 'let', 'know', 'need', 'help', 'anythin'], ['good', 'price', 'bulk', 'sms', 'premium', 'sms'], ['eminem', 'freak', 'awsom', 'go', 'back', 'seam', 'like', 'someth', 'big', 'insid', 'not', 'alien'], ['thank', 'daxx', 'god', 'bless', 'brother'], ['ah', 'hate', 'happen', 'race', 'eras', 'ms', 'week', 'go'], ['haha', 'see', 'go', 'wear', 'blue', 'heey', 'watch', 'jona', 'hahaha', 'not', 'watch', 'ep', 'yet', 'hope', 'show', 'soon', 'p'], ['good', 'morn', 'nice', 'see'], ['thank', 'alot'], ['got', 'twitter', 'palm', 'lt'], ['aw', 'welcom'], ['hehe', 'right', 'not', 'daft', 'may', 'good', 'month', 'french', 'contract'], ['happi', 'meal', 'toy'], ['oh', 'total', 'work'], ['happi', 'final', 'may', 'indi', 'horror', 'yet', 'still', 'remain', 'held', 'captiv', 'indi', 'spirit'], ['bright', 'school'], ['good', 'luck', 'excit'], ['amanda', 'peet', 'lot', 'like', 'love', 'love', 'classic', 'realli'], ['yeah', 'surrous', 'win'], ['sexxi', 'silli', 'weekend', 'bff', 'fun', 'time', 'haha'], ['nice', 'back'], ['green', 'day', 'boulevard', 'broken', 'dream', 'hinder', 'lip', 'angel', 'howi', 'day', 'collid', 'nice', 'song'], ['ito', 'en', 'tea', 'appl', 'delici', 'look', 'like', 'need', 'go', 'quihot', 'buy', 'goodnight'], ['rice', 'crispi', 'morn', 'bring', 'back', 'good', 'memori'], ['new', 'job', 'today', 'wish', 'luck', 'peep'], ['happi', 'birthday', 'hope', 'well', 'great', 'birthday', 'day'], ['invit', 'join', 'group', 'second', 'life', 'call', 'quot', 'ballist', 'autist', 'quot', 'cute', 'name'], ['thank'], ['birthday', 'boy', 'ipod', 'touch', 'dsi', 'sort', 'think', 'would', 'happi', 'ball', 'boot', 'age'], ['safe', 'ride', 'coast', 'not', 'go', 'even', 'though', 'windi', 'smile', 'cuz', 'know', 'better'], ['night', 'owl', 'alway', 'time', 'enjoy', 'scifi', 'show'], ['enjoy', 'time'], ['yee', 'haha', 'funniest', 'thing', 'dude', 'not', 'ball', 'bring', 'hot', 'gfs', 'along', 'watch', 'get', 'murk'], ['work', 'surpris', 'happi', 'thing', 'consid', 'ahh', 'loveli'], ['wow', 'easi', 'thank'], ['work', 'short', 'love', 'one', 'secondari', 'charact'], ['uhh', 'congrat', 'two', 'year', 'anniversari'], ['morn', 'hope', 'everyon', 'great', 'bank', 'holiday'], ['fighter', 'christina', 'aguilera', 'love', 'song'], ['lol', 'love', 'macbook', 'oh', 'imac', 'not', 'decid', 'love', 'ok', 'quot', 'imac', 'trump', 'quot', 'macbook'], ['took', 'ic', 'photo', 'look', 'good'], ['love', 'hot', 'heater', 'cold', 'warm', 'bodi', 'bed', 'day', 'yep'], ['guess', 'need', 'get', 'iphon', 'sure', 'look', 'bad', 'ass'], ['not', 'believ', 'monday', 'alreadi', 'week', 'vancouv', 'alreadi', 'gone', 'good', 'weekend'], ['lay', 'bed', 'one', 'spot', 'smell', 'like', 'vanilla', 'awesom'], ['cure', 'le', 'hangov', 'epic', 'night', 'bruis', 'batter', 'hectic', 'session', 'pretti', 'satisfi', 'thank', 'much'], ['get', 'fab', 'portrait', 'readi', 'upload', 'today'], ['feel', 'good', 'win', 'nice', 'softbal', 'champ', 'bring', 'season'], ['not', 'worri', 'happi', 'ryan'], ['thank', 'new', 'follow', 'well', 'went', 'strip', 'club', 'tonight', 'follow', 'tomorrow', 'much', 'love'], ['wow', 'trick', 'hoppusday', 'hype', 'today'], ['wahahahaha', 'want', 'naa', 'na', 'guess', 'hahahaha', 'yes', 'know', 'hahahaha', 'lol', 'narn', 'haha', 'joke'], ['got', 'school', 'detent', 'lunch', 'time', 'not', 'go', 'get', 'school'], ['go', 'get', 'tan', 'white'], ['rain', 'stuck', 'insid', 'work', 'today', 'would', 'probabl', 'peed', 'sunni', 'outsid', 'ok', 'rain'], ['wish', 'would', 'get', 'follow'], ['head', 'dinner', 'minut', 'not', 'wait', 'food'], ['bore', 'vector', 'shit', 'work', 'class'], ['good', 'tip', 'boss', 'would', 'read', 'exact', 'suppos', 'would', 'know', 'project'], ['taylor', 'swift', 'quot', 'belong', 'quot', 'amaz', 'love', 'mv'], ['hope', 'nice', 'relax', 'day', 'hope', 'well', 'wish', 'best'], ['finish', 'upload', 'latest', 'chap', 'final', 'watch', 'new', 'happyslip', 'vid'], ['thank', 'messag', 'work', 'see', 'repli'], ['chillin', 'christina', 'diana'], ['not', 'believ', 'spend', 'mani', 'mani', 'thousand', 'perfect', 'wed', 'make', 'happi', 'happi', 'coupl', 'make', 'perfect', 'wed'], ['happi', 'star', 'war', 'day', 'may', 'nice', 'get', 'holiday', 'celebr', 'fb'], ['think', 'pretti', 'much', 'figur', 'ad', 'box', 'helsinki', 'group', 'see', 'tweet'], ['thank', 'ver', 'much', 'compliment', 'level', 'best', 'know', 'not', 'let', 'mother'], ['especi', 'pink', 'one', 'lol', 'beauti', 'creatur'], ['newsread', 'fill', 'blog', 'yay', 'keep', 'blog', 'site', 'love', 'read'], ['haha', 'good'], ['good', 'hear', 'feel', 'though', 'scene', 'better', 'shown', 'tv'], ['thank', 'messag', 'work', 'see', 'repli'], ['love', 'girl', 'rock'], ['long', 'weekend', 'look', 'forward', 'end', 'may'], ['home', 'good', 'night', 'world'], ['think', 'way', 'promot', 'indi', 'design', 'benefit', 'moi', 'thought', 'indi', 'say'], ['sound', 'like', 'nice', 'weekend', 'ladi'], ['goodmorn', 'tweedl', 'happi', 'mood', 'think', 'alway', 'past', 'weekend', 'lol', 'vid', 'weeknd', 'come', 'soon'], ['school', 'today', 'teacher', 'cancel', 'lesson', 'chillin'], ['went', 'eastgarden', 'saw', 'lot', 'hillsong', 'pastor', 'go', 'nick', 'dinner', 'not', 'wait', 'talk', 'soon'], ['aww', 'kitti', 'best'], ['go', 'talk', 'ya', 'later', 'ishi', 'goodnight', 'kid'], ['nice', 'weather', 'today', 'alex'], ['come', 'back', 'drom', 'camp', 'cell', 'fone', 'recept', 'happi', 'back', 'qld', 'littl', 'bit', 'tire'], ['not', 'one', 'surpris', 'freetd', 'not', 'quot', 'work', 'quot', 'get', 'right', 'eventu'], ['good', 'morn', 'univers', 'today'], ['past', 'experi', 'redhead', 'eg', 'discrimin', 'even', 'general', 'info', 'bout', 'ginger', 'societi', 'help'], ['dammit', 'let', 'us', 'privat', 'session'], ['omg', 'slept', 'like', 'last', 'think', 'die', 'someth', 'remind', 'catcher'], ['hey', 'nice', 'pic'], ['hope', 'everyth', 'work', 'school', 'keep', 'updat', 'good', 'day'], ['bummer', 'yo', 'start', 'final', 'guess', 'see', 'around', 'second', 'week', 'june'], ['think', 'like'], ['not', 'wait', 'amp', 'amp', 'not', 'wait', 'see', 'concert', 'experi', 'live', 'uk', 'trailer', 'cinema', 'yesterday'], ['bore', 'hope', 'wlan', 'go', 'today'], ['wow', 'not', 'tell', 'cool', 'though', 'yet', 'see', 'one'], ['jersey', 'weather', 'good', 'chariti', 'drive'], ['monday', 'morn', 'lie', 'bed', 'instead', 'work', 'great', 'bank', 'holiday', 'requir'], ['night', 'night', 'twitter', 'love', 'phone', 'sleep'], ['love', 'joan', 'river', 'say', 'famili', 'first'], ['go', 'bed', 'night', 'tweeter'], ['heey', 'ice', 'winner'], ['took', 'endors', 'spot', 'thank', 'endors'], ['dude', 'saw', 'twitter', 'profil', 'long', 'time', 'love', 'background', 'way', 'way', 'cool'], ['final', 'leav', 'place', 'woohoo', 'school', 'time'], ['makeup', 'year', 'long', 'tyra', 'stole', 'away', 'us'], ['ha', 'would', 'point', 'ironi', 'last', 'spell', 'mistak', 'swear'], ['blue', 'oyster', 'cult', 'love', 'night', 'friend', 'around'], ['convert', 'armin', 'imagin', 'concert', 'iphon', 'fun', 'fun'], ['stuck', 'boo', 'jeez', 'shoot'], ['good', 'song'], ['iphon', 'owner', 'not', 'realli', 'choic', 'media', 'player', 'use', 'fyi', 'appl', 'make', 'terribl', 'window', 'softwar'], ['go', 'fun', 'night', 'help', 'host'], ['dustbin', 'babi', 'not', 'wait', 'x'], ['miss', 'se', 'asia', 'come', 'visit', 'us', 'time'], ['love', 'sex', 'magix', 'cool', 'great', 'rhythm'], ['yes', 'live', 'milwauke', 'would', 'love', 'attend', 'close', 'talk'], ['wolverin', 'hot', 'say', 'go', 'watch'], ['wow', 'heather'], ['aw', 'wish', 'ireland'], ['journey', 'wow', 'becam', 'cooler', 'hehe', 'possibl'], ['happi', 'star', 'war', 'day', 'may', 'lil', 'old', 'bro', 'home', 'play', 'lego', 'dozen', 'stormtroop'], ['nice', 'pair', 'shoe', 'check', 'nike', 'shoe', 'worth', 'buy'], ['vote', 'board', 'month', 'may', 'licens', 'member', 'good', 'luck', 'everybodi'], ['thank', 'hint'], ['without', 'tweet', 'feel', 'lost', 'hit', 'someth'], ['love', 'song', 'first', 'heard', 'video', 'gave', 'goosebump', 'thank', 'share'], ['back', 'athen', 'great', 'time', 'budapest'], ['wow', 'quit', 'long', 'time', 'studi', 'good', 'luck', 'job', 'hunt', 'also', 'mac', 'user', 'imac', 'side', 'hehe'], ['yaayi', 'not', 'wait', 'today', 'girl', 'got', 'get', 'dress', 'earli', 'go', 'earli'], ['run', 'earl', 'grey', 'lemon', 'tea', 'instead', 'whb'], ['good', 'morn'], ['move', 'new', 'apart', 'excit'], ['del', 'new', 'blogsit', 'yahoo', 'excit', 'bring', 'go', 'del'], ['offici', 'celebr', 'tweet', 'wow', 'proud', 'great'], ['watch', 'kunguma', 'poovum', 'konjuma', 'puravum', 'like', 'much', 'excel', 'cinematographi'], ['good', 'idea', 'remov', 'old', 'receipt', 'tissu', 'paper', 'nonsens', 'take', 'pic'], ['good', 'morn', 'world'], ['hey', 'wanda', 'great', 'tweet', 'mani', 'thank', 'info', 'dobro', 'fantast', 'sound', 'son', 'hous', 'fav', 'mine'], ['love', 'first', 'monday', 'may', 'bank', 'holiday'], ['cours', 'would'], ['alreay', 'feel', 'hang', 'soo', 'worth'], ['design', 'galor', 'yayi', 'progress', 'beyond', 'imagin', 'get', 'flatti', 'sort', 'internet', 'send', 'order'], ['nice', 'leav', 'offic', 'sun', 'still'], ['brian', 'teach', 'soccer', 'lot', 'fun'], ['road', 'trip', 'ftw', 'play', 'train', 'today', 'good'], ['follow', 'guy', 'could', 'shifti', 'worth', 'follow', 'regardless'], ['rain', 'fine', 'rain', 'know', 'fine', 'rain', 'wet'], ['morn', 'ali', 'big', 'thank', 'yesterday', 'love', 'alway', 'xx', 'bike', 'today', 'not', 'forget', 'get', 'helmet', 'ok'], ['oh', 'see', 'daili', 'life', 'shot', 'interest', 'well'], ['oh', 'gaha', 'cours', 'not', 'offend', 'would', 'would', 'love', 'play', 'day'], ['absolut', 'legend', 'love', 'love', 'love'], ['total', 'owe', 'week', 'duti', 'appreci', 'not', 'jill', 'town'], ['lmao', 'true'], ['may', 'happi', 'star', 'war', 'day', 'twirp', 'rofl'], ['spent', 'last', 'year', 'larg', 'ambival', 'dev', 'practic', 'feel', 'care', 'factor', 'return', 'look'], ['love', 'show'], ['thank', 'quick'], ['hehe', 'never', 'thorw', 'shoe', 'listen', 'varsiti', 'fanclub', 'surpris', 'surpris', 'sway', 'sway', 'babi', 'awesom'], ['not', 'believ', 'not', 'follow', 'anatomi', 'prac', 'tmw', 'tonight', 'structr', 'lwr', 'limb'], ['good', 'luck'], ['come', 'merci', 'alway', 'inspir', 'sinc', 'teenag'], ['thankyou', 'short', 'stack', 'bring', 'second', 'sydney', 'show', 'go', 'thank', 'guy', 'good', 'fan'], ['could', 'not', 'see', 'one', 'probabl', 'blind', 'link'], ['thank', 'vanilla', 'cake'], ['eat', 'hawain', 'pizza', 'breakfast', 'bit', 'cold'], ['control', 'tweet', 'post', 'facebook', 'use', 'hashtag', 'check', 'awesom', 'easi', 'app'], ['also', 'not', 'drive', 'part', 'could', 'afford', 'laptop', 'also', 'live', 'roommat', 'would', 'save', 'even'], ['second', 'episod', 'sonni', 'wac', 'new', 'zealand', 'tonight', 'still', 'amaz', 'ili', 'xx'], ['hectic', 'day', 'travel', 'pj', 'uniten', 'back', 'pj', 'work', 'cc', 'offic'], ['awesom', 'band'], ['inher', 'humil'], ['hi', 'name', 'chelsea', 'respect', 'opinion', 'come', 'dwts', 'great'], ['pleasur', 'anytim'], ['friend', 'sit', 'search', 'pictur', 'googl', 'haha', 'friend', 'found', 'pictur', 'father', 'haha'], ['ok', 'day', 'old', 'love', 'diagram', 'mainstream', 'adopt', 'curv', 'quot', 'everyon', 'quot'], ['wash', 'cloth', 'type', 'xd', 'woo'], ['happi', 'star', 'war', 'day', 'may', 'via', 'nige', 'goth'], ['direct', 'quot', 'want', 'invest', 'quot', 'question', 'big', 'chees'], ['morn', 'first', 'tea', 'day', 'record', 'voiceov', 'documentari', 'modern', 'druidri', 'good', 'time'], ['thank', 'follow', 'love', 'energi', 'site', 'spaz', 'not', 'help', 'drawn'], ['not', 'like', 'term', 'quot', 'partner', 'quot', 'come', 'relationship', 'busi', 'like', 'ugli', 'word', 'day'], ['sun', 'back', 'could', 'kind', 'weather', 'last', 'januari', 'februari', 'like', 'jacket'], ['hahaha', 'nonsens'], ['total', 'waitin', 'somethin', 'new', 'thought', 'provok'], ['manag', 'breath', 'sinc', 'get', 'news'], ['chiangmai', 'month', 'last', 'year', 'loy', 'krathong', 'best', 'festiv', 'ever'], ['ish', 'okay', 'love'], ['nice', 'photoshop', 'effect'], ['bore'], ['hah', 'thank'], ['haha', 'best', 'thing', 'offic', 'birthday', 'hey'], ['strawberri', 'afternoon', 'snack', 'love', 'strawberri', 'go', 'make', 'strawberri', 'smoothi', 'tonight', 'gym'], ['glad', 'not', 'go'], ['bright'], ['romant', 'hope', 'amaz', 'paparazzi', 'not', 'follow', 'need', 'privaci', 'doug', 'xoxo'], ['thank'], ['await', 'watch', 'lfctv', 'liverpool', 'vs', 'newcastl', 'game', 'yesterday'], ['cool', 'thank', 'respons', 'check', 'firefox'], ['heheheh', 'oh', 'love', 'purat', 'english', 'soo', 'much'], ['listen', 'ftsk', 'stop', 'bordum', 'haha', 'day', 'finish', 'cri', 'harold', 'ha', 'xx'], ['like', 'cheerio', 'scone', 'morn'], ['kati', 'malamut', 'dog', 'weight', 'well', 'tall', 'quit', 'good'], ['read', 'angel', 'amp', 'demon', 'think', 'oh', 'beauti', 'sunni', 'weather', 'provenc'], ['loss', 'like', 'get', 'unexpect', 'graduat', 'good', 'way'], ['dream', 'give', 'rise', 'realiti', 'said', 'would', 'not', 'walk', 'dream', 'fli', 'dream', 'believ', 'achiev'], ['yay', 'eat', 'proper', 'food'], ['oh', 'thank', 'thank', 'hope', 'video', 'onlin'], ['morn', 'happi', 'star', 'war', 'day', 'may'], ['star', 'war', 'day', 'may'], ['bingley', 'scene', 'toward', 'end', 'endear'], ['upload', 'lot', 'photo', 'priceless', 'memori'], ['chill', 'home'], ['week', 'final', 'rain', 'not', 'quit', 'enough', 'yet', 'seem', 'come', 'garden', 'happi'], ['script', 'amaaz', 'rusti', 'halo', 'favourit'], ['got', 'twilight', 'board', 'game', 'today', 'good', 'old', 'ebay'], ['great', 'avatar'], ['thank'], ['woken', 'bacon', 'egg', 'sandwich', 'bed', 'man', 'good', 'housem'], ['found', 'old', 'familiar', 'feel'], ['may', 'sound', 'stupid', 'bought', 'mask'], ['thank', 'see', 'back', 'smile'], ['copi', 'amp', 'past', 'fuck', 'cunt', 'tosser', 'piss', 'flap', 'time'], ['thank', 'folow'], ['meant', 'look', 'like', 'tiger', 'stupid', 'predict', 'text'], ['thank', 'way'], ['woke', 'end', 'got', 'bore'], ['aww', 'love'], ['aww', 'cute', 'smile'], ['greaat', 'mine', 'please'], ['like', 'light', 'wall', 'amp', 'shatter', 'great', 'work', 'germani', 'must', 'get', 'know', 'soon', 'possibl'], ['good', 'luck', 'haha', 'love', 'charact', 'bring', 'win', 'movi'], ['jus', 'excit', 'c', 'name'], ['tink', 'whatev', 'f', 'k', 'mean', 'jkuk', 'girl', 'show', 'us', 'love', 'xx'], ['send', 'photo', 'man', 'ili', 'favourit'], ['jonathan', 'tri', 'stay', 'realli', 'not', 'wait', 'till', 'timezon', 'much', 'easier'], ['nice', 'big', 'music', 'fanci', 'dream', 'land'], ['done', 'good', 'nite'], ['make', 'dinner', 'yummi'], ['hey', 'nice', 'see', 'saturday', 'glad', 'thing', 'go', 'well'], ['cuppa', 'chill', 'lovebank', 'holiday', 'monday'], ['thank', 'soo', 'much', 'snoopi', 'love', 'bit', 'perfect', 'fit', 'got', 'morn', 'peac'], ['bodi', 'tom', 'novi', 'voodoo', 'child', 'rogu', 'trader', 'good', 'memori', 'song'], ['event', 'write', 'song', 'finish', 'tmnt', 'vs', 'mmpr', 'song', 'excit', 'record', 'wednesday'], ['yeah', 'give', 'someth', 'useless', 'crib'], ['need', 'stop', 'take', 'photo', 'peopl', 'camera', 'luckili', 'photo', 'deliv'], ['urg', 'play', 'wow', 'wait', 'week', 'til', 'dad', 'til', 'mcfli', 'excit', 'l'], ['happi', 'birthday', 'mee', 'happi', 'birthday', 'mee'], ['thank', 'follow', 'look', 'forward', 'tweet'], ['hope', 'not', 'come', 'piggi', 'flu', 'eye', 'red', 'neck', 'longer', 'hold', 'heavi', 'head', 'time', 'sleep', 'sogni'], ['lol', 'make', 'cooki', 'hit'], ['glad', 'like', 'post', 'look', 'back', 'end', 'sub', 'blog', 'automat', 'send', 'url', 'verifi'], ['not', 'burn', 'egg', 'blast', 'food', 'great', 'weekend', 'awesom', 'carn', 'asada'], ['not', 'find', 'stuff', 'amus'], ['oh', 'good', 'review'], ['left', 'work', 'inventori', 'way', 'easi', 'got', 'put', 'highschool', 'music', 'cd', 'amaz', 'goodnight', 'goodnight', 'everyon'], ['woohoo', 'congrat', 'friend', 'boyfriend'], ['tut', 'tut', 'not', 'charg', 'fun', 'thr', 'new', 'palm', 'pre', 'charg', 'platform', 'look', 'nifti', 'though'], ['oh', 'yeaah', 'still', 'bffs', 'aha'], ['fulli', 'inspir', 'write', 'song'], ['releas', 'hope'], ['cool', 'not', 'wait', 'dustbin', 'babi'], ['hope', 'great', 'certain', 'spent', 'enough', 'time', 'studi'], ['super', 'happi', 'new', 'interest', 'rate', 'whoop', 'whoop'], ['work', 'resum', 'listen', 'rain', 'enjoy', 'circus', 'boy'], ['yeah', 'lookout', 'tweet', 'happi', 'tweet'], ['ah', 'good', 'deal', 'hope', 'find', 'new', 'music'], ['andrew', 'idea', 'rest', 'think', 'ben', 'princeton', 'could', 'fun', 'lol', 'go', 'late'], ['soo', 'week', 'evil', 'laugh'], ['thank', 'ad', 'befriend', 'uh', 'oh', 'never', 'mind', 'thank'], ['realli', 'suck', 'feel', 'bad', 'least', 'woke', 'eight'], ['pool', 'parti', 'sherraton', 'n', 'brodi', 'blast', 'friend', 'made', 'even', 'bbqd', 'home', 'great', 'convers', 'funki', 'n', 'lift', 'day'], ['realli', 'like', 'pink', 'saw', 'live', 'new', 'advert'], ['omedetou', 'truli', 'excit', 'expect', 'news', 'decis', 'decis', 'pleas', 'let', 'know', 'soon'], ['thank'], ['may', 'fourth', 'happi', 'star', 'war', 'day'], ['jame', 'not', 'take', 'bad', 'pic', 'coloss', 'loveli', 'wonder', 'spelt', 'coloss', 'right'], ['go', 'home', 'seen', 'new', 'twitter', 'design', 'not'], ['yay', 'joss', 'come', 'saturday'], ['thank', 'like', 'joe', 'cloth', 'rip', 'kevin', 'scream', 'quot', 'quot', 'xd'], ['hope', 'fab', 'time', 'saw', 'twitpic', 'love', 'wore', 'dress', 'great', 'pic'], ['noth', 'wrong', 'samantha'], ['haha', 'nice', 'pic', 'look', 'abit', 'like', 'school'], ['oh', 'right', 'sorri', 'get', 'ya', 'still', 'email', 'wow', 'cool'], ['yessir', 'right'], ['would', 'love', 'come', 'visit', 'korea', 'next', 'flight'], ['noth', 'like', 'parantha', 'breakfast'], ['haha', 'hope', 'great', 'laugh', 'laughter', 'best', 'medicin'], ['sound', 'like', 'best', 'sort', 'work', 'jenni', 'seem', 'love', 'nice', 'hear', 'meet', 'flesh'], ['come', 'leav', 'gretel', 'alon', 'like', 'logi'], ['ohh', 'forgot', 'tell', 'last', 'night', 'alton', 'tower', 'touch', 'shark', 'amaz', 'nt', 'massiv', 'one', 'though'], ['drink', 'cordial', 'yes', 'bore'], ['forgot', 'lumpia', 'pancit', 'fridg', 'last', 'night', 'yay'], ['finish', 'capit', 'transact', 'exam', 'anoth', 'monkey', 'climb', 'back', 'look', 'forward', 'glorious', 'mood', 'tomorrow'], ['break', 'phone', 'call', 'plenti', 'catch', 'movi', 'doo'], ['bet', 'great', 'bag', 'not', 'wait'], ['get', 'canada', 'not', 'wtf', 'serious', 'not', 'allow', 'cross', 'border'], ['boy', 'stupid', 'throw', 'rock'], ['get', 'hair', 'cut', 'tomorrow', 'later', 'today', 'say', 'excit', 'swag', 'alreadi', 'jus', 'turn'], ['listen', 'lili', 'allen', 'last', 'album', 'quit', 'good'], ['good', 'luck', 'go', 'sleep', 'work', 'stupid', 'paper', 'worri', 'not', 'alon', 'readi', 'record', 'album'], ['hey', 'lui', 'thank', 'flash', 'prof', 'code', 'thank', 'cough'], ['thank', 'pp'], ['want', 'convers', 'use', 'list', 'not', 'convinc', 'char', 'less', 'repli', 'convers'], ['good', 'morn', 'lincolnshir', 'could', 'use', 'exercis', 'also'], ['sometim', 'long', 'weekend', 'need', 'good', 'convers', 'thank', 'bro'], ['wear', 'lot', 'white'], ['song', 'suggest', 'anyth', 'veronica', 'first', 'album', 'secret', 'life', 'would', 'good', 'choic'], ['anyon', 'drive', 'newish', 'diesel', 'car', 'advic', 'pros', 'con', 'not', 'interest', 'old', 'diesel', 'car', 'need', 'recent', 'model', 'experi', 'eg', 'suv'], ['nice', 'must', 'see'], ['hope', 'great', 'weekend', 'congratul'], ['gud', 'nite', 'catch', 'tomorrow'], ['fast', 'amp', 'furious', 'excel', 'movi', 'andi', 'great', 'guy', 'time', 'lol'], ['may'], ['made', 'offici', 'unavail', 'best', 'friend'], ['sherrieshepherd', 'gave', 'link', 'give', 'twitter', 'tip', 'hope', 'help'], ['oh', 'happi', 'judd', 'day', 'haha', 'judday'], ['haha', 'nice', 'need', 'iphon'], ['noth', 'import', 'like', 'look', 'like', 'old', 'hairstyp', 'actual'], ['saw', 'start', 'follow', 'welcom', 'akl'], ['ha', 'ha', 'thank'], ['great', 'idea'], ['heyi', 'nat', 'twitter', 'twitter', 'twitter', 'get', 'use', 'hahaha', 'love', 'youu'], ['andi', 'said', 'hour', 'hope', 'actual'], ['not', 'cri', 'see', 'tomorrow', 'muah'], ['new', 'supernatur', 'tonight'], ['fun'], ['sorri', 'tripl', 'twitter', 'post', 'troubl', 'account', 'tri', 'not', 'clutter', 'twitterspher'], ['exact', 'silent', 'treatment', 'great', 'tortur', 'method'], ['go', 'act', 'school', 'yayay'], ['thank', 'feel', 'happi', 'make', 'day', 'great', 'one', 'enjoy', 'fullest', 'n', 'fun', 'alway'], ['anyon', 'need', 'help', 'imag', 'let', 'know', 'convers', 'forum', 'link'], ['heh', 'thank', 'ador', 'plug', 'cough', 'info', 'cough', 'cough'], ['today', 'noth', 'not', 'sure', 'though'], ['today', 'jon', 'doe', 'play', 'moho', 'ia', 'excit', 'go', 'funni', 'carri', 'equip', 'backlin'], ['cont', 'bastard', 'version', 'french', 'fun', 'believ'], ['rachmaninoff', 'make', 'happi', 'panda'], ['let', 'us', 'hope', 'retir', 'not', 'cancel', 'reason'], ['relax', 'movi', 'treat'], ['still', 'love', 'marki', 'mark'], ['massiv', 'headach', 'want', 'eat', 'nacho'], ['first', 'day', 'work', 'not', 'excit', 'lay', 'place', 'everyth', 'well', 'job'], ['dsi', 'latest', 'nintendo', 'ds', 'camera', 'stuff', 'built', 'gadget', 'hous', 'luckili', 'get', 'blackberri', 'free', 'work'], ['come', 'bulgaria', 'great', 'fan'], ['thank'], ['wow', 'wow', 'hope', 'get', 'sort', 'gut', 'near', 'futur'], ['yess', 'awesome', 'follow', 'love', 'molli', 'hahah', 'chat', 'us'], ['adob', 'effect', 'ms', 'sql', 'would', 'nicer', 'sleep'], ['bag', 'look', 'stylish', 'congrat'], ['lol', 'great'], ['thank', 'tweetstat', 'confirm', 'long', 'suspect', 'twitter', 'keep', 'way', 'late'], ['organis', 'day', 'indulg', 'amp', 'luxuri', 'pamper', 'day', 'finger', 'cross', 'like', 'surpris'], ['grab', 'least', 'hour', 'half', 'sleep', 'girl', 'get', 'life'], ['congrat', 'first', 'person', 'say', 'today'], ['thank', 'follow'], ['morn', 'kik', 'enjoy', 'breakfast'], ['legal', 'student', 'twitter', 'would', 'love', 'coupl', 'refer', 'case', 'inolv', 'bias', 'juri', 'juri', 'nullif', 'etc'], ['thank'], ['way', 'inconveni'], ['go', 'knit', 'felt', 'heart', 'toy', 'mum', 'mother', 'day', 'great', 'not', 'realli', 'love', 'anyth', 'give', 'love', 'ya', 'mummi'], ['humbl', 'best', 'go', 'work', 'paintbal', 'day', 'soon', 'fuel', 'strip', 'doubt'], ['sorri', 'disappoint', 'not', 'big', 'nascar', 'fan', 'still', 'decent', 'redneck'], ['yah', 'feel', 'better', 'beaut', 'day', 'sophi', 'razz', 'skateboard', 'park', 'yrs', 'char', 'happi', 'school'], ['heheh', 'hello', 'good', 'see', 'twitter'], ['tire', 'friendster', 'account'], ['yaawwnn', 'thank', 'bank', 'holiday', 'let', 'us', 'see', 'today', 'prepar', 'us'], ['old', 'blue', 'slow', 'code', 'nowaday', 'laptop', 'borrow', 'work', 'let', 'us', 'loung', 'brows'], ['best', 'job', 'world', 'amp', 'yes', 'australia'], ['new', 'project', 'go', 'incred', 'well', 'not', 'tire', 'today', 'think', 'get', 'monday', 'perman'], ['thank', 'tweetstat', 'confirm', 'long', 'suspect', 'twitter', 'keep', 'way', 'late', 'ht'], ['like'], ['mani', 'weirdo', 'one'], ['feel', 'consider', 'better', 'hour', 'sleep', 'still', 'not', 'right', 'though'], ['hello', 'love', 'follow', 'love', 'peac', 'hous', 'lolz', 'need', 'weather'], ['haha', 'good', 'slight', 'geeki', 'funni', 'x'], ['studio', 'sound', 'import', 'oh', 'mildura', 'total', 'bore', 'byee'], ['jip', 'good', 'one'], ['yogurt', 'home', 'ladi', 'mona', 'fone', 'w', 'song', 'yoplait', 'lookin', 'forward', 'hrs', 'w', 'tmorrow', 'amp', 'rehears', 'gnight'], ['excit', 'summer', 'steve', 'winwood', 'eric', 'clapton', 'eagl', 'death', 'metal', 'ahh', 'dead', 'weather'], ['kiss', 'kiss', 'stu', 'deezi', 'bed', 'sweet', 'dream', 'madam', 'hehe', 'xxoxo'], ['appl', 'fritter', 'like', 'perfect', 'not', 'think'], ['egg', 'today', 'shame', 'look', 'forward', 'egg', 'bacon', 'sandwich'], ['come', 'sydney', 'cool', 'meet', 'id', 'love', 'meet', 'favourit', 'comedian'], ['haha', 'glad', 'everyth', 'good', 'happi', 'alway', 'woohoo'], ['back', 'work', 'audit', 'away', 'time', 'make', 'hard', 'decis', 'happi'], ['houstatlantavega', 'sooner', 'later', 'novemb', 'night', 'success', 'last', 'hour', 'heavenn'], ['watch', 'coralin', 'last', 'night', 'realli', 'good', 'anim', 'excel', 'creativ', 'inspir'], ['tweet', 'sometim', 'tomorrow', 'anoth', 'busi', 'day', 'goodnight', 'hooker', 'chicki', 'lol'], ['twitter', 'seat', 'exam', 'hall', 'start', 'pray', 'seat', 'bless', 'oh', 'wisdom', 'flow', 'whee'], ['anywher', 'not', 'long', 'superman', 'good', 'sweet'], ['morn', 'world', 'healthyliv', 'updat', 'weight', 'morn', 'go', 'right', 'direct'], ['sweet'], ['home', 'time', 'long', 'moon', 'tonight', 'gba', 'bhb', 'tuesday', 'oh', 'drummer', 'boy', 'niight'], ['monday', 'good'], ['well', 'actual', 'went', 'got', 'driver', 'licens', 'would', 'not', 'worri', 'bus', 'shit', 'haha'], ['love', 'head', 'heel', 'one', 'fave', 'movi', 'look', 'stun', 'last', 'night'], ['may', 'happi', 'star', 'war', 'day'], ['relax', 'like', 'translat', 'swedish', 'got', 'take', 'look', 'next', 'comment'], ['hope', 'know', 'woo', 'haha', 'time', 'excit', 'lol'], ['agre', 'redesign', 'site', 'look', 'great', 'comput', 'amp', 'phone'], ['still', 'like', 'coldplay', 'said', 'one', 'fav', 'cds', 'r', 'one', 'fav', 'band'], ['oh', 'ok', 'thank'], ['brain', 'go', 'explod', 'minut', 'full', 'number', 'cliimb', 'climb', 'mt', 'number'], ['write', 'real', 'look', 'paper', 'letter', 'not', 'done', 'one', 'long', 'time', 'sad', 'realli'], ['digiqom', 'welcom', 'new', 'team', 'member', 'compani', 'today'], ['yes', 'secur', 'masculin'], ['may'], ['twitter', 'like', 'boss', 'thank', 'savv'], ['wish', 'babe', 'would', 'ball'], ['aha', 'bet', 'cute', 'wear', 'nu', 'time', 'cn', 'show', 'mine', 'cn', 'show'], ['hope', 'good', 'flight'], ['yeah', 'least', 'tri', 'good', 'night', 'amp', 'visit', 'chiro', 'tomorrow'], ['oh', 'birthday', 'happi', 'birthday', 'andr', 'michell'], ['yeah', 'quick', 'use', 'addi', 'bought', 'sat', 'make', 'even', 'smoother'], ['break', 'leg', 'not', 'real', 'say', 'p', 'quot', 'good', 'luck', 'quot'], ['hope', 'see', 'besti', 'today'], ['happi', 'star', 'war', 'day', 'may', 'fourth'], ['bank', 'holiday', 'bliss', 'jeremi', 'kyle', 'without', 'even', 'bother'], ['sweet', 'dream'], ['actual', 'realli', 'like', 'merlin', 'last', 'night', 'part', 'bit', 'eh', 'part', 'chick', 'sing', 'like', 'whoa'], ['safe', 'flight', 'home', 'jade', 'xx'], ['job', 'still', 'wait', 'friend', 'thank', 'ask', 'need', 'littl'], ['actual', 'great', 'start', 'day', 'hope', 'continu', 'get', 'new', 'american', 'overs', 'bed', 'even'], ['well', 'hate', 'leav', 'must', 'sleep', 'hope', 'chat', 'later', 'enjoy', 'li', 'l', 'night', 'owl'], ['unload', 'leopard', 'tank', 'next', 'offic', 'window', 'hope', 'not', 'piss', 'anyon'], ['ohh', 'grandpa', 'stabl', 'not', 'kno', 'detail', 'til', 'tomorrow', 'visit', 'keep', 'fam', 'goodnit'], ['happi', 'star', 'war', 'day', 'may'], ['rain', 'pretti', 'nice', 'meter', 'cobbl', 'way'], ['dad', 'take', 'school', 'amp', 'pick', 'tomoz', 'plus', 'drama', 'almost', 'day', 'score', 'bludg', 'day'], ['glad', 'cos', 'would', 'not', 'lose', 'fan', 'anyway', 'get', 'see', 'guy', 'saturday', 'even', 'leicest', 'better', 'good'], ['muhahaha', 'join', 'tweet', 'cult', 'lol', 'heya', 'way', 'twitterif', 'good', 'iphon', 'app', 'use'], ['thank'], ['thank'], ['yahoo', 'volleybal', 'hike', 'eat', 'fish', 'eye', 'wit', 'sleep', 'beach', 'jump', 'rock', 'amp', 'hang', 'jurass', 'park', 'film'], ['look', 'feedback', 'often', 'serious', 'crazier', 'topic', 'better'], ['greatest', 'friend', 'entir', 'world'], ['hey', 'fellow', 'graduat'], ['chees', 'counter', 'go', 'thank'], ['not', 'happi', 'enjoy', 'cos', 'thought', 'like', 'see', 'yaya', 'hav', 'follow', 'woop'], ['ha', 'know', 'right'], ['saw', 'tv', 'best', 'job', 'world', 'good', 'luck'], ['java', 'concurr', 'practic', 'probabl', 'best', 'java', 'book', 'ever', 'bought', 'recip', 'interrupt', 'block', 'io', 'op'], ['skimchamp', 'taxi', 'servic', 'best', 'land'], ['thank'], ['pleas', 'not', 'chang', 'anyth', 'site', 'love', 'alway', 'love', 'even', 'pleas', 'pretti', 'pleas'], ['studi', 'day', 'finish', 'care', 'plan', 'hungri', 'hell', 'go', 'treat', 'burrito', 'good', 'day', 'work'], ['youu', 'aass', 'aass', 'lool'], ['go', 'lazi', 'day', 'today'], ['brecki', 'good', 'morn', 'x'], ['regard', 'knowledg', 'like', 'littl', 'robot', 'movi', 'quot', 'short', 'quot', 'alway', 'cri', 'quot', 'imput', 'imput', 'quot'], ['yes', 'yes', 'especi', 'wine', 'mushroom', 'umm', 'love', 'mushi'], ['gun', 'rose', 'babi', 'yay', 'hopin', 'would'], ['hehe', 'nice'], ['cinema', 'tonight', 'half', 'price', 'monday'], ['roflmao', 'funni', 'web', 'portal'], ['eat', 'tito', 'home', 'made', 'ice', 'cream', 'yum'], ['humm', 'ador', 'mark', 'hoppusday', 'go', 'throw', 'hoppusday', 'nice', 'hoppusday', 'peopl'], ['today', 'quiz', 'time', 'goat', 'game', 'show', 'play', 'prize', 'plus', 'tommi', 'free', 'drink', 'today', 'x'], ['not', 'see', 'could', 'possibl', 'anoth', 'choic'], ['hello', 'michael', 'nice', 'day'], ['hope', 'someth', 'right', 'influx', 'review', 'year', 'old', 'fan', 'fic', 'tell', 'love', 'style', 'write', 'hp'], ['look', 'delish', 'want', 'welcom', 'back', 'seattl'], ['want', 'welcom', 'back', 'plurk'], ['yeah', 'xd', 'close', 'alreadi', 'xd', 'talk', 'anyth', 'love', 'gurrl'], ['great', 'weekend', 'even', 'though', 'site', 'not', 'move', 'plenti', 'thing', 'learn', 'keep', 'faith', 'look', 'futur'], ['weirdest', 'dream', 'ever', 'not', 'see', 'owi', 'credo', 'brighi', 'hate', 'guy'], ['would', 'appreci', 'would', 'big', 'tim', 'kaul', 'fan', 'ya', 'know'], ['pack', 'gym', 'bag', 'gym', 'bit', 'squee', 'happiest', 'whem', 'go'], ['would', 'awesom', 'lol'], ['mention', 'twitter', 'group', 'follow', 'would', 'grate'], ['lol', 'minut', 'slow', 'sec', 'fun', 'tear', 'old', 'poster', 'put', 'new', 'one'], ['follow', 'tomorrow', 'sleep', 'well'], ['awesom', 'lucki'], ['welcom', 'everyon', 'live', 'twitter'], ['scrub', 'tonight', 'woo'], ['caww', 'sound', 'good', 'hope', 'right'], ['yeah', 'realli', 'fascin', 'paper', 'not', 'credit', 'goe', 'discoveri'], ['home', 'sweet', 'home', 'lt', 'go', 'see', 'hannah', 'montana', 'movi', 'today', 'lt', 'dd'], ['r', 'random', 'thing', 'mind', 'chennai', 'heat', 'get', 'assur', 'b', 'often'], ['rachel', 'allen', 'date', 'bar', 'easi', 'make'], ['one', 'reason', 'thought', 'quot', 'kid', 'quot', 'quot', 'nah', 'let', 'us', 'get', 'piano', 'quot', 'poor', 'bugger'], ['oh', 'yea', 'pain', 'went', 'littl', 'bit', 'laugh', 'hard', 'good', 'nice'], ['happi', 'star', 'war', 'day', 'quot', 'may', 'quot', 'read'], ['look', 'absolut', 'beauti', 'eleg'], ['thank', 'follow'], ['thnx', 'follow'], ['ja', 'deze', 'interessant', 'text', 'messag', 'limit', 'charact'], ['oh', 'realli', 'hope', 'good', 'one', 'tri', 'get', 'attent'], ['oh', 'gosh', 'cute'], ['much', 'welcom'], ['morn', 'babe', 'plan', 'overdo', 'today', 'lol', 'hope', 'rest', 'amp', 'put', 'feet', 'xx'], ['lol', 'simpson', 'quot', 'first', 'day', 'new', 'school', 'lisa', 'fun', 'bart', 'not', 'quot'], ['go', 'look', 'refriger', 'tast', 'snack', 'eat'], ['studi', 'spite', 'whatev', 'wonder', 'unforgett', 'weekend', 'dc'], ['love', 'vintag', 'book', 'shop', 'morn'], ['anoth', 'water', 'leak', 'appart', 'good', 'side', 'get', 'meet', 'girl', 'previous', 'amp', 'next', 'floor'], ['oh', 'whoop', 'bad'], ['aww', 'preciat', 'love', 'hunni'], ['hey', 'guy', 'ask', 'item', 'guy', 'put', 'talent', 'show', 'big', 'fan', 'whoo'], ['bom', 'dia', 'good', 'morn', 'guten', 'morgen', 'return', 'twitter'], ['know', 'love'], ['back', 'origin', 'surpris', 'good'], ['drill', 'sergeant', 'voic', 'everybodi', 'wake', 'fuck', 'flick', 'everyon', 'light', 'est', 'rise', 'shine', 'beetch', 'lol', 'jk'], ['oo', 'yay', 'follow', 'want', 'help'], ['haha', 'need', 'get', 'better', 'shape', 'first', 'cagebal', 'thursday', 'dead', 'sofa', 'whole', 'even'], ['morn', 'everon', 'sing', 'tuck', 'turn', 'light', 'kept', 'safe', 'sound', 'night'], ['life', 'know', 'not', 'exist', 'anymor'], ['morn', 'hope', 'good', 'day', 'despit', 'revis'], ['one', 'fan', 'vip', 'one', 'winner', 'twist', 'vid', 'het', 'si', 'weer', 'een', 'raar', 'gelopen', 'chao'], ['dump', 'worri', 'stress', 'fire', 'fun', 'profound', 'free'], ['welcom', 'dk', 'jaoo'], ['love', 'listen', 'peopl', 'practis', 'piano', 'downstair'], ['music', 'alway', 'noon', 'els', 'understand', 'agre', 'import', 'singl', 'song', 'chang', 'whole', 'day'], ['wow', 'good', 'mac', 'xp', 'via', 'parallel', 'ever', 'need', 'tester'], ['ahahahaha', 'love', 'twilight', 'not', 'liee', 'know', 'love', 'robert', 'pattinson'], ['aah', 'well', 'friend', 'wonder', 'great', 'weather', 'good'], ['art', 'thou', 'miss'], ['go', 'bodi', 'pump', 'yoga', 'go', 'enjoy', 'love', 'bbq', 'famili', 'love', 'may', 'day', 'holiday'], ['cos', 'not', 'ipod', 'touch', 'yet', 'not', 'mean', 'not', 'look', 'app', 'soo', 'cool', 'twitter', 'school', 'awesom'], ['ha', 'good', 'morn', 'may', 'fourth'], ['celebr', 'fact', 'norwich', 'citi', 'got', 'releg', 'yesterday', 'seem', 'like', 'aw', 'nice', 'mr', 'fri', 'footbal', 'rival'], ['cute', 'fun', 'watch'], ['watch', 'persepoli', 'broken', 'english', 'also', 'nice', 'sunday'], ['wave', 'back', 'good', 'day'], ['final', 'found', 'perfect', 'matt', 'lcd', 'cleaner', 'screen', 'cleaner', 'ftw'], ['yay', 'final', 'made', 'sale', 'galleri', 'realli', 'help', 'artist'], ['lalaland', 'like', 'song', 'much', 'anyhoo', 'grr', 'cold', 'thank', 'good', 'though', 'sore', 'throat', 'gone'], ['ohh', 'love', 'glad', 'great', 'time'], ['awesom', 'effort', 'even', 'not', 'luck', 'tassi'], ['birthday', 'today', 'wish', 'good', 'one', 'asshol', 'sleepytim'], ['went', 'piggi', 'bank', 'man', 'hell', 'lot', 'money', 'easili', 'live', 'next', 'week'], ['aww', 'use', 'littl', 'not', 'much', 'haa', 'lazi', 'shiit'], ['thankyou', 'much', 'rock'], ['haha', 'love', 'soulja', 'boy', 'new', 'song'], ['hey', 'mia', 'total', 'ador', 'music', 'cd'], ['wellington', 'monet', 'exhibit', 'casual', 'bump', 'wayn', 'bradi', 'hotel', 'lobbi', 'mega', 'excit'], ['seem', 'nice', 'generous', 'know', 'stuff'], ['love', 'johnni', 'deep', 'look', 'public', 'enemi', 'l', 'catch', 'film', 'show', 'hk'], ['listen', 'music', 'text', 'umm', 'msn', 'lol', 'bit', 'bore', 'lol', 'garth', 'brook', 'woo', 'love', 'hehe', 'lt'], ['well', 'good', 'luck'], ['thank', 'follow', 'wish', 'ya', 'best'], ['oh', 'not', 'love', 'vodafon', 'seri', 'ad', 'best', 'picturis', 'ever'], ['happi', 'birthday', 'husband'], ['googl', 'amp', 'look', 'lot', 'site', 'check', 'first', 'excit'], ['yup', 'get', 'better'], ['thank', 'follow'], ['oh', 'wow', 'fast', 'life', 'go', 'month', 'ya', 'xd'], ['good', 'night'], ['thank', 'know'], ['enjoy', 'coffe', 'miss', 'petit', 'puce', 'adica', 'puricel', 'franceza'], ['cool', 'love'], ['gave', 'kiss', 'flirt', 'cours', 'like'], ['nick', 'cute', 'tiger', 'costum', 'ahaha', 'made', 'day'], ['eat', 'one', 'big', 'subway', 'cooki', 'glass', 'warm', 'milk', 'yum'], ['hahaha', 'not', 'even', 'notic', 'name', 'lice'], ['see', 'morn', 'rush', 'forum', 'shoutbox', 'overheat', 'bcoz', 'campaign', 'fli', 'skirt'], ['would', 'advis', 'watch', 'cinema', 'sure', 'effect', 'worth', 'unless', 'monster', 'tv', 'home'], ['pleasur', 'murray'], ['greet', 'joan', 'want', 'say', 'still', 'miss', 'wake', 'pleasant', 'person', 'amp', 'face', 'hug', 'angel'], ['realli', 'good', 'bank', 'hoilday'], ['hell', 'unlucki', 'come', 'next', 'week'], ['okay', 'fun', 'eat', 'lol', 'rememb', 'shaun', 'love', 'haha'], ['haha', 'chocol', 'alway', 'knew', 'heart', 'stomach', 'wait', 'till', 'tri', 'truffl'], ['enter', 'two', 'month', 'period', 'awesom', 'see', 'flip', 'side'], ['haha', 'hell', 'ya', 'id', 'love', 'find', 'boy', 'toke', 'sexi', 'bike'], ['sure', 'want', 'know', 'make', 'want', 'run', 'news', 'happi', 'star', 'war', 'day'], ['wow', 'thank', 'lot', 'not', 'believ', 'not', 'think', 'xd'], ['thank', 'ill', 'cross', 'finger', 'rain', 'stop'], ['went', 'see', 'wolverin', 'husband', 'work', 'today', 'pretti', 'good'], ['heyi', 'birthday', 'happi', 'birthday'], ['interest', 'day', 'good', 'overal'], ['got', 'home', 'school', 'fun', 'oh', 'way', 'music', 'school'], ['oh', 'make', 'sens', 'well', 'offici', 'first', 'celebr'], ['jason', 'mraz', 'still', 'serenad', 'read', 'quot', 'judici', 'supervis', 'execut', 'action', 'commonwealth', 'caribbean', 'quot', 'bbl'], ['mom', 'nurs', 'practition', 'amp', 'spent', 'entir', 'life', 'devot', 'field', 'good', 'one', 'deserv', 'recogn', 'follow'], ['watch', 'youtub', 'hilari', 'laugh', 'trough', 'serious', 'guy', 'funni', 'greet', 'germani'], ['use', 'inde', 'esp', 'newbi', 'like'], ['happi', 'star', 'war', 'day'], ['relax', 'fragranc', 'soo', 'latest', 'love', 'still', 'lavend', 'amp', 'chamomil', 'basic', 'one', 'tri', 'find', 'flower', 'scent'], ['time', 'low', 'mean', 'fuck', 'much', 'hope', 'get', 'see', 'june', 'would', 'awesom', 'gaskarth', 'amaz'], ['amaz', 'alic', 'made', 'thank', 'everyth', 'face', 'charact'], ['happi', 'birthday'], ['good', 'day', 'thanx', 'follow'], ['weather', 'love', 'head', 'home', 'via', 'supermarket', 'plan', 'spend', 'qualiti', 'time', 'knit', 'tonight'], ['good', 'morn', 'friend', 'happi', 'may', 'bank', 'holiday'], ['post', 'world', 'pinhol', 'day', 'love', 'pictur'], ['dear', 'oh', 'dear'], ['clear', 'busi', 'take', 'care', 'sure', 'fine', 'take', 'one', 'know', 'one'], ['miss', 'know', 'must', 'feel', 'tire', 'give', 'massag', 'tonight'], ['happiest', 'place', 'earth'], ['hey', 'great', 'gig', 'exchang', 'track', 'via', 'ze', 'emay', 'lost', 'loop', 'right', 'still', 'write', 'xx'], ['happi', 'judday', 'everyon'], ['got', 'great', 'expect', 'tomorrow', 'go', 'awesom'], ['heey', 'good', 'luck', 'unair', 'sweet'], ['helloo', 'star', 'war', 'day', 'cool', 'lool', 'wen', 'go', 'cnaterburi', 'x'], ['ok', 'well', 'pic', 'take', 'unlucki', 'lmao'], ['good', 'morn', 'twitter', 'hope', 'mean', 'busi', 'day'], ['play', 'cool', 'new', 'websit', 'hope', 'readi', 'soon'], ['welliti', 'think', 'go', 'clean', 'room', 'gay', 'need', 'read', 'good', 'book', 'sens', 'sensibl', 'come', 'beat', 'lili'], ['know', 'appeal', 'knit', 'believ', 'know'], ['wake', 'week', 'funni', 'deathcab', 'make', 'think', 'amp', 'use', 'calendar', 'track', 'work', 'hour'], ['nice', 'recolour', 'page', 'nobodi', 'buy', 'word', 'love'], ['dear', 'god', 'pleas', 'let', 'wake', 'tomorrow', 'lol', 'got', 'plan', 'tonight', 'let', 'us', 'pick', 'hero', 'night', 'grow', 'get', 'job', 'etc', 'lolz'], ['hahaha', 'nien', 'soo', 'smart', 'lmao', 'think', 'good', 'lookin', 'whts', 'gurli', 'come', 'home', 'weekend'], ['inde', 'nice', 'week'], ['good', 'luck', 'mine', 'day', 'today'], ['oh', 'must', 'get', 'lol', 'mum', 'still', 'not', 'convinc'], ['welcom'], ['haha', 'love', 'two', 'girl'], ['bevvi', 'day'], ['thank', 'tip', 'compani', 'laptop', 'aim', 'anoth', 'solut', 'actual'], ['feel', 'waay', 'cruisey', 'relax', 'monday', 'even', 'oh', 'wait', 'wine', 'dinner'], ['woke', 'rememb', 'school', 'life', 'good', 'xx'], ['sound', 'like', 'kind', 'day'], ['graandma', 'house', 'have', 'leav', 'lt'], ['put', 'radio', 'cup', 'tea', 'shower', 'sure', 'fine', 'dandi', 'thank'], ['welliti', 'think', 'go', 'clean', 'room', 'gay', 'need', 'read', 'good', 'book', 'sens', 'sensibl', 'come', 'beat', 'lili'], ['guess', 'coupl', 'see', 'ceremoni', 'valid', 'valid', 'communiti', 'damn'], ['agre', 'total', 'think', 'though', 'take', 'point', 'everton', 'liverpool', 'beat', 'man', 'citi', 'happi', 'day'], ['everybodi', 'awak', 'well', 'not', 'everybodi', 'know', 'mean', 'friend', 'haha', 'fun', 'aim'], ['cower', 'failur', 'mean', 'compli', 'stand', 'instead'], ['insomnia', 'finest', 'go', 'bed', 'fulli', 'awak', 'grr', 'anyon', 'want', 'call', 'mee'], ['enjoy', 'peg', 'bag', 'adapt', 'design', 'tote', 'bag', 'bit', 'cuter', 'normal'], ['hello', 'everybodi', 'back', 'job', 'back', 'children', 'camp', 'someon', 'look', 'sis', 'pupil', 'total', 'exhaust'], ['best', 'friend', 'come', 'excit'], ['omg', 'star', 'war', 'day', 'may', 'fourth', 'everyon', 'call', 'watch', 'least', 'film', 'tonight'], ['thank', 'chu', 'ch', 'c', 'v', 'hik', 'ch', 'c', 'ph', 'h', 'c', 'ph', 'c', 'p', 'ki', 'n', 'th', 'c', 'c', 'g', 'p'], ['lol', 'lt', 'spongebob'], ['refer', 'not', 'dress', 'either', 'sound', 'like', 'lh', 'good', 'fopp', 'buy'], ['sound', 'good', 'yeah', 'turn', 'tomorrow', 'definit', 'parti'], ['hey', 'thank', 'mate', 'cool', 'coz', 'watch'], ['small', 'thing', 'life', 'count', 'like', 'blur', 'photograph', 'googl', 'streetview', 'keep', 'follow'], ['fair', 'enough', 'actual', 'not', 'give', 'mad', 'max', 'fine'], ['abbrevi', 'not', 'bulki'], ['ahh', 'ok', 'rememb', 'film', 'never', 'saw', 'though', 'check', 'thank'], ['got', 'twitter', 'yayi', 'xx'], ['sir', 'everyth', 'great'], ['congratul', 'great', 'funki', 'site', 'waaw'], ['yummi', 'curri', 'save', 'pleas', 'lol'], ['oh', 'use', 'kde', 'made', 'fail'], ['lol', 'glad', 'see', 'not', 'one'], ['lol', 'awesom', 'random', 'follow'], ['huge', 'fan', 'take', 'sinc', 'babi', 'yeah', 'month', 'realli', 'feel', 'like', 'month'], ['fine', 'thank', 'day', 'took', 'advantag', 'gt', 'tire', 'wait', 'see', 'pic', 'read', 'blog'], ['teacher', 'made', 'lamest', 'joke', 'today', 'darth', 'vader', 'birthday', 'cuz', 'may', 'lol', 'love', 'happi', 'star', 'war', 'day', 'everyon'], ['breakfast', 'want', 'food', 'lol', 'tweet', 'breakfast', 'loold'], ['great', 'shot', 'yesterday', 'edit', 'pic'], ['brilliant', 'thank', 'not', 'sure', 'browni', 'point', 'get', 'though'], ['rock', 'week', 'not', 'think', 'danni', 'go', 'go', 'home', 'week', 'never', 'bottom', 'three', 'realli', 'good', 'singer'], ['final', 'pic', 'see', 'ya', 'like', 'hrs', 'haha'], ['hey', 'momma', 'cherri', 'site', 'still', 'activ', 'would', 'love', 'go', 'one', 'day'], ['lololol', 'love', 'kenan', 'kel', 'rock', 'soo', 'hard', 'watch'], ['ok', 'good', 'day'], ['hahahahahahahaha', 'hope', 'hope', 'like'], ['not', 'worri', 'great', 'job', 'quit', 'nice', 'way', 'spend', 'day'], ['lok', 'ef', 'jummi'], ['think', 'cute', 'everi', 'night', 'okay'], ['hit', 'view', 'myspac', 'thank', 'everyon'], ['thank', 'hope', 'great', 'day'], ['not', 'get', 'impati', 'alreadi', 'sin', 'strawberri', 'milk', 'sugar'], ['download', 'bonni', 'clyde', 'beyonc', 'old', 'fav'], ['shini', 'could', 'marri', 'would', 'ps', 'good'], ['could', 'bare', 'speak', 'probabl', 'think', 'weirdo', 'lool', 'say', 'sorri', 'pleas', 'x', 'lt'], ['thank', 'twitter'], ['yes', 'finish', 'tonight', 'still', 'food', 'great', 'discuss'], ['tri'], ['lol', 'like', 'polar', 'opposit', 'ben', 'mayb', 'get', 'well'], ['bass', 'love'], ['oh', 'great', 'hope', 'blast'], ['love', 'happi', 'birthday', 'said', 'sound', 'like', 'mixtur', 'john', 'lennon', 'chrissi', 'hynd', 'jani', 'joplin'], ['end', 'work', 'thank', 'god', 'accomplish', 'number', 'thing'], ['creat', 'monster', 'bwahaha', 'oh', 'got', 'babi', 'home', 'safe', 'sound'], ['wow', 'effect', 'thank', 'updat'], ['everyth', 'fault', 'x'], ['congrat', 'new', 'phone'], ['meant', 'not', 'lazi', 'work', 'prove'], ['lol', 'go', 'homework', 'kind', 'got', 'distract', 'goodnight'], ['haha', 'pretti', 'good', 'make', 'someth', 'chicken', 'yum'], ['either', 'way', 'alway', 'tend', 'make', 'followfriday', 'list', 'sweeti', 'rock', 'much'], ['nickchien', 'happi', 'break', 'twitter', 'virgin', 'two'], ['wait', 'last', 'video', 'render', 'watch', 'episod'], ['current', 'goal', 'lose', 'pound', 'next', 'tuesday', 'come', 'soo', 'readi', 'gatlinburg'], ['thank', 'hun', 'great'], ['soo', 'much', 'hope', 'well'], ['anxious', 'await', 'game', 'yes', 'final', 'got', 'tix', 'game', 'amp', 'yeahh'], ['final', 'get', 'sleepi', 'right', 'sky', 'brighten', 'figur'], ['actual', 'start', 'quit', 'like', 'lili', 'allen', 'music', 'honest'], ['found', 'one', 'great', 'thing', 'live', 'switzerland', 'delici', 'bread', 'sometim', 'littl', 'thing', 'make', 'differ'], ['hey', 'good', 'morn', 'guy'], ['trend', 'topic', 'happi', 'star', 'war', 'day'], ['thank', 'yay', 'guild'], ['love', 'way', 'sky', 'look', 'cloud', 'would', 'mean', 'ultra', 'hot', 'outsid'], ['hmph', 'nowher', 'near', 'effect', 'min', 'ago', 'wonder', 'coincid', 'follow', 'pleas', 'report', 'find'], ['bor', 'everyon', 'doingn', 'check', 'link', 'profil'], ['enjoy', 'new', 'car'], ['blockbust', 'week', 'new', 'zealand', 'quot', 'wolverin', 'quot', 'tomorrow', 'follow', 'quot', 'star', 'trek', 'quot', 'thursday'], ['lol', 'thanx'], ['hahahahaha', 'day'], ['usual', 'choic', 'lucki', 'food', 'love', 'general', 'healthi', 'except', 'ice', 'cream'], ['good', 'morn', 'howev', 'night', 'time', 'bed', 'hug', 'great', 'day'], ['thank', 'dear', 'neighboor', 'also', 'gave', 'coffe', 'need', 'best'], ['walah', 'still', 'not', 'get', 'full', 'idea'], ['worri', 'thank', 'googl', 'noth', 'not', 'find'], ['never', 'seen', 'x', 'men', 'film', 'suppos', 'good', 'thought', 'not'], ['ohh', 'someon', 'like', 'play', 'food', 'heehe'], ['glad', 'break', 'twitter', 'virgin', 'two'], ['eek', 'come', 'soo', 'excit', 'see', 'thursday'], ['reckon', 'could', 'live', 'yogurt', 'week', 'good', 'select', 'flavor'], ['gdnight', 'tweeter', 'night', 'sleep', 'tight', 'not', 'steal', 'blanket', 'otay', 'love', 'yous'], ['goodmorn', 'world'], ['chill', 'home'], ['love', 'weekend', 'away', 'kit', 'coti', 'relax', 'well', 'rest', 'readi', 'week', 'ahead', 'back', 'nnc', 'two', 'week'], ['complex', 'much', 'consid', 'day', 'like', 'today', 'monday', 'brain', 'back', 'tomorrow'], ['teehe', 'good', 'show', 'anyway'], ['still', 'thank', 'pray', 'ahahaha', 'watch', 'britney', 'record', 'school', 'today', 'good', 'day'], ['good', 'us', 'peopl', 'think', 'look', 'forward', 'hope', 'batteri', 'amp', 'laptop', 'recharg', 'soon'], ['welcom', 'thank', 'invit', 'us', 'talk', 'like', 'becom', 'parent', 'one', 'realli', 'prepar'], ['new', 'french', 'girl', 'twitter', 'speak', 'english', 'bad'], ['oh', 'beauti', 'happi', 'great', 'time', 'heartz'], ['congratul'], ['heyahh', 'thought', 'wer', 'cumin', 'london', 'till', 'love', 'taylorr'], ['london', 'wow', 'near'], ['hypnotyst', 'hmm', 'bewar'], ['glad', 'feel', 'abit', 'better', 'think', 'mine', 'might', 'near', 'gone', 'xd'], ['tri', 'learn', 'oral', 'exam', 'distract'], ['not', 'swine', 'flu', 'hope', 'take', 'care', 'health', 'mate', 'tell', 'busi'], ['andrew', 'long', 'fun', 'day'], ['must', 'love', 'sydney', 'not', 'leav', 'us', 'sydney', 'kid', 'xx'], ['sure', 'jont', 'not', 'mind', 'share'], ['hey', 'like', 'fob', 'follow', 'love', 'talk', 'look', 'frine', 'follow'], ['sit', 'outsid', 'laptop', 'kind', 'nice'], ['aww', 'wonder', 'hate', 'us', 'later', 'lol'], ['haha', 'boat', 'yesterday', 'pick', 'time'], ['love', 'make', 'soo', 'happi'], ['aww', 'hee', 'nice', 'done', 'weekend', 'guest', 'approv', 'lot'], ['well', 'work', 'not', 'quit', 'readi', 'post', 'public', 'still', 'beta', 'test', 'cool', 'new', 'script', 'code'], ['snuggl', 'bed', 'read'], ['hope', 'feel', 'better', 'soon', 'littl', 'magic', 'girl'], ['appreci', 'uni', 'email', 'help'], ['happi', 'provid', 'backup', 'support', 'murder', 'rampag'], ['follow', 'chester', 'bennington', 'awesom'], ['good', 'morn', 'earli', 'feel', 'enthus', 'design', 'life', 'thank', 'manic', 'phrase'], ['omg', 'taylor', 'london', 'near', 'scotland', 'pleas', 'come', 'visit', 'glasgow'], ['woo', 'fight', 'goo', 'vicki'], ['everyon', 'love', 'sarah', 'not', 'tweeter', 'today', 'show', 'could', 'not', 'stop', 'rave', 'beauti'], ['must', 'miss', 'amp', 'guess', 'scare', 'amp', 'sorri'], ['good', 'day'], ['mm', 'hot', 'chocol', 'ugboot', 'topgear', 'life', 'good'], ['good', 'morn', 'everyon', 'back', 'work', 'not', 'abl', 'chat', 'tonight', 'hope', 'everyon', 'great', 'day'], ['shut'], ['yeah', 'thought', 'awesom', 'glad', 'see', 'charact', 'like', 'gambit', 'brought', 'back', 'fold'], ['aww', 'tom', 'made', 'smile', 'love', 'much', 'xd'], ['hey', 'thank', 'follow'], ['mean', 'famous', 'congrat'], ['thank', 'photo', 'look', 'great', 'comment', 'soon', 'possibl'], ['aww', 'thanx', 'andi'], ['wake', 'vega', 'good'], ['thank', 'new', 'follow'], ['love', 'color', 'horsi'], ['ok', 'back', 'later', 'great', 'time', 'regardless', 'weather', 'ps', 'bb', 'away'], ['get', 'back', 'english', 'minor', 'exam', 'soon', 'dum', 'dum', 'dum', 'duum', 'margret', 'burp', 'comp', 'haha'], ['thank', 'god', 'sport', 'not', 'take', 'offenc', 'joke', 'unlik', 'three', 'good', 'friend', 'stop', 'talk'], ['much', 'welcom'], ['check', 'idestroy', 'sale', 'sale', 'good'], ['cook', 'dad', 'lot', 'fun', 'kitchen', 'togeth'], ['wish', 'could', 'work', 'like', 'dude'], ['download', 'movi', 'quot', 'jackass', 'quot', 'cool', 'movi'], ['hi', 'michael', 'wow', 'thank', 'kind', 'word', 'must', 'find', 'love', 'connect', 'bg', 'alon'], ['haha', 'wow', 'song', 'call', 'twitter', 'lmao', 'okay'], ['love', 'twitter', 'post', 'mwaha', 'x'], ['think', 'malibu', 'drink', 'let', 'us', 'hit', 'bottl', 'woop', 'woop', 'xx'], ['yes', 'babe', 'welcom'], ['yay', 'joy', 'depart'], ['good', 'morn', 'way', 'public', 'holiday', 'uk', 'love', 'dinner', 'tonoght', 'special', 'peopl'], ['fli', 'nz', 'great', 'way', 'get', 'result', 'aggreg'], ['greg', 'show', 'friend', 'audioboo', 'everyon', 'seem', 'love', 'ta', 'headzup', 'bro', 'need', 'get', 'iphon', 'roll', 'june'], ['rockstar', 'photograph', 'shoot', 'went', 'great', 'tonight', 'littl', 'differ', 'usual', 'stuff', 'nice'], ['emili', 'ahahha', 'scare', 'would', 'work'], ['get', 'fix', 'year', 'worth', 'thing'], ['wonder', 'earth', 'new', 'tool'], ['oh', 'not', 'spoil', 'fun', 'lol'], ['ah', 'say', 'nicest', 'thing'], ['slept', 'like', 'log', 'last', 'night', 'full', 'energi'], ['hahah', 'okay', 'thank', 'short', 'explan'], ['lol', 'sure', 'would', 'kick', 'azz', 'version', 'ever', 'heard'], ['not', 'supposs', 'support', 'local', 'economi', 'lol', 'good', 'congrat'], ['good', 'day'], ['excit', 'week'], ['happi', 'judday', 'carri'], ['lt', 'blackberri'], ['good', 'good'], ['talent', 'sam'], ['thank', 'man', 'not', 'wait'], ['good', 'stuff', 'not', 'wait', 'result'], ['hope', 'wish', 'come', 'true', 'someday'], ['wahey', 'fanci', 'meet', 'thank', 'tweet', 'great', 'twitter', 'togeth'], ['heyi', 'alway', 'look', 'nice', 'want', 'come', 'friend', 'parti', 'june', 'long', 'weekend', 'sydney'], ['not', 'impress', 'almost', 'alway', 'rain', 'bank', 'holiday', 'stil', 'free', 'day', 'colleg'], ['tweet', 'guilt', 'trip', 'not', 'stop', 'huh', 'felt', 'bad'], ['man', 'kickin', 'top', 'hat', 'left', 'invit', 'blue', 'jam', 'session', 'put', 'street', 'musician', 'harpmanhatt'], ['hurtl', 'headlong', 'day', 'spanish', 'art', 'view', 'tomorrow', 'revis', 'extra', 'free'], ['lol', 'thank', 'much', 'hope', 'great', 'day'], ['yay', 'got', 'stuff', 'perfect', 'tast', 'like', 'banana', 'appl'], ['understand'], ['not', 'think', 'like', 'roy', 'william', 'dissect', 'frog', 'still', 'aliv', 'gt', 'look', 'like', 'chachi', 'happi', 'day'], ['afternoon', 'offic', 'cubicl', 'move', 'not', 'system', 'yippi', 'mine', 'one', 'te', 'surviv', 'quot', 'good', 'quot', 'system'], ['ahh', 'other', 'like', 'hoppusday', 'etc', 'spazz'], ['like', 'one', 'actual', 'know', 'shizz', 'dum', 'diggin'], ['portug', 'spain', 'sore', 'throat', 'scari'], ['oh', 'love', 'well', 'mcr', 'song', 'great', 'happi', 'star', 'war', 'day', 'yaa', 'xd'], ['hey', 'chiclit', 'happen', 'tri', 'promot', 'busi', 'realli', 'hard'], ['serious', 'increas', 'good', 'night', 'stoke', 'life', 'could', 'not', 'happier', 'goodnight'], ['well', 'pray'], ['best', 'day', 'ever', 'birthday'], ['look', 'forward', 'yummi', 'dinner', 'mizz', 'kate', 'jone', 'even'], ['hehe', 'wonder', 'wtf', 'star', 'war', 'day', 'top', 'trend', 'topic', 'get', 'may', 'fourth', 'also'], ['appl', 'keyboard', 'realli', 'cool', 'want', 'one', 'use', 'doctor'], ['go', 'town', 'later', 'get', 'birthday', 'present', 'ipod', 'touch', 'nice', 'think'], ['mani', 'mani', 'thank', 'school', 'wee'], ['not', 'good', 'enough'], ['morn', 'look', 'forward', 'nice', 'bbq', 'today', 'everyon', 'follow', 'pleas'], ['chill', 'boy', 'gone', 'time', 'relax'], ['roflmao', 'feel', 'inspir', 'go', 'start', 'huge', 'bonfir'], ['love', 'sugar', 'puff', 'play', 'amaz', 'dog', 'jack'], ['star', 'war', 'gay', 'boo', 'want', 'jobe', 'hand', 'act', 'high', 'school', 'lol'], ['haha', 'go', 'martin', 'fix', 'ski', 'like', 'million', 'time'], ['thank', 'love', 'birthday', 'messag'], ['teddi', 'chuck', 'time'], ['juz', 'curious'], ['morn', 'hope', 'love', 'holiday', 'monday', 'whatev', 'goin'], ['video', 'funni', 'sign', 'vote', 'x'], ['woo', 'two', 'day', 'till', 'awesom', 'gig', 'one', 'day', 'till', 'uni', 'finish', 'day', 'gig'], ['not', 'dig', 'emo', 'shit', 'like', 'song', 'sorri', 'emo'], ['love', 'smell', 'procrastin', 'morn', 'oder'], ['not', 'know', 'p', 'end', 'wake', 'mysteri', 'world'], ['happi', 'star', 'war', 'one', 'fourth'], ['star', 'war', 'gay', 'boo', 'want', 'job', 'hand', 'act', 'high', 'school', 'lol'], ['haha', 'check', 'site', 'got', 'good', 'one'], ['check', 'oceanup', 'quot', 'miley', 'cyrus', 'justin', 'gaston', 'fight', 'lunch', 'quot', 'ok', 'justin', 'whatev', 'happen'], ['time'], ['hey', 'noth', 'wrong'], ['think', 'come', 'back', 'brisban', 'australia', 'love'], ['hungri', 'go', 'eat', 'catch', 'guy', 'later', 'amp', 'peopl', 'hurt', 'sardon', 'quot', 'wait', 'hit', 'back'], ['britt', 'came', 'way', 'say', 'fourth', 'work', 'done'], ['fickl', 'seem', 'appropri', 'twitter', 'user'], ['give', 'manicur', 'pedicur', 'ahh', 'miss', 'nice', 'pretti', 'nail'], ['better', 'light', 'would', 'enhanc', 'photo', 'nice', 'angl', 'though'], ['folio', 'work', 'keep', 'get', 'distract', 'deb', 'pic'], ['not', 'prob', 'hun'], ['back', 'wingman', 'great', 'weekend'], ['finish', 'watch', 'movi', 'like', 'realli', 'not', 'anyth', 'ten', 'give', 'cool'], ['cute', 'time'], ['mee', 'look', 'amaze'], ['listen', 'litl', 'hyperbirdi', 'terror', 'world', 'sinc', 'let', 'us', 'cook'], ['feel', 'stupid', 'say', 'not', 'know', 'twitter', 'one', 'pleas', 'help', 'peopl', 'pleas', 'not', 'laugh', 'ok', 'laugh'], ['yeah', 'shit', 'tire', 'headach', 'play', 'game', 'rygbi', 'ill', 'right', 'xx', 'lt'], ['easi', 'tri', 'learn', 'serious', 'new', 'word'], ['imho', 'soft', 'best', 'keep', 'chao', 'straight'], ['awh', 'tom', 'realli', 'cute', 'love', 'guy', 'realli', 'care', 'fan', 'x'], ['good', 'raini', 'morn'], ['welcom', 'twitter', 'friend'], ['cute', 'pictur', 'not', 'get', 'fat', 'lick', 'bbqs', 'must', 'found', 'chop', 'someon', 'els'], ['congrat', 'hughesi', 'holli', 'safe', 'arriv', 'rafferti', 'david', 'hugh', 'hope', 'well', 'xoxo'], ['haha', 'like', 'actual', 'say', 'thank', 'bot', 'never', 'look', 'like'], ['good', 'lad', 'wore', 'phil', 'known', 'year', 'seem', 'like', 'minut', 'haha', 'ok', 'hayley'], ['aus', 'zimmermann', 'illionar', 'dhini', 'gail', 'sorronda', 'romanc', 'born', 'lisa', 'ho', 'cassett', 'tutu', 'balmain', 'ispir'], ['wed', 'could', 'not', 'perfect'], ['go', 'bed', 'talk', 'ya', 'later', 'goodnight', 'birdi', 'lol'], ['hope', 'iv', 'play', 'like', 'time', 'kind', 'sick', 'hehe'], ['seesmic', 'desktop', 'seem', 'pretti', 'good', 'nice', 'find'], ['love', 'look', 'fabul', 'nice', 'learn', 'someth', 'new'], ['excel', 'analog'], ['mm', 'best', 'delici', 'chocol', 'pancak', 'tea', 'break', 'oh', 'thank', 'god', 'herhsey', 'chocol', 'syrup'], ['bank', 'holiday', 'monday', 'rock', 'particular', 'follow', 'kind', 'sunday'], ['oh', 'good', 'cake'], ['happi', 'star', 'war', 'day', 'may', 'fourth'], ['worri'], ['holi', 'kraut', 'not', 'stay', 'late', 'book', 'done', 'author', 'box', 'tuck'], ['happi', 'bank', 'holiday', 'monday', 'tweeterama', 'spend', 'day', 'yoga', 'ocd', 'attack'], ['hello', 'taylor', 'miss', 'month', 'lt'], ['flippin', 'sweet', 'dude', 'thank', 'share'], ['day', 'go', 'happi', 'birthday'], ['not', 'sure', 'fan', 'week', 'wow', 'guess', 'soon', 'overtak', 'malaysian', 'page'], ['lisa', 'roger', 'carpool', 'alltim', 'fave', 'good', 'work'], ['saw', 'not', 'surpris', 'bad', 'back', 'moan', 'back'], ['good', 'morn', 'quot', 'return', 'willen', 'island', 'spring', 'definit', 'sprung', 'quot', 'enjoy'], ['haappi', 'bank', 'holiday', 'week', 'aah'], ['not', 'let', 'sun', 'catch', 'cri', 'oh', 'cool'], ['oh', 'happi', 'day', 'nice', 'weather', 'smile', 'happi', 'babi', 'icecream', 'later'], ['ah', 'good', 'glad', 'use'], ['scari', 'reflect', 'thought', 'go', 'wizz', 'pant'], ['hee', 'hee', 'holiday', 'gutter', 'tri', 'get', 'week', 'least', 'welcom', 'lol', 'xx'], ['uft', 'tutor', 'lil', 'sis', 'cute', 'even', 'though', 'eighth', 'grader', 'p'], ['good', 'morn', 'noth', 'particular', 'meet', 'peopl', 'drink', 'even', 'monday'], ['look', 'good', 'want', 'one'], ['photo', 'call', 'hope'], ['umm', 'get', 'readi', 'help', 'mum', 'give', 'gj', 'present', 'get', 'could', 'wait', 'peopl', 'arriv', 'parti'], ['haha', 'happi', 'star', 'war', 'day', 'quot', 'may', 'quot', 'clever'], ['morn', 'world', 'hello', 'bank', 'holiday', 'cold', 'grey', 'raini', 'feel', 'like', 'colour', 'thank', 'might'], ['got', 'tattoo', 'fix', 'today', 'not', 'hurt', 'much', 'thank', 'god', 'not', 'wait', 'get', 'next', 'one'], ['yay', 'slowli', 'rest', 'grade', 'come', 'hope', 'readi', 'constant', 'tweet'], ['heloo', 'wos', 'work', 'pretti', 'hope', 'alright', 'certain', 'individu', 'not', 'ruin'], ['day', 'cellstorm', 'like'], ['yay', 'go', 'taylor', 'swift', 'come', 'australia'], ['ask', 'creat', 'fake', 'competet', 'declar', 'winner', 'gift', 'return', 'ticket', 'courtesi', 'produc'], ['fantast', 'pick', 'hooker'], ['right', 'turn', 'octob', 'think', 'pretti', 'much', 'make', 'us', 'awesom'], ['congrat', 'drep', 'good', 'luck', 'sa', 'interview'], ['hope', 'review', 'site'], ['hi', 'cs', 'welcom', 'twittervers', 'help', 'anyth', 'ask'], ['yay', 'final', 'get', 'trip', 'away', 'home', 'excit', 'go', 'shop', 'bit'], ['oh', 'nice', 'hope', 'wonder', 'relax', 'day'], ['eat', 'cracker', 'yummi', 'unsalt', 'one', 'cours', 'salt', 'caviar'], ['way', 'happi', 'star', 'war', 'day', 'may', 'fourth', 'know', 'total', 'dork'], ['ok', 'friend', 'dye', 'hair', 'black', 'scari', 'know', 'ill', 'tri', 'post', 'pic', 'tonight', 'not', 'tomorrow', 'verdict'], ['good', 'luck', 'well', 'best', 'wish'], ['hope', 'not', 'hot', 'summer', 'littl', 'one', 'today', 'good'], ['thank', 'ask', 'sarah', 'glad', 'tomorrow', 'holiday', 'korea', 'rest', 'right', 'rain'], ['mount', 'dish', 'conquer', 'dish', 'land'], ['haha', 'good', 'phone', 'convers', 'cat', 'ladi', 'go', 'homeless', 'not', 'tell', 'coffe', 'come', 'tomorrow'], ['oh', 'cool', 'alpha', 'come', 'featur', 'want', 'request'], ['kudo', 'love', 'homemad', 'french', 'toast'], ['morn', 'welcom', 'new', 'follow'], ['camb', 'better', 'sure', 'ee', 'week', 'meet', 'sunday'], ['thank', 'much', 'dear', 'damali', 'prayer', 'work', 'much', 'better', 'god', 'will', 'rest', 'lot', 'xoxo'], ['happi', 'birthday', 'better', 'get', 'birthday', 'greet', 'stranger', 'littl', 'kid', 'lt'], ['thank', 'keep', 'updat', 'turn'], ['happi', 'star', 'war', 'day', 'may', 'fourth'], ['welcom'], ['final', 'manag', 'catch', 'boyfriend', 'skype', 'soo', 'happi'], ['ooh', 'sound', 'yummi', 'get', 'chanc', 'take', 'pic', 'pleas', 'add', 'websit', 'not', 'mani', 'pie'], ['answer', 'prayer', 'caught', 'surpris', 'lord', 'amaz'], ['dow', 'futur', 'point', 'night', 'trade', 'look', 'like', 'may', 'good', 'start', 'far'], ['simpl', 'know', 'use', 'hahaa', 'glad', 'okay', 'x', 'x', 'x'], ['hey', 'like', 'love', 'icar', 'rock', 'youtub', 'account', 'gt'], ['enjoy', 'afternoon', 'tea', 'friend', 'cake', 'delicaci', 'equal', 'sweet', 'time'], ['listen', 'man', 'not', 'move', 'lt', 'love', 'connect', 'gw', 'dutch', 'might', 'art', 'later'], ['wish', 'sunni', 'day', 'might', 'bother', 'get', 'outta', 'bed', 'blue'], ['safer', 'say', 'cube', 'sphere', 'roll', 'buddi', 'awesom', 'time', 'esp', 'one'], ['yay', 'bank', 'holiday'], ['hee', 'love'], ['wtf', 'get', 'hm', 'tm', 'today', 'revis', 'revis', 'revis'], ['shoutout', 'holland', 'pleas', 'got', 'lot', 'fan'], ['thank', 'love', 'tattoo', 'special', 'xx', 'feet', 'one', 'beauti', 'xx'], ['oh', 'star', 'trek', 'go', 'alreadi', 'woo'], ['take', 'take', 'face', 'robbi'], ['lil', 'cuz', 'come', 'round', 'today', 'aww', 'haha'], ['hello', 'thankyou', 'alway', 'seem', 'make', 'differ', 'someon', 'life', 'everyday'], ['not', 'broken', 'monday', 'mean', 'monday', 'fix'], ['use', 'newsfir', 'work', 'like', 'charm'], ['done', 'posit', 'affirm', 'back', 'japanes', 'yay', 'bank', 'holiday', 'monday'], ['good', 'job', 'logi', 'year', 'hell', 'funni', 'right', 'baggin', 'logi', 'tradit', 'aussi'], ['thank', 'first', 'follow'], ['oo', 'explan', 'thank', 'god', 'would', 'forev', 'love', 'good', 'night', 'mare', 'though'], ['make', 'enjoy'], ['good', 'thank', 'may', 'need', 'advic', 'soon', 'play', 'new', 'font'], ['aww', 'cuut', 'newborn', 'fun'], ['quit', 'like', 'god', 'save', 'king'], ['not', 'cute', 'go', 'daddi'], ['big', 'welcom', 'twitterlandz', 'grrl', 'realli', 'wish', 'could', 'made', 'betti', 'show', 'glad', 'hear', 'success'], ['problem', 'box', 'undernourish', 'profession'], ['salut', 'chapel', 'hill', 'north', 'carolina', 'sy'], ['thank', 'followfriday', 'see', 'us', 'south', 'african', 'holiday', 'fri'], ['haha', 'way', 'cool', 'good', 'morn'], ['final', 'finish', 'tec', 'recip', 'card', 'feel', 'somewhat', 'accomplish'], ['welcom'], ['final', 'go', 'bed', 'everybodi', 'whatev', 'bless'], ['good', 'work', 'done'], ['drive', 'come', 'across', 'aggress', 'drive', 'behaviour', 'anoth', 'driver', 'chase', 'car', 'tell', 'driver', 'drive'], ['tom', 'saw', 'guy', 'look', 'like', 'campus', 'today', 'soo', 'ador', 'quot', 'still', 'cuter', 'haha'], ['good', 'one'], ['palm', 'itchi', 'not', 'mean', 'someth', 'come', 'great', 'deal', 'money'], ['extrem', 'happi', 'see', 'new', 'track', 'quot', 'awaken', 'quot', 'featur', 'indivib'], ['plant', 'flover', 'school', 'garden', 'yr', 'mucki', 'great', 'fun'], ['alway', 'welcom', 'sweeti', 'hug'], ['play', 'fontstruct', 'upload', 'dafont', 'download', 'amp', 'top', 'categori', 'wtf', 'moment'], ['love', 'macaramb'], ['good', 'morn'], ['keep', 'work', 'lol', 'good', 'idea'], ['aha', 'brother', 'wallpap', 'phone', 'dolli', 'sheep', 'aha', 'lole'], ['hi', 'john', 'thank', 'share', 'quot', 'soo', 'true'], ['thank', 'check'], ['jona', 'brother', 'live', 'parti', 'rock', 'hard', 'love', 'song'], ['kuala', 'lumpur', 'know', 'vanish', 'haha', 'broke', 'last', 'boyfriend', 'back'], ['glad', 'like', 'gmail', 'visual', 'peopl', 'like', 'asthet', 'right', 'not'], ['enjoy', 'bank', 'holiday', 'meet', 'real', 'estat', 'agent', 'offer', 'amsterdam', 'apart', 'rent'], ['rofl', 'hahaha', 'let', 'tell', 'salman', 'munir'], ['watch', 'new', 'advert', 'youtub', 'love', 'quot', 'hey', 'jude', 'quot'], ['yeah', 'well', 'deadlin', 'hour', 'architectur', 'oh', 'well', 'mm', 'coffe', 'sound', 'like', 'good', 'idea'], ['geek', 'build', 'photoblog', 'theme'], ['lose', 'mani', 'taiwanes', 'drama', 'not', 'good', 'xd', 'wu', 'chun', 'ee'], ['chillax', 'realli', 'yeah', 'man', 'hehe'], ['omg', 'miss', 'bus', 'walk', 'mile', 'coffe', 'went', 'see'], ['googl', 'quot', 'engag', 'ring', 'quot', 'amp', 'exact', 'ring', 'result', 'sigh', 'love'], ['yup', 'work', 'away', 'hard', 'busi', 'busi', 'busi'], ['put', 'societ', 'general', 'china', 'interest', 'stuff', 'away', 'much', 'got', 'fix'], ['bodi', 'not', 'itch', 'anymor'], ['happi', 'star', 'war', 'day', 'may'], ['love', 'fact', 'bank', 'holiday', 'monday', 'stay', 'bed'], ['itali', 'greec', 'love', 'italian', 'men', 'hehe'], ['bet', 'never', 'look', 'back', 'week', 'long', 'school', 'trip'], ['look', 'miss', 'coupl', 'hour', 'sorri', 'let', 'know', 'next', 'time'], ['near', 'accord', 'stat', 'ff', 'adopt', 'rate', 'amaz'], ['got', 'home', 'bought', 'twiggi', 'toothbrush', 'promis', 'make', 'teeth', 'cleaner'], ['nice'], ['love', 'song', 'like', 'movi'], ['well', 'yeah', 'hormon', 'thing', 'basic', 'given', 'thought', 'misbehav', 'specif', 'upset', 'mom'], ['aha', 'mean', 'take', 'look', 'look', 'cool', 'could', 'get', 'pool'], ['realli', 'best', 'night', 'ever'], ['littl', 'lift', 'tonight', 'would', 'much', 'appreci'], ['go', 'near', 'hive', 'tame'], ['net', 'net', 'net', 'hmm', 'bad', 'weather', 'weird', 'summer'], ['haha', 'photo', 'funni', 'hope', 'not', 'disturb', 'passeng', 'much', 'flight'], ['happi', 'star', 'war', 'day'], ['hurray', 'quot', 'quot', 'start', 'today', 'mean', 'work', 'pm', 'instead', 'august', 'yay'], ['congratul', 'icehockey', 'victori', 'switzerland'], ['go', 'line', 'rest', 'day', 'made', 'progress', 'game', 'weekend', 'may', 'not', 'like'], ['thank', 'much'], ['quot', 'complet', 'black', 'book', 'quot', 'arriv', 'look', 'forward', 'entertain', 'tv', 'night', 'dvd'], ['love', 'monday', 'mani', 'reason'], ['star', 'war', 'day', 'not', 'know', 'thing', 'may', 'forc', 'lt'], ['creat', 'busi', 'us', 'franc', 'look', 'quiet', 'easi'], ['reason', 'wonder', 'love'], ['ken', 'wilber', 'realist', 'expect', 'integr', 'wisdom', 'interest', 'not', 'mind', 'video', 'qualiti'], ['haha', 'would', 'cool', 'brianna', 'fli', 'haha'], ['video', 'myspac', 'run', 'lot', 'hahaha', 'vote'], ['good', 'see', 'not', 'lost', 'sens', 'humour', 'get', 'well', 'soon'], ['hungov', 'crazi', 'night', 'also', 'bad', 'book', 'mother'], ['welcom', 'sinc', 'seem', 'interest', 'chees', 'hard', 'suggest', 'follow'], ['hope', 'today', 'flow', 'lot', 'nice', 'thing', 'happen', 'work', 'come', 'home', 'happi'], ['impress'], ['call', 'high', 'five', 'not', 'miss', 'hotshot', 'xd'], ['good', 'morn', 'guy', 'experiment', 'chemistri', 'test', 'morn', 'wish', 'luck'], ['good', 'question', 'nepal', 'pm', 'declar', 'resign', 'actual', 'resign', 'two', 'differ', 'thing'], ['good', 'know', 'not', 'alon', 'confus'], ['listen', 'simpli', 'awesom', 'ratatat', 'bank', 'holiday', 'monday', 'bbq', 'later'], ['great', 'new', 'directori', 'babysitterdirectori', 'come', 'soon', 'directori', 'twist', 'reveal', 'next', 'week'], ['seem', 'like', 'win', 'win', 'situat'], ['okayi', 'read', 'feel', 'special', 'haha'], ['cri', 'babi', 'jane', 'joplin', 'munsay', 'music', 'not', 'know', 'wich', 'shit', 'day', 'today'], ['cute', 'watch', 'matt', 'play', 'wii', 'work'], ['not', 'want', 'leav', 'secret', 'know', 'australia', 'twenti', 'time', 'better', 'america'], ['haha', 'sound', 'like', 'lizzi', 'l', 'got', 'sister', 'older', 'like', 'argh', 'time'], ['wow', 'see', 'obsess'], ['aww', 'post', 'pic', 'bet', 'look', 'dead', 'nice'], ['ok', 'ginorm', 'cup', 'coffe', 'monday', 'look', 'much', 'better'], ['cool', 'use', 'live', 'hous', 'left', 'place', 'alway', 'someth', 'go', 'p'], ['good', 'morn', 'happi', 'monday', 'everyon'], ['burn', 'time', 'wacha'], ['question', 'charact', 'one', 'histori', 'great', 'unansw', 'would', 'say'], ['nice', 'skillz', 'nick', 'x', 'love', 'alway', 'marjori', 'amp', 'jemimah', 'sydney', 'australia'], ['omg', 'himym', 'one', 'best', 'show', 'earth'], ['soon', 'hope', 'realli', 'need', 'finish', 'clone', 'project', 'get', 'done'], ['sip', 'oj', 'sun', 'san', 'pedro', 'la', 'soberana', 'sunni', 'smiley', 'nita', 'garlic', 'tomato', 'past', 'delici', 'yummi'], ['ok', 'nice', 'one', 'cheer', 'boss', 'like', 'lack', 'fcs', 'today'], ['musicmonday', 'agre', 'excus', 'tweet', 'music', 'hour', 'end'], ['garden', 'make', 'pictur', 'weed', 'sweep', 'weather', 'nice', 'see', 'peopl'], ['ooh', 'cut', 'like'], ['think', 'way', 'god', 'work', 'tremend', 'amaz', 'made', 'possibl', 'get', 'card', 'holder', 'lost', 'back'], ['nice', 'gimmeh', 'nice', 'stuff'], ['yes', 'think', 'safe', 'say', 'popular', 'level', 'today', 'alway'], ['pretti', 'well', 'wide', 'awak'], ['get', 'readi', 'start', 'work', 'work', 'not', 'bad', 'great', 'one', 'everybodi'], ['back', 'weekend', 'getaway', 'energ', 'anoth', 'week', 'bring', 'lol'], ['congrat', 'everi', 'day', 'sinc', 'one', 'month'], ['hey', 'david', 'wonder', 'receiv', 'letter', 'song', 'malaysia', 'pleas', 'repli', 'nice', 'day'], ['happi', 'bank', 'holiday', 'monday', 'twitter', 'bath', 'time', 'spring', 'clean', 'movi', 'marathon', 'lazi', 'day'], ['way', 'mani', 'peopl', 'inde', 'recogn', 'chines', 'guy', 'lol'], ['see', 'later', 'love', 'ladi', 'good', 'amp', 'love', 'million', 'xx'], ['littl', 'thing', 'make', 'love'], ['compliment', 'taken', 'thank', 'key'], ['market', 'whn', 'goe', 'lower', 'also', 'problem', 'goe', 'like', 'wild', 'bull', 'also', 'problem'], ['sound', 'good'], ['hilari'], ['hi', 'charli', 'thank', 'follow', 'nice', 'know', 'anoth', 'ollmann', 'new', 'world'], ['quiz', 'feliza', 'bug', 'us', 'get', 'annoy'], ['kat', 'stewart', 'great', 'job', 'great', 'charact', 'not', 'watch', 'underbelli', 'victoria'], ['get', 'excit', 'thorp', 'park', 'tomorrow'], ['happi', 'bank', 'holiday'], ['go', 'run', 'gym', 'get', 'workout', 'realli', 'big', 'pile', 'mulch', 'arriv', 'around', 'excit', 'mulch'], ['great', 'time', 'boston', 'thank', 'babi', 'girl'], ['proud', 'serious', 'think', 'join', 'next', 'year', 'got', 'get', 'train'], ['nah', 'alter', 'forev', 'enjoy'], ['love', 'birdi', 'nest', 'though', 'alreadi', 'got', 'us', 'anoth', 'kind'], ['yay', 'good', 'back'], ['happi', 'star', 'war', 'day', 'everyon', 'say', 'may'], ['morn', 'world', 'rain', 'revis', 'not', 'seem', 'tough'], ['may', 'back', 'good', 'day', 'byee', 'xx'], ['good', 'night'], ['damn', 'straight', 'know', 'game', 'heard', 'track', 'know', 'rock'], ['great', 'honey', 'base', 'recip', 'amp', 'kid', 'download', 'join', 'fun', 'honey', 'week'], ['whew', 'thassa', 'relief'], ['realli', 'good', 'interview', 'read', 'realli', 'enjoy', 'x'], ['set', 'new', 'comput', 'love', 'norton', 'ghost'], ['well', 'not', 'look', 'fab', 'even', 'say'], ['good', 'big', 'cousin', 'take', 'littl', 'cousin', 'see', 'hannah', 'montana', 'movi', 'next', 'weekend'], ['tri', 'think', 'someth', 'calm', 'peac', 'relax', 'beach'], ['happi', 'star', 'war', 'day', 'may', 'fourth'], ['thank', 'deari', 'follow', 'dome'], ['thank', 'xo'], ['present', 'went', 'well', 'yes', 'also', 'met', 'buch', 'cool', 'peopl', 'check', 'portfolio', 'nice', 'project'], ['not', 'love', 'bank', 'holiday'], ['need', 'yummi', 'breakfast', 'shift'], ['know', 'cat', 'could', 'famili', 'mikesh', 'cute'], ['day', 'frisbe', 'three', 'night', 'parti', 'sprain', 'ligament', 'not', 'imagin', 'better', 'long', 'weekend'], ['download', 'movi', 'notori', 'cool', 'movi'], ['not', 'wait', 'hear', 'evp', 'cuut', 'pictur'], ['cool', 'good', 'back', 'train'], ['love', 'music', 'especi', 'fight', 'awsom', 'song', 'far'], ['woo', 'come', 'nottingham', 'point', 'lovelovelov', 'lt'], ['goodnight', 'magic', 'pretti', 'world'], ['came', 'back', 'bishopstorford', 'went', 'aunt', 'wed', 'parti', 'way', 'fun', 'got', 'see', 'cousin', 'year'], ['pleasur', 'bojan'], ['total', 'agre'], ['dinner', 'done', 'shower', 'done', 'time', 'chill', 'block', 'chocol'], ['thank', 'twitpic', 'sure', 'made', 'laugh'], ['might', 'cute', 'littl', 'pictur', 'book', 'call', 'quot', 'littl', 'book', 'bore', 'quot'], ['great', 'bout', 'call', 'love', 'life', 'god', 'sake'], ['thank', 'ff', 'wink'], ['mahalo', 'great', 'show', 'aloha', 'thank', 'makin', 'kauai', 'enjoy', 'safe', 'trip'], ['hey', 'suck', 'anybodi', 'bore', 'common', 'answear'], ['ahh', 'ikr', 'cuteset', 'thing', 'ever', 'plus', 'remind', 'twilight', 'good', 'loov', 'much'], ['saw', 'pic', 'remind', 'anna', 'king', 'cuut', 'littl', 'fella'], ['got', 'ya', 'would', 'not', 'bad', 'though', 'right'], ['kind', 'excit', 'go', 'school', 'today', 'not', 'know', 'hope', 'good', 'day'], ['love', 'life'], ['product', 'day'], ['hear', 'name', 'thank', 'ankit', 'get', 'parlour', 'hokeypokeybandra'], ['thankyou', 'lt', 'iloveyoutwoo'], ['love', 'new', 'hr', 'monitor'], ['get', 'cold', 'got', 'coffe', 'break', 'minut', 'ago', 'enjoy', 'drink'], ['final', 'done', 'project', 'haha', 'goodnight', 'lt'], ['congratul', 'two', 'ador', 'beauti', 'ring'], ['bad', 'homi'], ['hahah', 'way', 'lazi', 'check', 'phone', 'oo', 'michel', 'wtach', 'recruit'], ['goodmorn', 'thank', 'much', 'kind', 'sun', 'go', 'paint', 'outsid'], ['diggin', 'moustachio', 'look', 'good', 'daddio'], ['yep', 'noth', 'better'], ['help', 'make', 'twitter', 'account'], ['alreadi', 'back', 'shop', 'nice', 'monday', 'roast'], ['done', 'final', 'yay', 'relax', 'well', 'one', 'day', 'haha'], ['yep', 'hope', 'lame', 'attempt', 'space', 'help', 'hinder', 'lol', 'know', 'tomorrow', 'guess'], ['give', 'first', 'hug'], ['love', 'twilight'], ['may', 'today', 'round', 'weekend', 'one', 'session', 'happi', 'fintster'], ['good', 'morn', 'miamiadc', 'weekend', 'great', 'monday', 'also', 'great', 'hope', 'wonder', 'day'], ['colleen', 'realli', 'sincer', 'hope', 'get', 'better', 'soon'], ['watch', 'hill', 'arghh', 'love', 'itt', 'makin', 'r', 'liam', 'watch', 'haha', 'girl', 'aloud', 'dayss', 'not', 'waitt', 'see', 'cheryl', 'x'], ['thank'], ['hey', 'love', 'hope', 'good', 'day', 'thank', 'awsom', 'night', 'teach', 'put', 'togeth'], ['haha', 'nice', 'wheel', 'victoria', 'peddl', 'thank', 'boy', 'get', 'free', 'ride'], ['yay', 'good', 'enjoy', 'break', 'probabl', 'need', 'hectic', 'weekend', 'take', 'care', 'hun', 'xx'], ['kind', 'cute', 'honest'], ['hate', 'love', 'present', 'got', 'cancel', 'got', 'went', 'work', 'today', 'pitch'], ['app', 'final', 'face', 'truth', 'lack', 'time', 'never', 'abl', 'achiev', 'goal', 'life'], ['happi', 'star', 'war', 'day', 'may', 'fourth'], ['love', 'pb', 'amp', 'banana', 'sandwich', 'still', 'fav', 'mine'], ['go', 'relax', 'hot', 'bath', 'goodnight', 'twit', 'amp', 'not', 'worri', 'andi', 'love', 'twitter', 'hehe'], ['alway', 'amus'], ['yep', 'tomorrow', 'night', 'saw', 'ad', 'squeal', 'love', 'season'], ['ever', 'mention', 'nice', 'awesom', 'dude'], ['woke', 'bank', 'holiday', 'monday', 'colleg', 'got', 'text', 'tom', 'via', 'jason', 'mobil', 'earlier', 'today', 'hope', 'turn'], ['go', 'good', 'week'], ['cheer', 'aptism', 'link'], ['mint', 'choc', 'ice', 'cream', 'whilst', 'good'], ['ha', 'ha', 'thank', 'not', 'drag', 'mountain', 'today'], ['soo', 'intrigu', 'want', 'tri', 'weekend', 'kaya', 'lang', 'baka', 'maaddict', 'ako'], ['good', 'episod', 'top', 'gear', 'tonight'], ['said', 'til', 'later', 'enjoy', 'day', 'everyon'], ['thank', 'ennio'], ['quot', 'pack', 'angri', 'eye', 'incas', 'quot'], ['oo', 'thank', 'danger', 'radio', 'link', 'love', 'test', 'go'], ['bout', 'go', 'bed', 'pretti', 'good', 'day', 'monday'], ['lloovve', 'icar'], ['welcom'], ['french', 'not', 'teacher', 'one', 'hour', 'left', 'til', 'school', 'end'], ['not', 'chanc', 'watch', 'get', 'hold', 'thank', 'tip'], ['appreci', 'kind', 'word', 'glad', 'word', 'reson'], ['feel', 'happi', 'despit', 'amount', 'work', 'need', 'today', 'happi', 'time'], ['eat', 'breakfast', 'get', 'readi', 'go', 'school'], ['bought', 'tv', 'tuner', 'laptop', 'deserv', 'present'], ['cool', 'thing', 'success', 'entrepreneur', 'pleas', 'share'], ['namast', 'hooray', 'monday', 'undaunt', 'wakeup', 'consid', 'london', 'feel', 'justifi', 'bright', 'side', 'everyth'], ['comput', 'hopeless', 'everyth', 'els'], ['idiotat', 'cool', 'th', 'nks', 'follow', 'techyuppi', 'idiot'], ['work', 'cool', 'gang'], ['knew', 'go', 'kind', 'parti', 'would', 'stuck', 'dick', 'mash', 'potato'], ['hmm', 'wrong', 'link', 'ignor', 'tweet'], ['yes', 'beauti', 'fortun', 'live', 'thick', 'relax'], ['grin', 'like', 'cheshir', 'cat', 'hell', 'made', 'day'], ['morn', 'bless', 'day'], ['well', 'alright', 'dollhous', 'still', 'frick', 'awesom', 'elisha', 'perform', 'last', 'week', 'episod', 'sold', 'final'], ['win'], ['lmao', 'yes', 'get', 'excit', 'lol'], ['aww', 'happi', 'birthday'], ['problem', 'think', 'great', 'thing', 'reflect'], ['goodmorn', 'peopl', 'earth'], ['hello', 'hope', 'flu'], ['funni', 'fill', 'speak', 'cheer'], ['go', 'picnic', 'dad', 'atleast', 'persaud', 'idea', 'walk', 'amp', 'cycl', 'yum', 'special', 'k'], ['aw', 'okay', 'tht', 'happen', 'wid', 'glad', 'thts', 'not', 'helpin', 'lol', 'thnx', 'postin', 'wmiad', 'love'], ['saw', 'tweet', 'minut', 'go', 'lunch', 'decid', 'skip', 'today', 'thank', 'save', 'money', 'speedi', 'recoveri'], ['well', 'best', 'luck'], ['got', 'follow', 'feel', 'special'], ['alphonso', 'milkshak', 'morn', 'lassi', 'afternoon', 'fresh', 'nimbupaani', 'fun'], ['nope', 'not', 'comin', 'gurl'], ['good', 'morn'], ['funni'], ['oh', 'ok', 'wed', 'heap', 'nice', 'big', 'fan', 'qld'], ['thank', 'everyon', 'twitter', 'still', 'newbi', 'friend', 'would', 'like', 'invit', 'pleas', 'help', 'girl'], ['not', 'think', 'ever', 'laugh', 'hard'], ['welcom', 'back', 'chica', 'hope', 'nice', 'break'], ['hope', 'day', 'nice', 'sun', 'upon', 'us'], ['realli', 'brave', 'ladi', 'walkin', 'around', 'lion', 'book', 'suggest'], ['thank', 'mate', 'came', 'board', 'twitter', 'tweet', 'sound', 'great'], ['book', 'ticket', 'london', 'thursday', 'exict'], ['pleasur', 'wari', 'girli', 'marshmallow', 'lol', 'might', 'save', 'life'], ['mm', 'yummi', 'look', 'like', 'invit'], ['aw', 'poor', 'eek', 'lol', 'rain', 'tri', 'get', 'kid', 'excit', 'afraid'], ['help', 'caramel', 'digest'], ['congratul', 'love', 'japanes', 'children', 'happi', 'kodomo', 'hi'], ['defin', 'tomorrow'], ['pacquiao', 'fight', 'fun', 'home', 'wif', 'fam', 'melissa', 'sat', 'today', 'mission', 'ikea', 'srsli', 'differ', 'freeway', 'ge', 'burbank'], ['definit', 'blast', 'past'], ['monday', 'end', 'weekend', 'not', 'escap', 'wish', 'good', 'week'], ['fun', 'friend'], ['poor', 'bank', 'holiday', 'monday', 'today'], ['love', 'new', 'hairdo', 'haha', 'live', 'ny', 'yeah', 'realli', 'hott'], ['haha', 'yeah', 'meant', 'mall'], ['truli', 'impress', 'not', 'come', 'close', 'take', 'argument', 'whether', 'web', 'need', 'sub', 'new', 'level', 'though'], ['hand', 'relax', 'bit'], ['come', 'vietnam', 'make', 'live', 'show', 'miley', 'much', 'fan', 'love', 'viet', 'nam'], ['ugh', 'look', 'like', 'work', 'good', 'luck'], ['oh', 'snap', 'kind', 'nut', 'right', 'told', 'least', 'thank', 'babe'], ['spend', 'qualiti', 'time', 'fender', 'tele', 'love'], ['well', 'tell', 'fashion', 'tip', 'need', 'woman', 'heheh'], ['thank'], ['love', 'video', 'da', 'funk', 'daft', 'punk'], ['hope', 'today', 'work', 'favor'], ['hahahahaha', 'look', 'realli', 'good', 'pictur'], ['yeah', 'peep', 'good', 'day', 'catchup', 'everyon'], ['jimmi', 'eat', 'world', 'initi', 'favorit', 'band'], ['put', 'saucepan', 'full', 'water', 'cooker', 'heat', 'style', 'scrabbl', 'best'], ['monday', 'go', 'extrem', 'well', 'not', 'expect'], ['haha', 'philippin', 'want', 'follow'], ['iowa', 'like', 'sometim', 'get', 'frustrat'], ['never', 'better', 'thank'], ['yeah', 'great', 'think', 'hear', 'year', 'come'], ['beauti', 'morn', 'time', 'get', 'enjoy', 'sun'], ['oh', 'snap', 'kind', 'nut', 'right', 'told', 'least', 'thank', 'babe'], ['thank', 'info'], ['oh', 'said', 'hug', 'dad', 'left', 'around', 'morn', 'woke', 'empti', 'hous', 'pretti', 'scare'], ['agre', 'come', 'canberra', 'raddest'], ['watch', 'origin', 'wolverin', 'total', 'love', 'haha'], ['oh', 'god', 'yeah', 'cake', 'look', 'delish', 'hope', 'share', 'haha'], ['know', 'feel', 'good', 'morn', 'mate'], ['thank', 'greedi', 'look', 'full', 'fledg', 'widget', 'la', 'twitter', 'like', 'share', 'within', 'nv', 'much', 'expect'], ['typic', 'overcast', 'bank', 'holiday', 'monday', 'glad', 'went', 'beach', 'saturday'], ['thank', 'alot', 'hope', 'help', 'spread', 'word', 'get', 'peopl', 'involv', 'alreadi', 'make', 'real', 'differ'], ['internet', 'draw', 'back', 'blackberri', 'file', 'could', 'take', 'hour', 'draw', 'prep', 'done'], ['happi', 'star', 'war', 'day', 'lol', 'may', 'forc', 'strong'], ['oh', 'god', 'oh', 'god', 'oh', 'god', 'new', 'supernatur', 'start', 'tonight', 'new', 'sam', 'dean', 'oh', 'god', 'not', 'breath', 'lt', 'lt'], ['well', 'like', 'call', 'success'], ['think', 'thumb', 'button', 'cri', 'river'], ['finish', 'watch', 'masterchef', 'surpris', 'perhap', 'good'], ['thank'], ['fight', 'club', 'anniversari', 'nice', 'tattoo'], ['great', 'local', 'stop', 'ask', 'direct', 'even', 'better', 'know', 'answer'], ['thank', 'love', 'video', 'not', 'need', 'download', 'not', 'offer', 'everyth', 'want', 'tri'], ['oh', 'love', 'one', 'thing', 'mum', 'great', 'sound', 'yummi', 'makin', 'hungri', 'lol'], ['haha', 'might', 'good', 'luck', 'take', 'well', 'hope', 'get', 'put', 'name'], ['hope', 'knew', 'due', 'tuesday'], ['dh', 'finish', 'make', 'giant', 'trio', 'candi', 'bar', 'thank', 'heaven', 'work', 'mate', 'treat', 'tomorrow'], ['real', 'geek', 'talk', 'feel'], ['cool', 'look', 'forward', 'frequent', 'tweet'], ['oo', 'enjoy', 'thank', 'look'], ['think', 'big', 'quot', 'size', 'think', 'determin', 'size', 'result', 'quot', 'bob', 'proctor', 'great', 'advic'], ['look', 'great', 'love', 'way', 'bottom'], ['oh', 'like', 'amaz', 'weekend', 'sunshin', 'amp', 'white', 'wine', 'back', 'rehears', 'regim', 'nice'], ['pretti', 'fun', 'way', 'write', 'resign'], ['anoth', 'week', 'begin', 'one', 'got', 'better', 'last'], ['nice', 'wed', 'ring', 'shini'], ['miss', 'daddi', 'mommi'], ['hi', 'everybodi', 'lunch', 'break', 'work', 'enjoy', 'nice', 'cup', 'coffe'], ['ohh', 'right', 'turn', 'curv', 'right', 'angl', 'like', 'better', 'curvey', 'thank', 'let', 'know', 'though'], ['wow', 'car', 'awesom', 'fun', 'alex'], ['morrn', 'time', 'school', 'time', 'learn'], ['listen', 'teddi', 'picker', 'saw', 'grab', 'not', 'seem'], ['thank', 'glad', 'agre', 'wth', 'follow', 'not', 'polici'], ['happi', 'star', 'war', 'day', 'go', 'make', 'pasta', 'get', 'shower', 'dress', 'watch', 'film', 'like', 'day', 'day'], ['much', 'better', 'think'], ['anoth', 'great', 'song', 'sing', 'along'], ['hey', 'tom', 'plan', 'make', 'concert', 'denmark', 'year', 'pleas', 'repli', 'xx'], ['wikileak', 'geht', 'wieder', 'super', 'wikileak', 'onlin'], ['good', 'morn'], ['wack', 'friend', 'raid', 'kitchen', 'rene', 'love', 'bound', 'badluck', 'debbi', 'psycho', 'korean', 'friend', 'lt'], ['great', 'vinyl'], ['school', 'not', 'bank', 'holiday', 'x'], ['oh', 'oh', 'go', 'shop', 'best', 'friend', 'today', 'yaay', 'go', 'much', 'fun', 'need', 'get', 'alot', 'new', 'cloth'], ['right', 'aah', 'love', 'demi', 'lovato'], ['yes', 'ubook', 'lenovo', 'final', 'arriv'], ['appar', 'starwar', 'day', 'today', 'like', 'shame', 'revis', 'though'], ['good', 'see', 'hear', 'well', 'andi'], ['bank', 'holiday', 'brunch', 'fixin', 'absolut', 'fantast'], ['mo', 'nudg', 'better', 'watch'], ['nugget', 'bit', 'jack', 'told', 'not', 'poke', 'poor', 'hamster'], ['glad', 'got', 'safe', 'amp', 'saw', 'daughter', 'enjoy', 'time'], ['jazz', 'band', 'freakin', 'kick', 'ars', 'good', 'job', 'team'], ['think', 'tania', 'cute', 'nice', 'love', 'lt'], ['rcb', 'trash', 'mumbai', 'indian', 'feel', 'bad', 'mumbai', 'indian', 'not', 'know', 'hit'], ['fell', 'austin', 'taura', 'hanafiah', 'even', 'morre', 'shoott', 'guy', 'not', 'look', 'yumm', 'hahaha'], ['may', 'hahahaha', 'neverr', 'get', 'old'], ['back', 'wonder', 'vacat', 'perfect', 'weather', 'back', 'raini', 'realiti'], ['back', 'long', 'island', 'today', 'spend', 'weekend', 'manchest', 'hope', 'great', 'week', 'ahead'], ['tri', 'minna', 'edit', 'quick', 'sorri'], ['cheer', 'buttercup', 'rain', 'go', 'away', 'heart', 'alway', 'mend', 'actual', 'bet'], ['congratul', 'two', 'well', 'suit', 'love', 'day', 'x'], ['happi', 'star', 'war', 'day', 'everyon'], ['realli', 'excit', 'not', 'wait'], ['go', 'relax', 'chill', 'tonight', 'back', 'work', 'tomorrow', 'week', 'least', 'fun', 'time', 'girlfriend'], ['thank', 'agre'], ['thank', 'look'], ['yay', 'not', 'eurovis', 'fan', 'twitter'], ['oo', 'love', 'bank', 'holiday', 'x'], ['happi', 'star', 'war', 'day'], ['manag', 'find', 'place', 'combin', 'fun', 'pleasur', 'save', 'took', 'plan', 'though'], ['hahahaha', 'train', 'want', 'wild', 'ride'], ['yay', 'smokefre', 'well', 'done'], ['thanx', 'tom', 'love', 'great', 'day'], ['order', 'pizza', 'pizza', 'girl', 'sing', 'love', 'new', 'song', 'excit', 'new', 'song', 'jb', 'paranoid', 'day'], ['bought', 'pink', 'ipod', 'nano', 'day', 'ago', 'deliv', 'week', 'yay', 'amp', 'hope', 'get', 'ear', 'pierc', 'week', 'xd'], ['think', 'confus', 'not', 'believ', 'mani', 'peep', 'know', 'heart'], ['omg', 'meant', 'lt', 'perfect', 'wolverin', 'sir', 'hehe'], ['oh', 'god', 'bless'], ['aww', 'sweet'], ['waitin', 'skool', 'bus', 'soo', 'tire', 'nd', 'still', 'soo', 'much', 'b', 'lazi', 'nd', 'sleep', 'sinc', 'cnt', 'ill', 'sing', 'fav', 'song'], ['thank', 'feedback', 'everyon'], ['rode', 'jeep', 'home', 'mentor', 'heard', 'stori', 'fineart', 'pretti', 'cool'], ['skip', 'school', 'way', 'often', 'rather', 'proud', 'actual'], ['not', 'got', 'virgin', 'yet', 'not', 'sure', 'honest', 'thank', 'anyway'], ['star', 'war', 'day', 'may', 'brilliant'], ['miss', 'dear'], ['wonder', 'piec', 'cake', 'lunch', 'els', 'could', 'want'], ['excit', 'visit', 'twin', 'best', 'friend', 'dinner', 'star', 'gaze', 'movi', 'cool'], ['goodnight', 'lolsz'], ['clear', 'cathol', 'wholeheart', 'agre', 'quot', 'quot', 'ambigu', 'tcot', 'hhrs'], ['hate', 'donat', 'toward', 'car', 'fund'], ['not', 'wait', 'see', 'tonit', 'hilari'], ['wow', 'join', 'photographi', 'scene', 'pretti', 'recent', 'larg', 'format', 'make', 'even', 'interest'], ['woo', 'great', 'subject', 'month', 'use', 'sparkler'], ['like', 'not', 'seen', 'clip', 'though', 'pretti', 'cool'], ['lol', 'thought', 'pretti', 'funni'], ['half', 'solut', 'not', 'address', 'intrus', 'process', 'thank'], ['thank', 'messag', 'awesom', 'love', 'new', 'singl', 'xoxo'], ['think', 'go', 'start', 'write', 'proper', 'blog', 'anyon', 'recommend', 'good', 'blog', 'host', 'thingi'], ['hi', 'thank', 'follow', 'teach', 'chines', 'lesson', 'youtub', 'pls', 'feel', 'free', 'look'], ['oohh', 'understand', 'never', 'get', 'sick', 'mom', 'side', 'guess', 'dad', 'like'], ['jealous'], ['next', 'time', 'go', 'onlin', 'show', 'club', 'owner', 'ean', 'golden', 'video', 'hahaha', 'fan', 'mention'], ['good', 'morn', 'world', 'haha', 'fun', 'movi', 'last', 'night', 'school', 'hmm', 'new', 'shoe', 'make', 'better'], ['ooh', 'lol', 'not', 'know', 'fun', 'princess'], ['itsur', 'dear', 'post', 'present', 'swine', 'flu', 'yest', 'got', 'download', 'day', 'feel', 'great'], ['sorri', 'feel', 'bad', 'hope', 'get', 'better', 'soon', 'know', 'plagu', 'not', 'getcha'], ['zeb', 'nap', 'hour', 'alreadi', 'today', 'asleep', 'must', 'grow', 'fast'], ['lmao', 'listen', 'great', 'bob', 'marley', 'wow', 'hes', 'awesom'], ['ohh', 'not', 'log', 'piti', 'great'], ['mom', 'like', 'milow', 'version', 'ayo', 'technolog', 'good', 'thing', 'not', 'clue'], ['hmm', 'interest', 'choic'], ['never', 'ever', 'smoke', 'around'], ['go', 'bubbl', 'bath', 'alway', 'relax'], ['hahahah', 'thank', 'feel', 'love'], ['hi', 'thank', 'follow', 'teach', 'chines', 'lesson', 'youtub', 'pls', 'feel', 'free', 'look'], ['love', 'game', 'xx'], ['thank', 'support'], ['not', 'worri', 'noon', 'got', 'one', 'next', 'question', 'start', 'minut', 'get', 'think', 'cap'], ['hope', 'moment', 'inspir', 'polit', 'journey', 'back', 'home', 'best'], ['bom', 'dia', 'frioo', 'que', 'good', 'luck', 'first', 'day', 'ju'], ['happi', 'birthday', 'let', 'us', 'know', 'get', 'old', 'boy'], ['hi', 'thank', 'follow', 'teach', 'chines', 'lesson', 'youtub', 'pls', 'feel', 'free', 'look'], ['wow', 'earli', 'best', 'convers'], ['thank', 'soo', 'much', 'lil', 'sis', 'gone', 'us', 'bird', 'park'], ['love', 'walk', 'morn', 'missus', 'drizzl', 'not', 'matter'], ['aww', 'way', 'make', 'feel', 'special'], ['done', 'book', 'sign', 'manchest', 'nice', 'peopl', 'enjoy', 'week'], ['thank', 'approv', 'applic', 'twa', 'forum', 'honey', 'keep', 'good', 'work'], ['aunti', 'dian', 'win', 'quot', 'day', 'quot', 'hes', 'incred', 'hulk', 'quot'], ['miss', 'get', 'togeth', 'everyth', 'settl', 'week', 'congrat', 'hous'], ['ahahahahahahahaha', 'pleas', 'eat', 'head', 'xx'], ['unhook', 'pt', 'home', 'sleep', 'sleep', 'good'], ['like', 'spirit', 'night', 'ooh', 'night', 'grand', 'ere', 'springsteen'], ['hahaha', 'tv', 'not', 'realli', 'thing', 'music', 'girl'], ['yum', 'yum', 'love', 'wallpap', 'matter'], ['goodmorn', 'everyon'], ['blip', 'not', 'misconstru', 'qs', 'last', 'night', 'convers', 'song', 'realli', 'love', 'amp', 'rock', 'morn'], ['might', 'child', 'never', 'one', 'alreadi', 'apologis'], ['got', 'awesom', 'hair', 'cut', 'todayi', 'look', 'hott', 'haha', 'homework'], ['tracki', 'dak', 'one', 'good', 'thing', 'weather', 'get', 'colder', 'porridg'], ['oh', 'ate', 'pizza', 'last', 'night', 'stupid', 'feel', 'closer', 'somehow'], ['good', 'know', 'pln', 'earthday', 'not', 'happen', 'neck', 'wood'], ['sound', 'like', 'challeng', 'see', 'would', 'use', 'abl', 'explicit', 'schedul', 'thread'], ['awe', 'thank', 'much', 'neither', 'need', 'sick', 'friday', 'prayer', 'request'], ['must', 'agre', 'like', 'blackberri'], ['thank', 'hope', 'good', 'week'], ['sat', 'play', 'quick', 'hand', 'poker', 'first', 'hand', 'flush', 'done', 'today'], ['watch', 'miss', 'piec', 'coz', 'theme', 'song', 'lost', 'without'], ['bake', 'win', 'thank'], ['aww', 'man', 'suck', 'big', 'time', 'look', 'way', 'give', 'someth', 'look', 'forward', 'nice', 'long', 'ride'], ['yep', 'quarter', 'til', 'go', 'tri', 'sleep', 'headach', 'subsid', 'take', 'easi', 'teddi'], ['one', 'told', 'mutual', 'admir', 'societi', 'meet', 'morn', 'lol', 'hi', 'boy'], ['think', 'right', 'lol', 'pleas', 'follow', 'much', 'appreci'], ['love'], ['finish', 'wander', 'girl', 'nth', 'time', 'hilda', 'gallar', 'truli', 'kindr', 'soul'], ['get', 'readi', 'school', 'absolut', 'wonder', 'day'], ['updat', 'latest', 'version', 'adium', 'great', 'app'], ['birthday', 'girl', 'bless', 'live', 'anoth', 'year', 'amp', 'celebr', 'love', 'one'], ['happi', 'star', 'war', 'day'], ['happi', 'star', 'war', 'day', 'may'], ['good', 'morn'], ['given', 'way', 'kunal', 'khemu', 'etc', 'starrer', 'turn', 'high', 'probabl', 'rather'], ['good', 'sentenc'], ['good', 'morn', 'took', 'longest', 'shower', 'ever', 'taken', 'life', 'like', 'min', 'shower', 'woah', 'lol'], ['hope'], ['fine', 'look', 'set', 'neighbour', 'must', 'say', 'lot', 'compliment', 'shower', 'upon', 'header', 'graphic'], ['saaf', 'mee', 'fuck', 'epic', 'time', 'last', 'night', 'old', 'friend', 'new', 'friendship', 'good', 'way', 'kick', 'month'], ['wolverin', 'boss', 'serious', 'fuck'], ['said', 'anyon', 'could', 'quot', 'write', 'one', 'quot', 'special', 'select', 'cours', 'chosen', 'outstand'], ['love', 'idea', 'give', 'year', 'theme', 'year', 'new', 'begin'], ['love', 'day', 'school', 'gt', 'studyin', 'quiet'], ['like', 'optim'], ['interest', 'wknd', 'sleep', 'saturday', 'amp', 'product', 'sunday'], ['basket', 'case', 'mine', 'miss', 'go', 'listen', 'shit', 'load'], ['hope', 'amaz', 'day', 'today', 'monkey', 'deserv', 'cheat', 'dew', 'amp', 'look', 'pictur', 'lol', 'happi', 'birthday', 'lt'], ['yup', 'slowli', 'recov', 'suck', 'not', 'eat', 'stuff', 'crave', 'right', 'gum', 'not', 'take', 'trip'], ['song', 'slap', 'face'], ['work', 'happi', 'job', 'radio', 'not', 'anyth', 'physic', 'exhaust'], ['final', 'birthday', 'lt', 'not', 'wait', 'fuck', 'ruin'], ['incredili', 'love', 'read', 'tweet', 'entertain', 'keep'], ['coach', 'say', 'come', 'along', 'way', 'faster', 'alot', 'peopl', 'oh', 'yeah', 'man', 'ohh', 'sore'], ['welcom'], ['lol', 'joyologist', 'love', 'much', 'better', 'happi', 'freak', 'not', 'stop', 'smile', 'enjoy', 'monday'], ['lot', 'peopl', 'follow', 'unfollow', 'lot', 'yer', 'kind', 'bore', 'not', 'realli', 'help'], ['nice', 'one'], ['bed', 'go', 'dream', 'world', 'liquor', 'store', 'get', 'blown'], ['hello', 'soo', 'awesom', 'not', 'ever', 'stop', 'haha', 'make', 'fall', 'chair', 'laugh', 'x'], ['oh', 'good', 'luck', 'movi'], ['lucki', 'face', 'south', 'hear', 'see', 'reflect', 'phillip', 'point'], ['unpack', 'new', 'toy', 'arriv', 'studio', 'right', 'call', 'tc', 'final', 'not', 'wait', 'check', 'sound'], ['okaii', 'cool', 'not', 'wait', 'seri', 'begin', 'guna', 'awesom', 'x'], ['thank', 'much', 'belat', 'followfriday', 'shout', 'payingitforward'], ['like', 'posit', 'may', 'not', 'chang', 'carrer', 'crazyb', 'dog', 'ladi', 'not', 'math', 'test', 'x'], ['good', 'morn', 'tweeti', 'world', 'great', 'day', 'everyon'], ['wow', 'realli', 'pretti', 'talent', 'ladi', 'impress'], ['love', 'nose', 'kiss'], ['thank', 'messag', 'awesom', 'love', 'new', 'singl', 'xoxo'], ['agre'], ['know', 'could', 'not', 'rememb'], ['eat', 'toast', 'butter'], ['good', 'one', 'might', 'think', 'year', 'nanowrimo', 'competit'], ['star', 'warz', 'day', 'hot', 'topic', 'man', 'wait', 'star', 'trek'], ['feel', 'today', 'go', 'amaz'], ['other', 'job', 'like', 'avail', 'sound', 'like', 'great', 'experi', 'direct', 'messag', 'know', 'other'], ['would', 'amaz', 'could', 'meet', 'us', 'germani', 'germani', 'twice'], ['oh', 'kind'], ['aww', 'rusk', 'good', 'tummi', 'ach', 'though', 'p', 'tri', 'fennel', 'camomil', 'tea', 'work', 'obvious', 'tri'], ['problem'], [], ['chequ', 'cash', 'tomorrow', 'not', 'get', 'bank', 'idea', 'feel', 'safe', 'get', 'though', 'woo'], ['great', 'stuff', 'not', 'wait', 'hear'], ['mani', 'thanx', 'guy'], ['haha', 'thank', 'inan', 'grin', 'grade', 'student', 'realli', 'fascin', 'semest'], ['thank', 'robban'], ['love', 'job'], ['thank', 'man', 'realli', 'appreci', 'kind', 'word'], ['learn', 'learn', 'learn', 'togeth'], ['happi', 'star', 'war', 'day', 'everyon', 'everyon', 'raini', 'bank', 'holiday', 'head', 'soon', 'coffe', 'mum', 'shop'], ['good', 'morn', 'twitter', 'communiti', 'got', 'finish', 'eat', 'delici', 'stack', 'pancak', 'courtesi', 'mom', 'bisquick'], ['thank', 'like', 'pleas', 'leav', 'comment', 'subscrib', 'chicago', 'anoth', 'great', 'music', 'thank', 'support'], ['go', 'buy', 'wacom', 'today', 'good', 'time'], ['score', 'two', 'day', 'get', 'food', 'stamp', 'good', 'want', 'safeway', 'pizza'], ['would', 'prefer', 'quot', 'observ', 'insight', 'quot', 'call', 'see', 'ice', 'cream', 'fanci', 'tonight'], ['watch', 'australia', 'last', 'night', 'got', 'say', 'bloodi', 'fantast', 'film', 'ad', 'bonus', 'hugh', 'jackman', 'definit', 'got', 'see', 'movi'], ['yeahh', 'not', 'know', 'like', 'owen', 'anymor', 'though', 'kind', 'lost', 'respect', 'episod', 'record'], ['great', 'stuff', 'websit', 'today'], ['supernatur', 'ten', 'count'], ['good', 'morn', 'want', 'breakfast'], ['yum', 'thank', 'get', 'dress', 'wait', 'wash', 'finish', 'hang', 'text', 'set'], ['masson', 'give', 'link', 'quit', 'handi'], ['sweet', 'everyday', 'hero', 'friend'], ['congratul', 'hope', 'amaz', 'day'], ['well', 'thank'], ['heh', 'aye', 'investig', 'proper', 'first', 'ask', 'seem', 'like', 'not', 'obvious', 'thing', 'though'], ['hmm', 'admit', 'good', 'episod', 'man', 'bag', 'rather', 'fetch'], ['need', 'know', 'cautious', 'cautious', 'good'], ['open', 'facebook', 'account', 'littl', 'confus', 'not', 'realli', 'get', 'twitter', 'seem', 'much', 'better'], ['yeah', 'big', 'chill', 'good', 'food', 'good', 'music', 'great', 'weather', 'cool', 'day', 'bro'], ['happi', 'star', 'war', 'day'], ['love', 'music', 'good', 'recommend', 'someon', 'know', 'stuff'], ['happi', 'birthday', 'whore'], ['school', 'time', 'not', 'much', 'week', 'day', 'school', 'time', 'nyc', 'not', 'wait', 'last', 'day', 'school'], ['think', 'left', 'confer', 'feedback', 'sheet', 'bag', 'oop', 'say', 'excel', 'everyth', 'found'], ['yay', 'sing', 'loud', 'wed', 'fall', 'boy', 'time', 'low', 'cobra', 'starship', 'friday', 'win'], ['glad'], ['welcom'], ['thank'], ['cook', 'microwav', 'pizza', 'yummi'], ['school', 'blow', 'look', 'nice', 'today', 'thoughh'], ['love', 'alex', 'parde', 'colour', 'pictur', 'differnt'], ['hey', 'babe', 'love', 'yoouu', 'gt', 'lt', 'rp', 'time'], ['would', 'welcom'], ['awesom', 'take', 'look', 'home'], ['haha', 'not', 'know', 'work', 'blip', 'apart', 'obvious', 'thank', 'reblip', 'song', 'nice', 'day', 'xx'], ['awesom', 'let', 'see', 'done'], ['noth', 'like', 'alon', 'time', 'handheld', 'devic'], ['think', 'would', 'look', 'cute', 'beani', 'hat'], ['haha', 'problem', 'fun', 'not'], ['mm', 'holiday', 'commerci', 'realli', 'nice'], ['life', 'would', 'suck', 'without', 'kelli', 'clarkson'], ['thank', 'blast'], ['heir', 'draft'], ['way', 'way', 'way', 'earli'], ['goodmorn', 'world'], ['good', 'morn'], ['like', 'rio', 'ferdinand', 'wear', 'england', 'jersey'], ['congratu', 'sweeti'], ['aww', 'jon', 'ryan', 'bob', 'greta', 'one', 'pictur', 'ador', 'brighten', 'morn', 'ty', 'jon', 'walker'], ['soon', 'new', 'job', 'start', 'happi'], ['read', 'somewher', 'restor', 'name', 'hope', 'happen', 'soon'], ['wrong', 'thanx', 'awesom'], ['thank', 'follow', 'doug', 'like', 'hat'], ['thank', 'darl', 'girl', 'xx'], ['feel', 'funni', 'hmmp', 'better', 'amaz', 'fuck', 'day', 'not', 'love', 'know', 'sammi', 'rovin', 'got', 'text', 'tweet', 'lt'], ['yay', 'love', 'host', 'money', 'breakfast', 'jenna', 'lee', 'amaz', 'pretti', 'sexi', 'jenna', 'lee', 'yay'], ['waitin', 'dr', 'dee', 'lunch', 'beauti', 'ladi', 'gym', 'yeah', 'need', 'loos'], ['good', 'morn', 'twitterland', 'happi', 'monday'], ['discov', 'tv', 'guy', 'realli', 'good', 'love', 'music'], ['good', 'morn', 'sinc', 'quiet'], ['ooh', 'good', 'start', 'hardest', 'one', 'go', 'day', 'lock', 'door', 'leav', 'food', 'toilet', 'x'], ['great', 'weekend', 'stuttgart', 'wonder', 'peopl', 'nice', 'discuss', 'lot', 'fun', 'togeth', 'strong'], ['congratul', 'wootwoo', 'great', 'game', 'kayo'], ['still', 'grench', 'paper', 'still', 'get', 'distract'], ['anoth', 'hd', 'lectur', 'gob', 'smack', 'good', 'present'], ['love', 'cheesey', 'one', 'cool', 'orign', 'one', 'skip', 'brother', 'got', 'tri', 'c', 'haha'], ['know', 'test', 'exam', 'subject', 'except', 'english', 'damn', 'davi'], ['love', 'abl', 'run', 'tongu', 'along', 'teeth'], ['got', 'babi', 'g', 'wach', 'zi', 'ladi', 'gaga', 'wear', 'eh', 'eh', 'film', 'clip', 'pink', 'love', 'kay', 'thank', 'heap', 'win', 'olivia'], ['anoth', 'nice', 'day', 'work', 'goderich', 'today', 'walk', 'amp', 'enjoy', 'weather'], ['got', 'alot', 'runnin', 'around', 'today', 'get', 'job', 'app', 'complet', 'file', 'glad', 'got', 'job'], ['rearri', 'rip', 'would', 'never', 'guess', 'ate'], ['ah', 'clean', 'nice'], ['earli', 'monday', 'great', 'raini', 'monday', 'not', 'great'], ['around', 'littl', 'earlier', 'want', 'phone', 'rang', 'exercis', 'good', 'way', 'start', 'day', 'right'], ['good', 'afternoon'], ['nevermind', 'lexi', 'playlist', 'work', 'magic'], ['could', 'wors', 'usual', 'nite', 'owl'], ['good', 'morn', 'twittervill', 'work', 'later'], ['think', 'boss', 'switzerland', 'week', 'go', 'return', 'ira', 'go', 'awesom'], ['involv', 'requir', 'architectur', 'nice', 'look', 'forward', 'write', 'code'], ['good', 'cup', 'cake'], ['brad', 'fast', 'favorit', 'person', 'hang'], ['vido', 'evid', 'not', 'wait', 'though', 'need', 'find', 'regular', 'partner', 'end', 'love'], ['wow', 'congrat', 'rosemari'], ['better', 'spider', 'type', 'australian', 'wildlif', 'one', 'would', 'imagin'], ['sweetest', 'loveliest', 'thing', 'say', 'made', 'smile', 'thank'], ['absolut', 'love', 'mike', 'watt', 'sexi', 'hero'], ['good', 'stuff', 'great', 'thank', 'x'], ['tongu', 'cheek', 'anoth', 'one', 'take', 'piss', 'arab', 'long'], ['video', 'long', 'gone', 'premier', 'today', 'yahoo', 'not', 'miss', 'awesom', 'video', 'version'], ['ahh', 'save', 'mow', 'lawn', 'rain', 'plenti', 'time', 'go', 'kayak', 'bless', 'rain', 'god'], ['home', 'beach', 'feet', 'burn', 'proud', 'sunscreen'], ['time', 'hittin', 'hay', 'later', 'tweep', 'ala', 'billi', 'cunningham', 'great', 'american'], ['congratul', 'manni', 'quot', 'pacman', 'quot', 'pacquiao', 'made', 'everi', 'filipino', 'proud', 'filipino'], ['hi', 'jakki', 'thank', 'hug', 'right', 'back', 'ya'], ['lunch', 'meet', 'prof', 'not', 'go', 'bad'], ['treat', 'hair', 'bad', 'reveng', 'turn', 'grey', 'prematur'], ['haha', 'def', 'song', 'epic', 'fun', 'listen', 'new', 'fnb'], ['studio', 'ghibli', 'year', 'ponyo', 'alway', 'seem', 'perfect', 'wait', 'till', 'august'], ['beauti'], ['soon', 'go', 'look', 'cabaret', 'go', 'fun'], ['muse', 'grip', 'firm', 'throat', 'realli', 'enjoy', 'write'], ['photo', 'session', 'bond', 'session', 'happi'], ['haha', 'say', 'great', 'teacher', 'learn', 'best', 'hannah', 'montana'], ['lol', 'bugg', 'school', 'awsom'], ['found', 'morn', 'got', 'subscrib', 'thank', 'check', 'lillysan', 'award', 'xx', 'li'], ['may', 'happi', 'star', 'war', 'day'], ['love', 'day', 'school', 'one', 'friday'], ['glad', 'see', 'typic', 'bank', 'holiday', 'weather', 'wise', 'go', 'much', 'today', 'yeah', 'right'], ['goodi', 'bag', 'car', 'boot', 'includ', 'cute', 'cross', 'stitch', 'bird', 'craft', 'room', 'man', 'sell', 'sweeti'], ['haha', 'realli', 'not', 'like', 'get', 'busi', 'ok'], ['white', 'hous', 'join', 'social', 'network', 'site', 'gt', 'better', 'late', 'never'], ['head', 'school', 'go', 'good', 'day', 'knoww'], ['screw', 'review', 'thought', 'wolverin', 'awesom', 'not', 'enough', 'domin', 'monaghan', 'like'], ['would', 'one', 'vwller', 'want', 'add', 'event', 'ning', 'would', 'much', 'appreci'], ['download', 'movi', 'quot', 'still', 'quot', 'cool', 'movi'], ['good', 'one'], ['fun', 'bbq', 'good', 'matter'], ['implement', 'websit', 'love', 'rail'], ['go', 'lunch', 'soon', 'fave', 'cuz'], ['hope', 'expo', 'would', 'amaz', 'tri', 'hard', 'make', 'perfect'], ['good', 'morn', 'rise', 'shine', 'way', 'school'], ['oh', 'monday', 'also', 'mean', 'new', 'american', 'dad', 'glad', 'watch', 'show', 'funni', 'make', 'monday', 'even', 'better'], ['wake', 'keep', 'awak', 'pleas', 'today', 'go', 'long', 'alreadi', 'feel', 'eww'], ['especi', 'hard', 'get', 'bed', 'morn', 'cuz', 'hot', 'run', 'late', 'stuck', 'front', 'mirror', 'check'], ['amp', 'luca', 'till', 'amp', 'david', 'henri', 'lover', 'boy', 'cute', 'luca', 'amp', 'ill', 'henri', 'deal'], ['keep', 'turn', 'odd', 'nugget', 'wisdom'], ['went', 'see', 'priscilla', 'ahn', 'last', 'night', 'amazin', 'band', 'actual'], ['go', 'disgrac', 'life', 'not', 'make', 'next', 'year', 'perfectionist', 'suck', 'good', 'luckk'], ['may', 'offici', 'announc', 'luck', 'day'], ['sound', 'like', 'great', 'time'], ['make', 'sure', 'word', 'poo', 'ball', 'underbelli', 'suck', 'ball', 'gave', 'wk'], ['yes', 'quit', 'unsur', 'aswel', 'haha'], ['current', 'work', 'collab', 'alynn', 'carter', 'call', 'lost', 'insid', 'excit'], ['back', 'interest', 'email'], ['bore', 'bad', 'weather', 'today', 'watchingn', 'alia', 'fun', 'boyfriend'], ['funni', 'said', 'would', 'never', 'make', 'look', 'far', 'come', 'back', 'heahh', 'um', 'yeah', 'school'], ['fun', 'facebook'], ['cool', 'music', 'collect', 'use', 'background', 'music', 'music', 'keygen'], ['radio', 'amaz', 'yesterday'], ['maccabe', 'new', 'album', 'winner', 'everybodi', 'take', 'listen', 'fact'], ['go', 'buckl', 'week', 'relief', 'twitter', 'follow', 'inan', 'enjoy', 'silenc'], ['hello', 'enjoy', 'london', 'watch', 'hackney', 'mental'], ['happi', 'vstudio', 'shortcut', 'backk'], ['class', 'longg', 'day'], ['oh', 'yeah', 'play', 'earth', 'wind', 'fire'], ['heard', 'grapevin', 'might', 'see', 'around', 'today', 'look', 'forward', 'meet'], ['onlin'], ['well', 'good'], ['think', 'bicycl', 'freak', 'custodian', 'would', 'not', 'let', 'build', 'not', 'let', 'key'], ['hahahahahahahahahah', 'tickl', 'much'], ['instal', 'ubuntu', 'offic', 'lap', 'yaay', 'quot', 'instal', 'window', 'quot', 'featur', 'rock', 'awesom', 'ubuntu', 'excit'], ['fucken', 'tire', 'fuck', 'sunni', 'good', 'day', 'deff'], ['okay', 'well', 'not', 'feel', 'bad', 'lmao'], ['r', 'welcom', 'pal', 'truli', 'deserv', 'follow'], ['ha', 'yea', 'not', 'allow', 'day', 'rest', 'way', 'mani', 'interest', 'idea', 'incorpor', 'tweetdeck'], ['baq', 'sleep', 'go', 'headach', 'start', 'not', 'da'], ['wish', 'liter', 'could', 'fuck', 'everi', 'nigga', 'nymph'], ['tri', 'record', 'audio', 'sourc', 'mayb', 'need', 'specif', 'program', 'good', 'thank', 'hehe'], ['yeah', 'aquarius', 'pretti', 'scari', 'song'], ['awesom'], ['yeah', 'sound', 'sensibl', 'thought', 'heston', 'bleumenth', 'moment', 'genius', 'somehow'], ['may', 'happi', 'star', 'war', 'day'], ['tru', 'rim', 'get', 'good'], ['alway', 'brighten', 'quot', 'week', 'quot'], ['tonight', 'cool'], ['look', 'forward', 'one', 'soon'], ['fantast', 'time', 'paradis', 'drink', 'margerita'], ['yes', 'make'], ['good', 'morn', 'tweepsland', 'makin', 'great', 'monday', 'huge', 'shout', 'follow', 'muah', 'muah', 'appreci'], ['sound', 'good', 'quot', 'patch', 'brought', 'quot'], ['got', 'xbox', 'back', 'realli', 'sore', 'knee', 'not', 'walk'], ['almost', 'done', 'cover', 'page', 'yay'], ['best', 'weekend'], ['seen', 'load', 'new', 'photo', 'stuff', 'new', 'moon', 'not', 'wait', 'lol', 'l', 'taylor', 'lautner', 'lol', 'take', 'shirt', 'time', 'yum', 'lol'], ['respect', 'heineken', 'man', 'bag'], ['queen', 'sass', 'oh', 'sceni'], ['ah', 'good', 'idea', 'librari', 'seem', 'work', 'not', 'obvious'], ['good', 'luck', 'final', 'everyon'], ['lol', 'thank', 'babe'], ['great', 'wonder', 'first', 'day'], ['good', 'morn'], ['feelin', 'somewhat', 'ugh', 'not', 'want', 'exam', 'oh', 'well', 'day', 'babi'], ['hey', 'david', 'gone', 'eye', 'yet', 'birthday', 'sing', 'present', 'ever', 'fun', 'breakfast', 'hunt'], ['last', 'repli', 'scholar', 'us', 'homeland', 'secur', 'said', 'ontolog', 'creat', 'quot', 'everybodi', 'hate', 'prescript', 'quot'], ['patient', 'get', 'soon'], ['coolest', 'foreign', 'word', 'english', 'languag', 'need', 'check', 'number', 'one', 'amaz'], ['get', 'better'], ['goe', 'one', 'n', 'smirker', 'cheer', 'dave', 'aka', 'jak', 'aka', 'best', 'chest', 'ever'], ['not', 'believ', 'puppi', 'like', 'brussel', 'sprout'], ['school', 'game', 'oh', 'joy', 'total', 'not', 'lookin', 'forward', 'day'], ['go', 'chines', 'sound', 'yum'], ['west', 'coast', 'readi', 'catch', 'flight', 'back', 'excit', 'go', 'back', 'two', 'fav', 'boyzz', 'puppi', 'n', 'bf'], ['listen', 'david', 'archuleta', 'album', 'amaz'], ['hello', 'c', 'week'], ['listen', 'stolen', 'music', 'love', 'free'], ['right', 'enjoy', 'lasagn'], ['alway', 'weird', 'dream'], ['danc', 'alright', 'todayi', 'still', 'jai', 'ho'], ['long', 'farewel', 'lt', 'super', 'amaz', 'day', 'go', 'sleep'], ['nin', 'app', 'get', 'reject', 'appl', 'reznor', 'threaten', 'go', 'jailbreak', 'alway', 'entertain'], ['saw', 'perform', 'ellen', 'show', 'behind', 'australia', 'amaz', 'wonder', 'voic'], ['problem', 'dns', 'not', 'work', 'utorr', 'destroytwitt', 'work', 'everyth', 'els'], ['see', 'octob', 'love', 'new', 'book', 'next', 'one'], ['congratul', 'test'], ['thank'], ['good', 'morn', 'thank', 'retweet'], ['yay', 'glad', 'not', 'one', 'sign', 'away', 'soul', 'twitter', 'facebook', 'welcom', 'xx'], ['still', 'pump', 'concert', 'saturday', 'come'], ['wci', 'hashtag', 'simpli', 'not', 'die', 'anytim', 'soon'], ['haha', 'stay', 'near', 'hour', 'coach', 'get', 'may', 'not', 'conveni', 'hour', 'tv'], ['richard', 'not', 'see', 'get', 'back', 'good', 'luck'], ['want', 'see', 'david', 'cook'], ['bee', 'trap', 'honeypot'], ['britain', 'got', 'talent', 'get', 'better', 'everi', 'week'], ['far', 'except', 'rain', 'morn', 'great', 'not', 'let', 'dampen', 'day'], ['ehheheh', 'thank'], ['may', 'forth', 'ha', 'yes', 'today', 'birthday', 'star', 'war', 'day', 'not', 'lucki', 'star', 'war', 'fan'], ['aww', 'cute', 'pug'], ['lichfield', 'tweetup', 'sound', 'like', 'fun', 'hope', 'see', 'everyon', 'els'], ['congratul', 'penjii', 'call', 'soulja', 'boy', 'mcbabi', 'lol'], ['math', 'final', 'wish', 'luck'], ['rofl', 'rofl', 'fun'], ['happi', 'star', 'war', 'day', 'everyon', 'celebr', 'famili', 'ok', 'not', 'celebr', 'go', 'round', 'famo'], ['good', 'see', 'ya', 'melbourn'], ['shweet'], ['oh', 'top', 'gear', 'uk', 'love', 'thee'], ['good', 'morn', 'hope', 'good', 'day', 'today', 'although', 'monday', 'posit'], ['bird', 'broken', 'wing', 'song', 'love', 'sing', 'know', 'xx'], ['thank', 'gifford', 'lectur', 'page'], ['fun', 'summer'], ['lol', 'like', 'challeng', 'imposs', 'want', 'tri'], ['wait', 'el', 'amp', 'listen', 'littl', 'mjb', 'quot', 'fine', 'quot', 'perfect', 'song', 'start', 'week'], ['polli', 'scattergood', 'new', 'singl', 'today', 'download', 'pleas', 'not', 'touch', 'ep', 'itun', 'ace'], ['rememb', 'guy', 'tweetbud', 'gt', 'help', 'get', 'flwrs', 'amp', 'make', 'smile'], ['good', 'morn', 'readi', 'start', 'week'], ['heard', 'basment', 'jaxx', 'new', 'song', 'quot', 'raindrop', 'quot', 'fantast', 'make', 'danc', 'not', 'wait', 'fuji', 'rock', 'festiv'], ['work', 'work', 'work', 'mani', 'hour', 'spent', 'worth', 'make', 'red', 'irlanda', 'big'], ['chillin', 'rent', 'look', 'hilari', 'old', 'photo', 'well', 'funni'], ['good', 'morn'], ['wide', 'awak', 'readi', 'big', 'shop', 'trip', 'hope', 'get', 'tone', 'sweet', 'dealz', 'lot', 'fanci', 'cloth'], ['well', 'need', 'get', 'motiv', 'also', 'homework', 'essay', 'love', 'day'], ['pick', 'daughter', 'appear', 'pick', 'unhealthi', 'like', 'like', 'bad', 'parent'], ['quot', 'problem', 'quot', 'charm', 'fast', 'mean', 'cross', 'finger'], ['true', 'download', 'tweetdeck', 'yet', 'liter', 'amaz', 'xx'], ['sweeti'], ['happi', 'birthday', 'congrat', 'wish', 'take', 'care'], ['tri', 'watch', 'lost', 'onlin', 'annoy', 'internet', 'not', 'lost'], ['prob', 'cuz', 'not', 'realli', 'like', 'sleep', 'late', 'even', 'tri'], ['guy', 'call', 'bartâ', 'ofâ', 'theâ', 'criticalâ', 'question', 'guess', 'good', 'thing'], ['happi', 'star', 'war', 'day'], ['agre', 'keep', 'star', 'trek', 'make', 'commerci', 'viabl'], ['miss'], ['ah', 'gotcha', 'well', 'curious', 'hear', 'thought', 'wolverin', 'actual', 'went', 'saw'], ['whew', 'final', 'got', 'rc'], ['yay', 'congratul', 'oh', 'newli', 'mint', 'graduat', 'let', 'buy', 'lunch', 'ice', 'chocol', 'plural', 'celebr'], ['love', 'dawn', 'replic', 'love', 'music', 'monday'], ['almost', 'catch', 'go', 'kick', 'ass', 'woop', 'b', 'jo', 'mile', 'high', 'club', 'soon'], ['go', 'take', 'last', 'final', 'wish', 'luck'], ['feel', 'absoulutley', 'fine'], ['thank'], ['rememb', 'evid', 'base', 'manag', 'best', 'ebm'], ['yeah', 'love', 'hawaiian', 'outfit', 'reus', 'rugbi', 'year'], ['guin', 'got', 'toy', 'mom', 'dad', 'hous', 'hooray', 'free', 'stuff'], ['thank', 'much', 'glad', 'like'], ['good', 'morn', 'thank', 'great', 'day'], ['star', 'war', 'day', 'urgh', 'go', 'get', 'video'], ['love', 'ryan', 'housewif', 'make', 'smile'], ['thank'], ['smile', 'guy', 'turn', 'speaker', 'good'], ['precis', 'weather', 'report'], ['got', 'work', 'take', 'whole', 'day', 'great', 'boss'], ['wake', 'ungod', 'hour', 'go', 'work', 'start', 'get', 'old', 'least', 'coffe', 'good'], ['woke', 'dream', 'met', 'hero', 'author', 'ann', 'rice', 'amp', 'son', 'author', 'christoph', 'rice', 'euphoria', 'perhap', 'would', 'someday'], ['award', 'first', 'ever', 'credit', 'card'], ['well', 'ever', 'head', 'back', 'west', 'coast', 'hit', 'tini', 'place', 'hack', 'hang', 'beach'], ['right', 'ducki', 'thank', 'big', 'help', 'wrap', 'amp', 'write'], ['happi', 'star', 'war', 'day'], ['go', 'work', 'ill', 'home', 'go', 'look', 'camera', 'sinc', 'must', 'lost', 'hous', 'everyon', 'wonder', 'day'], ['good', 'morn', 'got', 'afternoon', 'germani'], ['love'], ['popcorn', 'crazi', 'dude', 'still', 'ador'], ['would', 'travel', 'uk', 'one', 'big', 'us', 'meet', 'sound', 'great', 'would', 'love', 'go', 'one', 'mani', 'fur', 'amp', 'much', 'art'], ['final', 'sick'], ['sheesh', 'crochet', 'bah', 'humbug', 'sleep', 'um', 'suppos', 'someday'], ['thank', 'anita', 'look', 'host', 'look'], ['nice', 'like', 'go', 'rain', 'delhi'], ['good', 'morn', 'tweep', 'feel', 'not', 'oversleep', 'graci', 'around', 'pounc', 'head', 'woke'], ['awak', 'school', 'ew', 'put', 'nice', 'lotion'], ['congradt', 'show', 'even', 'though', 'not', 'lol'], ['good', 'hav', 'heard', 'lovelovelov', 'old', 'stuff', 'though', 'overtur', 'underscor', 'best', 'album', 'think'], ['head', 'utah', 'hospit', 'great', 'day', 'everyon'], ['go', 'last', 'final', 'happi'], ['nice', 'assign', 'night'], ['hard', 'weekend', 'much', 'alcohol', 'fuckin', 'quot', 'weinfest', 'quot'], ['yay', 'three', 'follow', 'good', 'know', 'one', 'person', 'big', 'wide', 'world', 'like', 'fishi'], ['oh', 'dear', 'hope', 'feel', 'better', 'soon', 'get', 'nice', 'hot', 'chicken', 'soup'], ['sure', 'wish', 'mind', 'could', 'enter', 'box', 'call', 'quot', 'noth', 'quot', 'men', 'brain', 'not', 'go', 'exhaust'], ['love', 'kiss'], ['back', 'home', 'earli', 'wow', 'thing', 'get', 'phil', 'xd'], ['well', 'look', 'bruv', 'exam', 'timet', 'french', 'oral', 'exam', 'feel', 'fortun', 'erm', 'digest', 'morn', 'revis'], ['yay', 'face', 'back'], ['nice', 'like', 'go', 'rain', 'delhi'], ['still', 'feel', 'blah', 'gave', 'biig', 'dose', 'insulin', 'need', 'hour', 'ago', 'take', 'last', 'exam', 'junior', 'year'], ['good', 'girl', 'school', 'today', 'yayi'], ['wow', 'realli', 'kickin', 'carey', 'butt', 'competit', 'see', 'soon'], ['well', 'cool', 'lovv', 'ro', 'amp', 'co', 'shoow'], ['new', 'forest', 'hope', 'walk', 'would', 'lose', 'pound'], ['final', 'got', 'graduat', 'gear', 'today', 'excit', 'believ', 'day', 'left', 'aah', 'sweater', 'cozi'], ['snowbear', 'final', 'come', 'che', 'warren'], ['aww', 'fun', 'fam', 'boo', 'boo'], ['happi', 'star', 'war', 'day'], ['love', 'time', 'starbuck'], ['cougar', 'privaci', 'threaten', 'surveil', 'increas', 'sorri', 'could', 'not', 'help', 'one'], ['love', 'look', 'cute', 'togeth'], ['thank', 'warn', 'good', 'thing', 'heart', 'unbreak'], ['weheyi', 'give', 'thank', 'midi', 'keyboard'], ['bahaha', 'bof', 'got', 'get', 'life', 'although', 'not', 'say', 'much', 'obsess', 'miley', 'cyrus', 'got', 'get', 'life'], ['yum', 'whole', 'box', 'cooki'], ['plan', 'tri', 'call', 'doctor', 'though', 'not', 'go', 'well', 'most', 'plan'], ['realli', 'woo', 'wish', 'could', 'go', 'indonesia', 'lol', 'hope', 'next', 'summer'], ['louis', 'r', 'not', 'adopt', 'ballet', 'love', 'cocktail', 'even'], ['year', 'old', 'barbi', 'doll', 'still', 'rock', 'girl', 'ken', 'not', 'bad', 'either', 'memori'], ['last', 'week', 'class', 'well', 'technic', 'class', 'two', 'exam', 'summerr'], ['think', 'like', 'workshop'], ['hyster', 'yaa', 'email', 'lt', 'write', 'speech', 'speaker', 'food', 'good', 'school', 'monday'], ['sri', 'not', 'feel', 'well', 'anoth', 'chang', 'believ', 'hope', 'fun', 'lot', 'inspir', 'input'], ['excit', 'camp', 'load', 'peopl', 'not', 'thrill', 'fact', 'get', 'sleep', 'tent', 'roll', 'around', 'mud'], ['new', 'pollster', 'data', 'parti', 'identif', 'unit', 'state', 'democrat', 'independ', 'republican', 'ouch'], ['flat', 'sparkl', 'clean', 'team', 'work', 'way', 'pick', 'food'], ['look', 'forward', 'follow', 'journey', 'endeavor', 'subscrib', 'blog'], ['great', 'time', 'london'], ['sound', 'like', 'jeff', 'best', 'job', 'world'], ['got', 'back', 'mcfli', 'concert', 'ahh', 'amaz', 'love', 'david', 'archuleta'], ['sorri', 'misspel', 'twice', 'alreadi', 'notgiv', 'run'], ['good', 'morn', 'court', 'crossfit', 'bibl', 'studi', 'someon', 'special', 'hous'], ['alrighti', 'thnx', 'good', 'night'], ['shop', 'clean', 'bmfing', 'webcam', 'chat', 'nephew', 'noth', 'spesh', 'good', 'bank', 'holiday', 'monday', 'nonetheless'], ['ugh', 'tire', 'waitin', 'bus', 'good', 'morn'], ['worri'], ['made', 'first', 'skype', 'landlin', 'call', 'good', 'call', 'qualiti', 'quit', 'impress'], ['got', 'best', 'dress'], ['got', 'get', 'readi', 'go', 'hunt', 'outsid', 'volterra', 'fun', 'talk', 'everyon', 'later'], ['meet', 'friend', 'tonight', 'go', 'discuss', 'human', 'traffick', 'issu', 'dali', 'interest', 'guy'], ['get', 'yer', 'freak', 'monday', 'great', 'one', 'possibl', 'great', 'monday'], ['wake', 'ungod', 'hour', 'go', 'work', 'start', 'get', 'old', 'least', 'coffe', 'good'], ['quot', 'never', 'want', 'lose', 'fan', 'got', 'us', 'quot', 'thank', 'say', 'wish', 'other', 'nice', 'day', 'greet'], ['thank'], ['listen', 'play', 'friend', 'album', 'disgust', 'everi', 'second', 'damn', 'suck', 'normal', 'reaction', 'everi', 'album'], ['pillow', 'heaven'], ['thought', 'might', 'interest', 'see', 'view', 'photo'], ['somewher', 'within', 'temptat', 'return', 'mysefl', 'keep', 'work', 'hard', 'till', 'june'], ['back', 'yoga', 'retreat', 'recommend', 'everyon'], ['help', 'not', 'sure', 'way', 'haha', 'tri', 'alot', 'free', 'time', 'right', 'haha'], ['hi', 'sorri', 'go', 'pass', 'email', 'assist', 'rel', 'soc', 'lost', 'dm', 'pls'], ['thanx', 'messag', 'glad', 'like', 'sing'], ['illi', 'note', 'book', 'quot', 'one', 'anoth', 'keep', 'good', 'work', 'quot', 'sigh', 'miss', 'great', 'espresso'], ['let', 'us', 'hope'], ['great', 'day', 'alreadi', 'amp', 'formula', 'realli', 'work', 'lol', 'hope', 'everyon', 'good', 'day', 'well'], ['dude', 'read', 'wrong', 'haha', 'well', 'good', 'good', 'thank', 'agre'], ['not', 'problem', 'glad'], ['ah', 'love', 'day', 'bike', 'ride', 'cake', 'make', 'root', 'revis', 'best', 'x'], ['come', 'love', 'fan', 'number', 'local', 'pop', 'chart', 'let', 'launch', 'assault', 'number', 'slot', 'ww'], ['best', 'bike', 'best', 'guy', 'love', 'ducati', 'sound', 'think', 'unnecessari', 'ask', 'ride', 'nice', 'vid'], ['thought', 'might', 'interest', 'see', 'view', 'photo'], ['share', 'kim', 'portfolio', 'share', 'kaar', 'final', 'dane', 'got', 'honor', 'amaz'], ['mani', 'freebi', 'jbnoy', 'friend', 'spam', 'thread', 'soon'], ['thank'], ['loov', 'bf', 'awesoom', 'hannah', 'montana', 'movi', 'amaz', 'best', 'movi', 'ever', 'cool'], ['thought', 'might', 'interest', 'see', 'view', 'photo'], ['life', 'good', 'much', 'greater', 'thursday'], ['not', 'wait', 'see', 'decemb', 'switzerland', 'third', 'great', 'show', 'amaz', 'enjoy', 'oz'], ['top', 'favourit', 'got', 'admit', 'soft', 'spot', 'captain', 'slow'], ['repeat', 'rub', 'thumb', 'soft', 'love', 'upon', 'new', 'sarah', 'rayn', 'novel', 'sigh', 'not', 'potrait', 'profound', 'bliss'], ['thought', 'might', 'interest', 'see', 'view', 'photo'], ['sweet', 'good', 'day'], ['school', 'today', 'greeat'], ['thank', 'much', 'follow', 'muse', 'much', 'gratitud', 'wish', 'magnific', 'amp', 'product', 'start', 'day'], ['ooh', 'chang', 'twitter', 'name', 'approv', 'whole', 'heart'], ['thought', 'might', 'interest', 'see', 'view', 'photo'], ['ben'], ['realli', 'not', 'like', 'shini', 'happi', 'peopl', 'local', 'rem', 'expert', 'way', 'saw', 'first', 'time'], ['aw', 'come', 'earli', 'love', 'youtub', 'vid', 'way'], ['nice', 'call', 'lmao'], ['haha', 'may', 'happi', 'star', 'war', 'day'], ['lt', 'new', 'pictur', 'pretti', 'reflect', 'sunlight', 'leav'], ['thank', 'kate', 'kiss', 'xoxo'], ['meant', 'ask', 'night', 'go', 'enjoy', 'yas'], ['awsom', 'know', 'know', 'know'], ['go', 'cook', 'lamb', 'chop', 'lunch', 'alway', 'end', 'coke', 'pay', 'day', 'amaz', 'much', 'cook'], ['hey', 'glorious', 'morn', 'monday', 'anim', 'mode'], ['love', 'david', 'soo', 'much', 'lt'], ['stress', 'hell', 'still', 'surviv'], ['thought', 'might', 'interest', 'see', 'view', 'photo'], ['not', 'realli', 'mean', 'anyth', 'anymor', 'l', 'good', 'old', 'top', 'pop', 'everi', 'sat', 'friday', 'someth'], ['studi'], ['yeah', 'tomato', 'past', 'oil', 'tradit', 'sandwich', 'eat', 'oliv', 'maltes', 'chees', 'yum'], ['love', 'mortal', 'combat', 'right'], ['well', 'homework', 'kind', 'finish', 'edit', 'not', 'tire', 'morn', 'thought', 'would'], ['week', 'deliveri', 'oz', 'awesom', 'product', 'awesom', 'price', 'parcel', 'today', 'made', 'day'], ['novo', 'follow', 'sorri', 'account', 'head', 'suspend', 'due', 'strang', 'activ', 'strang'], ['cute', 'twit', 'potugues'], ['bahaha', 'love', 'twitter', 'last', 'night', 'drunk', 'lol'], ['check', 'guy', 'rock', 'one'], ['event', 'weekend', 'nice', 'week', 'look', 'forward', 'final', 'chill', 'day'], ['yerr', 'same', 'haha', 'way', 'play', 'edward', 'thinkk', 'mm'], ['love', 'nice', 'weather', 'exam'], ['wakey', 'wakey', 'lemon', 'shakeyi', 'haha', 'go', 'schoolioo', 'rain', 'ugh', 'guess', 'wish', 'right'], ['happi', 'sharon'], ['richell', 'mead', 'succubus', 'read', 'entertain', 'lot', 'fun', 'interest', 'next', 'pleas'], ['thank'], ['goodmorn', 'world', 'god', 'bless', 'great', 'day'], ['feel', 'like', 'tweet', 'reason', 'um', 'hii'], ['lol', 'triplet', 'haha', 'glad', 'morgan', 'got', 'bag', 'even', 'not', 'ride', 'ride'], ['bye', 'bye', 'love', 'tweeter', 'especi', 'follow'], ['good', 'morn', 'alyssa', 'hope', 'great', 'wonder', 'day', 'today', 'happi', 'cuz', 'today', 'last', 'day', 'class', 'yay'], ['not', 'worri', 'sleep'], ['rather', 'excit', 'hospit', 'placement', 'start', 'monday', 'get', 'give', 'needl', 'take', 'blood'], ['not', 'wait', 'see', 'week', 'not', 'go', 'fast', 'enough'], ['sit', 'audi', 'joburg', 'fashion', 'week', 'cast', 'mani', 'lanki', 'peopl', 'one', 'place', 'almost', 'lol', 'good', 'luck', 'everyon', 'xx'], ['birthday'], ['lool', 'thank'], ['good', 'luck'], ['momma', 'comin', 'tenni', 'day', 'p', 'nar', 'yuppi'], ['woke', 'mum', 'sing', 'new', 'gn', 'r', 'cd', 'replac', 'bought', 'good', 'daughter'], ['feel', 'love', 'pizza', 'girl', 'eat', 'pizza', 'everyday'], ['hahah', 'love'], ['hope', 'promis', 'kid', 'dog', 'moment', 'coupl', 'flower'], ['aww', 'cute', 'would', 'love', 'bathroom'], ['like', 'ten', 'time', 'better', 'place', 'xd', 'beauti', 'fun', 'gold', 'coast', 'hot', 'dog', 'xd'], ['pleas', 'let', 'know', 'allright', 'de', 'need', 'know', 'first', 'wake', 'littl', 'enjoy', 'cofe', 'xx'], ['romanc', 'zero', 'funni'], ['not', 'sore', 'yesterday', 'definit', 'feel', 'hill', 'leg', 'hurt', 'way', 'booti', 'good', 'hurt'], ['hope', 'like', 'new', 'sat', 'nav'], ['still', 'amaz', 'awesom', 'last', 'night', 'discuss', 'great', 'look', 'forward', 'great', 'week', 'go', 'home'], ['good'], ['good', 'morn', 'everyon', 'hope', 'great', 'day', 'even', 'though', 'monday', 'keep', 'smile'], ['notic', 'begin', 'may', 'worst', 'recess', 'sinc'], ['new', 'word', 'day', 'quot', 'whoor', 'lure', 'quot', 'yes', 'new', 'word', 'cologn', 'thank', 'mike', 'hard'], ['got', 'went', 'outsid', 'plant', 'flower', 'watch', 'lee', 'evan', 'dvd', 'knew', 'bank', 'holiday', 'fun'], ['good', 'morn'], ['great', 'news'], ['hope'], ['not', 'hope', 'still', 'rest', 'not', 'want', 'stress'], ['happi', 'star', 'war', 'day'], ['sure', 'love', 'great', 'amp', 'product', 'day'], ['bye', 'great', 'meet'], ['would', 'like', 'yesterday', 'talk', 'alyso', 'stoner', 'xd', 'benton', 'sent', 'privat', 'messa', 'coment'], ['good', 'not', 'complet', 'nut', 'case'], ['definit', 'worth', 'art', 'not', 'withstand', 'hate', 'move', 'hate', 'pack', 'even'], ['trashi', 'yes'], ['radio', 'activ', 'never', 'get', 'old', 'never', 'time', 'listen', 'cd', 'repeat', 'today', 'still', 'love'], ['de', 'wereld', 'need', 'peopl', 'like'], ['thank', 'follow', 'back'], ['mean', 'jack', 'barakat', 'wow', 'ever', 'gone', 'hous', 'hehe', 'mean', 'ssoo', 'lucki', 'address'], ['perhap', 'see', 'twitter', 'version', 'pull', 'someon', 'pigtail', 'let', 'know', 'work'], ['sister', 'call', 'offici', 'labor', 'look', 'like', 'anna', 'josi', 'get', 'new', 'cousin', 'today', 'one', 'girl'], ['daddi'], ['back', 'love', 'land', 'north'], ['tadpol', 'look', 'foolish', 'dog'], ['bank', 'holiday', 'happi', 'know', 'clap', 'hand'], ['yeah', 'work', 'better', 'command'], ['morn', 'like', 'loong'], ['go', 'dinner', 'two', 'us', 'nice'], ['sound', 'nice', 'download', 'twitterena', 'lol'], ['yes', 'like', 'vid'], ['present', 'lead', 'abil', 'move', 'one', 'day'], ['thankyou', 'night'], ['wish', 'repli', 'us', 'juli', 'utter', 'amaz'], ['tough', 'life', 'lead'], ['download', 'year', 'sin', 'final', 'releas', 'say', 'right'], ['lucki', 'girl', 'tell'], ['understood', 'tweet', 'good'], ['good', 'morn', 'sunshin', 'tiim', 'chool', 'lol', 'bbl'], ['good', 'star', 'war', 'day', 'fonz', 'day', 'danc', 'taco', 'day', 'whatev', 'celebr', 'good'], ['haha', 'know', 'not', 'handl', 'fame', 'thank'], ['wow', 'nice', 'roar', 'see', 'good', 'thing', 'futur'], ['nice'], ['bahaha', 'weekend', 'short', 'esp', 'nice', 'want', 'stop', 'time', 'like', 'evi', 'outta', 'world', 'morn'], ['happi', 'monday', 'go', 'tavar', 'today', 'hope', 'everyon', 'bless', 'day'], ['not', 'seen', 'enough', 'movi', 'quot', 'know', 'quot', 'someth', 'terribl', 'happen', 'lol'], ['honest', 'last', 'night', 'amaz', 'everyth', 'perfect'], ['coffe', 'brew', 'musicmonday', 'morn', 'listen', 'fray', 'good', 'week'], ['muahahahhahaha', 'well', 'mayb', 'think', 'crazi', 'someth', 'not', 'scare', 'yet', 'though'], ['worth', 'xx'], ['lol', 'could', 'tri', 'serious', 'though', 'not', 'suck', 'xx'], ['much', 'better', 'flu', 'syndrom'], ['haha', 'cos', 'one', 'smile', 'smile', 'smile', 'quot', 'boy', 'repli'], ['tell', 'friend', 'got', 'hope', 'get', 'soon'], ['love', 'lunch', 'curri', 'rice', 'mussel', 'babi', 'octopus', 'yum'], ['lame', 'go', 'make', 'breakfast'], ['guy', 'showroom', 'well', 'want', 'chk', 'flesh', 'quit', 'cool', 'lamp', 'wife', 'impress'], ['today', 'soo', 'bore', 'school', 'sleep', 'time'], ['forgot', 'machin', 'run', 'day', 'got', 'bill', 'amazon', 'teach', 'get', 'organ', 'fair', 'price'], ['yes', 'would', 'perfect', 'suppos', 'happen', 'last', 'night', 'still', 'dri', 'usual', 'happen', 'head', 'appt'], ['watch', 'belong', 'love', 'sister', 'kiddin'], ['good', 'news', 'tooth'], ['ok', 'thank', 'help', 'hope', 'respond', 'sooner', 'later', 'thank'], ['saw', 'whole', 'lot', 'stuff', 'africa', 'joy', 'casterbridg', 'farm', 'white', 'river', 'quit', 'thrill', 'see', 'stuff'], ['not', 'stop', 'believ', 'remix', 'sure', 'not', 'sacrileg'], ['wow', 'safe', 'trip', 'back', 'home', 'beg', 'pleas', 'come', 'back', 'bloomington', 'soon'], ['herebi', 'announc', 'employ', 'could', 'not', 'happier', 'alhamdulillah'], ['bore', 'wait', 'till', 'go', 'tha', 'bus'], ['dude', 'come', 'least', 'rotat', 'motherfuck'], ['love', 'start', 'fresh', 'new', 'week', 'motiv'], ['good', 'morn', 'littl', 'twitternut', 'squash', 'today', 'weather', 'like'], ['back', 'great', 'mad', 'monday', 'meet', 'tomorrow'], ['good', 'choic'], ['got', 'home', 'err', 'hospit', 'far'], ['happi', 'judday', 'everybodi'], ['good', 'morn', 'world'], ['thank', 'morn', 'laugh', 'funni'], ['yayi', 'help', 'english', 'homework', 'holiday', 'gt', 'lt'], ['amaz', 'best', 'time', 'hope', 'good', 'weekend'], ['hello', 'twitterfon', 'glad', 'back'], ['alway', 'self', 'thing', 'go', 'without', 'problem', 'even', 'tri', 'hard', 'self', 'smile'], ['wish', 'london', 'see', 'like', 'biggest', 'dream', 'meet', 'iloveyouu', 'lt'], ['excit', 'cwpm', 'tomorrow', 'one', 'member', 'go', 'still', 'good', 'start'], ['thank'], ['arriv', 'offic', 'prepar', 'busi', 'day', 'listen', 'debussi', 'song', 'alway', 'make', 'feel', 'better'], ['soo', 'glad', 'home', 'floridia', 'fun', 'back', 'atl', 'time', 'back', 'work', 'constant', 'grind'], ['thank', 'ballroom', 'danc', 'competit'], ['love', 'kim', 'kardashian', 'watch', 'tv', 'show', 'keep', 'kardashian', 'bless', 'good', 'look'], ['enjoy', 'see', 'everyon', 'present', 'saturday', 'clark', 'howard', 'event', 'especi', 'speaker'], ['would', 'not', 'cost', 'quit', 'bit', 'mean', 'fli', 'pizza', 'china', 'nice', 'fusion', 'idea', 'may', 'experi'], ['ha', 'ha', 'surpris', 'well', 'consid', 'good', 'time', 'sun', 'mountain'], ['excit', 'jon', 'today', 'good', 'luck', 'guy'], ['not', 'work', 'diesel', 'rice', 'burner'], ['exact', 'well', 'pick', 'sister', 'speak', 'later', 'enjoy', 'afternoon', 'pub', 'shelv', 'lol', 'xx'], ['live', 'never', 'take', 'hot', 'shower', 'nice', 'friend', 'across', 'street'], ['hahah', 'hope', 'enjoy', 'day'], ['heard', 'disgruntl', 'investor', 'call', 'quot', 'hoe', 'quot', 'seem', 'total', 'line'], ['check', 'funni', 'movi'], ['safe', 'journey', 'back', 'home', 'hope', 'come', 'back', 'soon'], ['hope', 'great', 'weekend', 'pari'], ['geographi', 'exam', 'today', 'turn', 'well', 'omg', 'wednesday', 'english', 'exam', 'xd', 'woul', 'nervous'], ['interest', 'head', 'gear', 'lol'], ['well', 'mayb', 'alway', 'head', 'cnt', 'sure', 'save'], ['think', 'go', 'enjoy', 'sun', 'ray', 'love', 'work'], ['help', 'uni', 'assign', 'via', 'skype', 'got', 'love', 'connect', 'world', 'sudi', 'design', 'even', 'better'], ['good', 'afternoon', 'sort', 'technic', 'glitch', 'raini', 'bh', 'monday', 'lazi', 'day', 'daughter', 'menfolk', 'round', 'roast', 'dinner'], ['haha', 'like', 'anyway', 'although', 'miss', 'spork', 'pic', 'go'], ['good', 'morn', 'good', 'wakeup', 'music'], ['hoisin', 'duck', 'pizza', 'salt', 'pepper', 'pizza', 'gelato', 'dinner', 'edmund', 'jade', 'good', 'time'], ['sent', 'twitter', 'invit', 'poet', 'friend', 'hope', 'come', 'poetiz', 'would', 'love', 'see', 'poet', 'poet'], ['much', 'tune', 'word', 'today', 'thank'], ['go', 'last', 'full', 'day', 'school', 'life', 'good'], ['hope', 'unni', 'make', 'audit', 'fight', 'dahy', 'unni'], ['hey', 'chillin', 'right', 'gettin', 'readi', 'school', 'mohawk', 'kidd'], ['ha', 'ha', 'much', 'thank', 'start', 'follow'], ['hi', 'amazn', 'actress', 'greet', 'slovenia'], ['hey', 'everybodi', 'hah', 'day', 'cool', 'got', 'back', 'walk', 'dog', 'omgosh', 'send', 'link', 'pleas'], ['portfolio', 'upload', 'comment', 'feedback', 'warm', 'welcom'], ['good', 'afternoon', 'hope', 'great', 'week'], ['fantast'], ['well', 'thank', 'think', 'ever', 'get', 'scratch', 'one', 'well', 'right'], ['thank'], ['nice', 'young', 'guy', 'dunkin', 'donut', 'let', 'go', 'first'], ['thank', 'tri', 'stay', 'posit', 'head', 'space', 'keep', 'push', 'thing', 'end'], ['back', 'school', 'daili', 'show', 'amaz', 'go', 'watch', 'later', 'think', 'xd'], ['not', 'famous', 'alreadi', 'lol', 'ador', 'fan', 'fan', 'would', 'anyth', 'heheh', 'fan'], ['come', 'guy', 'brazil', 'love', 'happen'], ['good', 'morn', 'franc', 'zacci'], ['everybodi', 'welcom', 'hello', 'nicol'], ['happi', 'anniversari', 'hope', 'mani', 'mani', 'best', 'us'], ['work', 'still', 'quot', 'recov', 'quot', 'amaz', 'beauti', 'weekend', 'mention', 'incred', 'friend'], ['like', 'rest', 'us', 'miser', 'bank', 'lol'], ['instal', 'inav', 'iblu', 'fresh', 'feel'], ['funniest', 'desktop', 'ever', 'way', 'see', 'collegu'], ['skinni', 'dip', 'work', 'colleagu', 'mayb', 'not', 'would', 'never', 'live', 'lot'], ['hey', 'yay', 'thank', 'wow', 'page', 'awesom'], ['thank'], ['cool', 'thank', 'lot', 'xx'], ['inde', 'glad', 'hear', 'everyth', 'good', 'great', 'life', 'good'], ['alreadi', 'got', 'ticket', 'thank', 'make', 'sure', 'though'], ['morn', 'great', 'day', 'school', 'go'], ['proper', 'journo', 'would', 'agre'], ['thought', 'might', 'interest', 'see', 'view', 'photo'], ['suppos', 'unrel', 'new', 'part', 'fallout', 'seri', 'work', 'name'], ['great', 'hous', 'sell', 'come', 'complet', 'ride', 'mower'], ['sit', 'shadow', 'tree', 'heart', 'citi', 'listen', 'bus', 'thank', 'wind', 'pleasant'], ['cowboy', 'not', 'seen', 'good', 'luck'], ['good', 'morn', 'fellow', 'tweeter'], ['hous', 'md', 'marathon', 'ulet'], ['ooh', 'nice', 'well', 'guess', 'not', 'nice', 'moment', 'windi', 'raini', 'like', 'rain'], ['god', 'assign', 'stress', 'finish', 'lol', 'bedd'], ['haha', 'expens', 'messag', 'later'], ['put', 'half', 'nake', 'dougi', 'poster', 'love', 'sugar', 'ladmag'], ['aww', 'thank', 'bro', 'glad', 'got', 'activ', 'twitter'], ['england', 'summer', 'holiday', 'year', 'yay'], ['peac', 'good', 'morn'], ['bought', 'italian', 'horsesho', 'charm', 'dragon', 'seem', 'strong'], ['get', 'phone', 'back', 'week', 'yeeww'], ['pj', 'day', 'best', 'day'], ['not', 'worri', 'safe', 'sound', 'lt'], ['much', 'fun', 'today', 'love', 'alyssa', 'arellano', 'mika', 'rey'], ['good', 'morn', 'go', 'day'], ['good', 'morn', 'coffe', 'taylor', 'swift', 'cd', 'start'], ['go', 'tri', 'get', 'coupl', 'hour', 'sleep', 'love', 'go', 'bed', 'later', 'twitter'], ['stay', 'afterschool', 'today', 'not', 'quot', 'friend', 'quot', 'would', 'tell', 'text', 'lol', 'likin', 'us', 'lt'], ['cool', 'linux'], ['happi', 'star', 'war', 'day', 'everyon', 'may', 'xx'], ['everyth', 'fine'], ['juli', 'soo', 'stoke', 'especi', 'sinc', 'sleep', 'us', 'lol', 'refus', 'wear', 'diaper', 'anymor'], ['fun', 'see', 'glimps', 'life'], ['lol', 'get', 'reaction', 'mention', 'new', 'goal', 'kona', 'triathlon', 'boston', 'marathon', 'done'], ['good', 'morn', 'misfit', 'pass', 'tylenol'], ['thank', 'remind', 'hope', 'great', 'time'], ['afc', 'oh', 'yess'], ['watchingg', 'new', 'video', 'soo', 'good', 'addict'], ['love', 'clutch', 'lust', 'one', 'bright', 'yellow'], ['creat', 'account', 'get', 'chanc', 'chat', 'admir', 'amaz', 'inspir', 'write', 'lt'], ['think', 'limit', 'letter', 'realli', 'not', 'fair', 'would', 'better'], ['thank', 'hun', 'work', 'hard', 'thank', 'mama', 'yuhh'], ['hope', 'find', 'nice', 'healthi', 'also', 'cheap', 'breakfast'], ['feel', 'love', 'mom', 'got', 'nikon', 'cool', 'pix', 'birthday'], ['dear', 'daniel', 'good', 'news', 'nintendo', 'want', 'potenti', 'lotchecktest', 'hoffentlich', 'wird', 'mit', 'der', 'stell'], ['happi', 'star', 'war', 'day', 'everyon', 'may'], ['notic', 'new', 'sidebar', 'look', 'nice'], ['first', 'day', 'new', 'job', 'yeah'], [], ['thought', 'might', 'interest', 'see', 'view', 'photo'], ['bore', 'ugh', 'come', 'back'], ['not', 'know', 'realli', 'hurt', 'arm', 'guess', 'booz', 'ask', 'not', 'believ'], ['locat', 'amp', 'order', 'new', 'cooker', 'today', 'feel', 'got', 'real', 'bargain', 'cheaper', 'place', 'almost', 'use'], ['download', 'movi', 'quot', 'good', 'day', 'black', 'amp', 'sexi', 'quot', 'cool', 'movi'], ['three', 'broodi', 'one', 'atm', 'china', 'egg', 'keep', 'happi', 'ish'], ['thank', 'realli', 'sweet'], ['sure', 'amaz', 'wish', 'could', 'incred', 'phenomen', 'amaz', 'talent', 'singer'], ['happi', 'monday', 'lot', 'littl', 'thing', 'today', 'tri', 'water', 'plant', 'front', 'earli', 'jammi', 'got', 'caught', 'two', 'neighbor'], ['thank', 'finish', 'schoolwork', 'today', 'rehears', 'tonight', 'though', 'ru'], ['turn', 'keyboard', 'upsid'], ['pretti', 'dang', 'tire', 'chamber', 'class', 'nap'], ['saturday', 'partytiim'], ['dinner', 'ali', 'tonight', 'celebr', 'first', 'day', 'new', 'job', 'near', 'trader', 'joe', 'might', 'stop'], ['oh', 'yes', 'level'], ['see', 'bye', 'see', 'love'], ['make', 'happi', 'daughter', 'famili', 'amp', 'support', 'money', 'shop', 'amp', 'restaur'], ['afternoon', 'got', 'new', 'pic', 'nice', 'spec'], ['welcom'], ['good', 'morn', 'hope', 'great', 'day'], ['mufasa', 'warrior', 'ocean', 'hahahahahaha'], ['hey', 'thank', 'follow', 'go'], ['thank'], ['tire', 'king', 'bounti', 'vampyr', 'stori', 'even', 'comix', 'complet', 'donload'], ['whoa', 'steadi', 'mate', 'not', 'fall'], ['thank', 'much', 'follow', 'keep', 'date', 'much', 'possibl', 'makeup', 'line', 'plus', 'new', 'collect'], ['feel', 'much', 'better', 'histori', 'research'], ['loov', 'bank', 'holiday'], ['good', 'morn', 'twigga', 'twitch', 'getcha', 'motiv'], ['not', 'ideal', 'bank', 'holiday', 'condit', 'littl', 'cast', 'raini', 'perfect', 'lazi', 'day', 'dvd'], ['please', 'give', 'shoutout', 'love', 'georgia', 'uk'], ['wish', 'smartphon', 'irc', 'app', 'would', 'pretti', 'cool'], ['oo', 'not', 'glad', 'hear', 'incred', 'though', 'still', 'bookmark', 'tri', 'sometim'], ['yay', 'busi', 'good'], ['new', 'seri', 'hill', 'yesterday', 'uk', 'amaz', 'look', 'realli', 'pretti', 'birthday'], ['good', 'midday'], ['quot', 'bride', 'la', 'mode', 'quot', 'pow', 'wow', 'first', 'thing', 'morn', 'past', 'weekend', 'love', 'wed', 'fresh', 'mind', 'pic', 'soon'], ['half', 'asleep', 'wrote', 'previous', 'messag', 'greatest', 'friend', 'haha'], ['pictur', 'burn', 'taylor', 'swift', 'great', 'song'], ['hahaha', 'busi', 'see', 'repli', 'yes', 'true'], ['long', 'night', 'ahead'], ['quot', 'friend', 'soul', 'differ', 'quot', 'plato'], ['yeah', 'spammer', 'discrimin', 'none', 'femal', 'part', 'target', 'group', 'appar'], ['yes', 'today', 'star', 'war', 'day', 'may'], ['yay', 'hope', 'day', 'work', 'wonder', 'sis', 'bank', 'holiday', 'england', 'today', 'everyon', 'work'], ['today', 'drag', 'bore', 'get', 'romanc', 'book', 'prob', 'not', 'til', 'morn', 'night', 'twitter', 'babe'], ['oh', 'mint', 'loung', 'night'], ['well', 'least', 'not', 'late'], ['haha', 'convinc', 'would', 'great'], ['thought', 'spanish', 'name', 'pretend', 'one', 'night', 'ariella', 'gonzalez', 'like', 'not', 'care'], ['love', 'book'], ['said', 'aj', 'made', 'sens', 'hahaha', 'talk', 'love', 'pictur', 'colin'], ['work', 'bank', 'holiday', 'not', 'mind', 'good', 'fun'], ['sit', 'sabbeth', 'first', 'period', 'buhahaha', 'cool', 'lmao'], ['not', 'think', 'bad', 'well', 'edit'], ['day', 'day', 'shred', 'day', 'special', 'k', 'challeng', 'feel', 'fantast'], ['stuff', 'quot', 'go', 'quot', 'easi', 'accomplish', 'start', 'rain', 'rain', 'flush', 'away'], ['think', 'deserv', 'award', 'big', 'shini', 'one'], ['watch', 'children', 'realli', 'studi', 'start', 'soon'], ['case', 'stupid', 'move', 'thought'], ['yeah', 'good', 'not', 'go', 'use', 'give', 'want', 'watch', 'star', 'trek'], ['good', 'morn', 'rain'], ['alway', 'appreci', 'quot', 'quot'], ['sappi', 'littl', 'fellow', 'thank', 'well', 'wish', 'need', 'today', 'one', 'exam'], ['good', 'morn'], ['first', 'year', 'age', 'not', 'go', 'crafti', 'raft', 'not', 'mind', 'though', 'not', 'even', 'like', 'crafti', 'raft'], ['good', 'girl', 'nevah', 'tell', 'hahahahaha', 'hope', 'good', 'weekend'], ['yeah', 'yesterday', 'turn', 'parent', 'rent', 'hummer', 'limo', 'pretti', 'cool'], ['yeah', 'get', 'show', 'interest', 'process', 'key', 'follow', 'least', 'learn', 'far'], ['bought', 'dress', 'yesterday', 'day', 'til', 'chris', 'home', 'excit', 'gavin', 'first', 'tooth'], ['tire', 'turn', 'internet', 'play', 'morn'], ['sometim', 'peopl', 'never', 'learn', 'shut', 'stop', 'talk', 'shit'], ['may', 'forth'], ['hahaha', 'boyfriend', 'yeah', 'look', 'differ', 'cute', 'want', 'watch', 'movi'], ['employe', 'orient', 'serco', 'yayi', 'wish', 'luck'], ['yeah', 'good', 'startl'], ['thank', 'anyway'], ['hey', 'buck', 'love', 'load', 'love', 'quot', 'buck', 'quot'], ['hey', 'life', 'love', 'translat', 'love', 'life'], ['day', 'today', 'not', 'believ', 'month', 'nervous', 'go', 'say', 'later', 'go', 'keep', 'comin', 'back'], ['hello', 'may', 'great', 'day'], ['one', 'good', 'deed', 'deserv', 'anoth', 'hope', 'help', 'someon', 'els', 'day'], ['lol', 'go', 'not', 'easi', 'use'], ['thank', 'view', 'portfolio', 'updat', 'sometim', 'keep', 'updat'], ['hi', 'wake', 'not', 'lazi', 'would', 'proud', 'way', 'nice', 'colour', 'not', 'burnt'], ['appreci'], ['hey', 'type', 'like', 'facebook', 'much', 'simpler', 'good', 'day'], ['lmao', 'lucki', 'minut', 'foot', 'eww', 'bus'], ['girl', 'talk', 'awesom'], ['congratul', 'heart', 'hacker', 'not', 'comput', 'hacker'], ['good', 'morn'], ['happi', 'may', 'bank', 'holiday', 'british', 'peep'], ['goodmorn'], ['ahh', 'love', 'got', 'twitterr'], ['time', 'school', 'happi', 'starwar', 'day'], ['help', 'way'], ['aww', 'gorgeous', 'photo', 'california', 'two', 'make', 'melt'], ['morn', 'trish', 'fun', 'today'], ['yeah', 'excit'], ['join', 'twibe', 'visit', 'join', 'not', 'spinner', 'know', 'respect', 'spinner', 'coffe'], ['fuckyoumonday', 'like', 'total', 'raini', 'day', 'work', 'hug'], ['good', 'morn'], ['say', 'good', 'even'], ['ta', 'babe', 'know', 'love', 'curri'], ['ugg', 'comput', 'run', 'soo', 'slow', 'today', 'drive', 'batti', 'guess', 'time', 'remov', 'file', 'defrag', 'ugg', 'want', 'mac'], ['gosh', 'stinki', 'old', 'headach', 'mayb', 'lunchfast'], ['new', 'album', 'truli', 'genius', 'happi'], ['spiderwoman', 'amaz', 'mum', 'blogger', 'mentor', 'amp', 'top', 'climb', 'wall'], ['well', 'nice', 'love', 'new', 'friend', 'organis'], ['dreari', 'monday', 'morn', 'slept', 'like', 'break'], ['think', 'thought', 'sneez'], ['whatev', 'know', 'like', 'hahahhah'], ['birthday', 'girl', 'hous', 'tweet', 'tweet', 'sucka'], ['twitter', 'hair', 'dri', 'wash', 'macadamia', 'orang', 'shampoo', 'smell', 'gorgeous'], ['quot', 'phlegmili', 'green', 'quot', 'clever', 'ever', 'soo', 'eeww', 'slow', 'clap', 'get', 'well', 'soon'], ['yay', 'bag', 'giveaway', 'bag', 'pretti', 'mayb', 'belt', 'see'], ['hi', 'celebxxvidsyh', 'aybygw', 'thank', 'follow'], ['ohh', 'excel', 'friend'], ['thank', 'well', 'wish', 'hope', 'day', 'also', 'quit', 'success'], ['not', 'thank', 'enough', 'nitin'], ['ok', 'thank', 'like', 'new', 'pic'], ['omg', 'new', 'fave', 'show', 'lt', 'one', 'guess', 'hahahha'], ['would', 'love', 'see'], ['lol', 'not', 'know', 'not', 'need', 'plant', 'give', 'hug', 'instead', 'hug'], ['thankyoou'], ['happi', 'quot', 'star', 'war', 'quot', 'day', 'twitter'], ['helaa', 'en', 'thank'], ['thought', 'said', 'twitter', 'crap', 'bellion'], ['not', 'worri', 'not', 'send', 'soon', 'land', 'delhi', 'let', 'know', 'price', 'littl'], ['woop', 'rehears', 'song', 'yep', 'sound', 'even', 'enough'], ['suck'], ['propellerhead', 'harddriv', 'long', 'got', 'music', 'repo', 'back', 'shape', 'felt', 'nostalg'], ['realli', 'incred', 'gross', 'outsid', 'hope', 'get', 'alot', 'done', 'int', 'hous', 'today', 'includ', 'pic', 'blog', 'morn', 'friend'], ['yeah', 'good', 'not', 'click', 'red', 'x', 'shut', 'good', 'minim', 'goe'], ['jailbroken', 'went', 'earli', 'prepar', 'brick'], ['cool', 'good', 'know'], ['awesom', 'weekend', 'awesom', 'turn', 'rummag', 'sale', 'friday', 'saturday'], ['saw', 'fiddler', 'topol', 'girl', 'loov', 'next', 'month', 'anni', 'row', 'not', 'wait', 'trip', 'music', 'store', 'fiddler', 'sheet', 'music'], ['best', 'wknd', 'man', 'levi', 'sara', 'love', 'guy'], ['good', 'morn', 'hun', 'love', 'movi', 'happen', 'good', 'movi'], ['good', 'afternoon', 'jona', 'brother', 'x'], ['happi', 'starwarsday', 'may', 'everyon'], ['glad', 'trudg', 'first', 'page', 'anathem', 'long', 'time', 'sinc', 'want', 'call', 'sick', 'read'], ['rocket', 'surgeri', 'hey', 'haha', 'thought', 'rocket', 'scienc', 'oh', 'knew', 'swear', 'thank'], ['good', 'morn'], ['not', 'sympathi', 'well'], ['math', 'class', 'shoot', 'bore'], ['know', 'slow', 'horribl', 'not', 'tell'], ['thanx', 'hun'], ['thank', 'love', 'quot', 'miseri', 'busi', 'quot', 'paramor', 'great', 'band'], ['school', 'rusti', 'put', 'oh', 'love', 'ipod', 'awh'], ['wow', 'thank', 'say', 'man', 'would', 'love', 'illustr', 'children', 'book'], ['happi', 'birthday'], ['also', 'excit', 'blazin', 'squad', 'reviv', 'root', 'new', 'song'], ['oh', 'pleas', 'not', 'not', 'bother'], ['fuck', 'not', 'look', 'well', 'go', 'home'], ['monday', 'work', 'leg', 'still', 'hurt', 'littl', 'smile'], ['happi', 'freaak', 'lt'], ['game', 'cent', 'hot', 'dog', 'haha'], ['go', 'beauti', 'day'], ['agre'], ['worst', 'case', 'cenario', 'show', 'white', 'mask', 'scare', 'everyon', 'even', 'better', 'everyon', 'wear', 'mask', 'besid'], ['latest', 'obess'], ['thank'], ['reminis', 'wonder', 'day', 'yesterday', 'famili', 'love', 'noth', 'like', 'shoot', 'basketbal', 'men', 'life'], ['love', 'memori', 'stick', 'microsoft', 'keep', 'send'], ['might', 'see', 'god', 'mother', 'littl', 'boy', 'bit', 'leon', 'cute', 'lt'], ['not', 'wait', 'thing'], ['time', 'go', 'bed', 'tire', 'catch', 'coupl', 'day', 'land', 'amp', 'recov', 'fli', 'denmark'], ['agre', 'amp', 'amp', 'like', 'new', 'pic'], ['heyi', 'shantel', 'twitter', 'cool', 'guess', 'follow', 'britney', 'spear', 'follow', 'back'], ['happi', 'star', 'war', 'day', 'everyon', 'enjoy', 'holiday', 'uk'], ['hey', 'r', 'back', 'la', 'right', 'favorit', 'part', 'bout', 'europ', 'never', 'countri', 'xcept', 'canada', 'xo', 'jenna'], ['incred', 'sweet', 'good', 'hubbi'], ['bore'], ['unless', 'gretel', 'killeen', 'appar', 'look', 'pretti', 'damn', 'good'], ['great', 'weekend', 'glad', 'sunni', 'today'], ['good', 'luck', 'week', 'know', 'handl', 'grace'], ['chill', 'baybe', 'sarah', 'love', 'girl'], ['happi', 'belat', 'birthday', 'francesc', 'fabrega', 'wish', 'best', 'fabr'], ['think', 'swine', 'market', 'declin', 'sinc', 'not', 'say', 'anymor'], ['night', 'diana', 'travel', 'soon', 'take', 'care'], ['month', 'left', 'high', 'school', 'thank', 'god', 'readi', 'summer'], ['yes', 'dahl', 'definit', 'one', 'awesom', 'tweep', 'send', 'love', 'kind', 'across', 'ocean'], ['invis', 'car', 'help', 'boost', 'recycl', 'honest'], ['thank'], ['morn', 'amp', 'welcom', 'new', 'follow', 'tweet', 'busi', 'amp', 'pleasur', 'fair', 'warn'], ['love'], ['hahahha', 'day', 'cool', 'noth', 'open', 'like', 'isol', 'haha', 'cool'], ['l', 'much', 'see', 'school', 'todaay'], ['promis', 'thank'], ['back', 'li', 'ago', 'n', 'still', 'made', 'work', 'yay'], ['yep', 'noth', 'worri'], ['someon', 'sweet', 'tooth', 'die', 'somethin', 'sweet', 'attack', 'chock', 'coat', 'tini', 'teddi', 'could', 'find', 'lol'], ['hella', 'worth', 'even', 'not', 'need', 'full'], ['great', 'thank'], ['listen', 'band', 'recommend', 'sarrah', 'realli', 'like', 'friday', 'night', 'boy', 'lt'], ['know', 'total', 'excit'], ['wow', 'not', 'believ', 'monday', 'alreadi', 'hope', 'everyon', 'well', 'today'], ['not', 'frown', 'lil', 'aussi', 'still', 'love', 'muah'], ['major', 'fail', 'sinc', 'ask'], ['ofici', 'back', 'work', 'system', 'run', 'smooth'], ['jason', 'electr', 'guitar', 'yay'], ['thank', 'follow', 'new', 'twitpeep'], ['yes', 'stupid', 'girl', 'kind'], ['say', 'karma', 'strike', 'twice'], ['fav', 'cd'], ['howev', 'got', 'garden', 'someth', 'etern', 'pleas'], ['like', 'patricia', 'dress'], ['yehey', 'summer', 'exciteedd', 'balm'], ['thank'], ['pressur'], ['clear', 'head'], ['allright', 'look', 'forward'], ['hope', 'went', 'well', 'root', 'not', 'comfort', 'abl', 'world', 'phd', 'applic', 'xx'], ['wow', 'cool', 'bytheway', 'love', 'new', 'tv', 'show'], ['go', 'great', 'week', 'dalla', 'next', 'weekend'], ['thank', 'follow', 'nice', 'meet'], ['beatl', 'scouser', 'funni', 'haircut', 'talent', 'banana', 'split'], ['love'], ['final', 'back', 'onlin', 'miss', 'lappi', 'mani', 'thing', 'follow', 'start', 'ning', 'haha'], ['awesom', 'day', 'expect', 'much', 'awesomeupdat'], ['jonathan', 'get', 'priscilla', 'ahn', 'raphael', 'saadiq', 'show', 'fab', 'jool', 'holland', 'show'], ['would', 'like', 'see', 'pictur', 'carl', 'john', 'everyon', 'read', 'face', 'proud', 'love', 'eachoth'], ['lazzi', 'monday', 'bank', 'holiday', 'nicol', 'not', 'direct', 'msged', 'yet'], ['plan', 'week', 'go', 'good', 'go', 'get', 'lot', 'stuff', 'done'], ['appreci', 'effort', 'skin', 'much', 'softer', 'screen'], ['woke', 'feel', 'real', 'good', 'krispi', 'kreme', 'want', 'doughnut'], ['ooh', 'realli', 'haha', 'said', 'anyth', 'yet', 'suggest', 'idea', 'twitter', 'not', 'alreadi'], ['thank'], ['video', 'challeng', 'shot', 'confer', 'room', 'mic', 'thank', 'love', 'grant', 'park', 'hous', 'amp', 'dog'], ['hard', 'go', 'back', 'work', 'straight', 'day', 'disneyland', 'tend'], ['cool', 'saw', 'link', 'thank'], ['good', 'morn', 'everyon', 'enjoy', 'day', 'think', 'tweet', 'friend'], ['woah', 'cool', 'land', 'london', 'hour', 'love', 'sceneri', 'beauti'], ['need', 'fold', 'laundri', 'finish', 'dish', 'clean', 'rabbit', 'cage', 'realli', 'need', 'done', 'doabl'], ['fever', 'imagin', 'son'], ['son', 'got', 'sure', 'love', 'morn', 'time', 'know', 'not', 'get'], ['good', 'morn', 'tweep', 'monday', 'got', 'way', 'soon', 'hope', 'good', 'one', 'least', 'good', 'get', 'monday'], ['come', 'not', 'uber', 'success', 'not', 'make', 'mistak', 'make', 'entir', 'new', 'one'], ['would', 'love', 'see'], ['tire', 'school', 'work', 'shower', 'neighbour'], ['littl', 'stomach', 'bug', 'noth', 'serious'], ['thank', 'twilight', 'know', 'love', 'canon'], ['awesom', 'west', 'lake', 'street', 'right', 'across', 'dunn', 'brother', 'lake'], ['hi', 'dougi', 'fan', 'thailand', 'film', 'song', 'much'], ['mother', 'day', 'sunday', 'not', 'forget', 'send', 'someth', 'special'], ['chilliin'], ['yay', 'made', 'first', 'sale', 'redbubbl', 'make', 'happi'], ['final', 'feel', 'back', 'swing', 'thing', 'work', 'get', 'marri', 'last', 'week', 'sigh', 'relief', 'wed', 'plan'], ['today', 'bless', 'day'], ['ah', 'help', 'friend', 'move', 'defo', 'well', 'deserv', 'pint', 'sure'], ['let', 'guess', 'ran', 'mile', 'respect', 'dude', 'not', 'mayb', 'train'], ['great', 'day', 'massag', 'book', 'appoint', 'today'], ['oh', 'yes', 'happi', 'star', 'war', 'day', 'may', 'fourth'], ['lol', 'good', 'morn', 'ran', 'mill', 'amp', 'hit', 'gym', 'great', 'day'], ['swim', 'tan', 'heaven', 'blast', 'music', 'tan', 'world'], ['crazi', 'miley', 'jb', 'love', 'nick', 'jona', 'haha'], ['fun', 'read', 'thank', 'brit', 'make', 'thing', 'interest', 'funni', 'whittl', 'saint', 'day', 'four'], ['good', 'day', 'check', 'hugh', 'today', 'also', 'lookout', 'best', 'quot', 'cassoulet', 'quot', 'recip', 'ever', 'tast'], ['feel', 'sick', 'oh', 'well', 'reckon', 'peopl', 'bus', 'curs', 'anyway', 'nighti', 'night'], ['head', 'drop', 'lil', 'cuz', 'bus', 'stop', 'back', 'bed', 'read', 'book', 'relaxin', 'day'], ['think', 'fml', 'chang', 'lml', 'love', 'life'], ['good', 'morn', 'hope', 'nice', 'product', 'day'], ['look', 'like', 'got', 'new', 'job'], ['seem', 'desper', 'say', 'probli', 'enough'], ['good', 'morn', 'hope', 'great', 'day'], ['friend', 'come', 'tonight', 'hope', 'weather', 'stay', 'nice'], ['see', 'coffe', 'tabl', 'r', 'coming', 'insult', 'clean', 'rest', 'hous'], ['dohh', 'old', 'never', 'heard', 'last', 'year'], ['far', 'everybodi', 'look', 'good', 'momma', 'goat', 'kid', 'month', 'hope', 'week'], ['get', 'play', 'golf', 'kickin', 'leadership', 'feel', 'r', 'go', 'kick', 'golf', 'cours'], ['good', 'morn', 'tweeti'], ['monday', 'mornin', 'back', 'work', 'today', 'good', 'thing', 'live', 'job'], ['friend', 'ha', 'thing', 'make', 'old', 'look', 'good'], ['tweetioi', 'class', 'real', 'problem'], ['start', 'new', 'diet', 'today', 'not', 'want', 'get', 'fat', 'besid', 'almost', 'bath', 'suit', 'season', 'lol'], ['thank', 'face', 'show', 'photoshoot'], ['bed', 'night', 'good', 'night', 'everyon'], ['twitter', 'suck'], ['toronto', 'wait', 'day', 'go'], ['thank', 'love', 'let', 'know', 'readi', 'babi', 'hav', 'gorgeous', 'want', 'someth', 'put', 'x'], ['congrat', 'knotti', 'man'], ['music', 'meant', 'awesom', 'christian', 'artist'], ['yes', 'jeev', 'bring', 'noos', 'mani', 'assign'], ['good', 'morn', 'dan', 'birthday', 'plan', 'get', 'exercis', 'today', 'love', 'ya', 'see', 'nyc'], ['ran', 'mile', 'went', 'gym', 'amp', 'woke', 'great', 'danni', 'hope', 'great', 'alreadi'], ['stoke', 'spring', 'amaz', 'wild', 'food', 'natur'], ['pretti', 'much', 'thank', 'see', 'littl', 'gilbert', 'amp', 'sullivan', 'cheer'], ['race', 'saturday', 'night', 'jimmi', 'not', 'great', 'still', 'place'], ['wish', 'could', 'sleep', 'forev'], ['absout', 'best'], ['much', 'better', 'tool', 'come', 'across', 'twitter', 'karma', 'steroid'], ['go', 'see', 'wolverin', 'lil', 'bit', 'excit'], ['smile', 'follow', 'pleas', 'lol'], ['sweet', 'usb', 'charl', 'mari', 'site', 'bought'], ['woo', 'hoo', 'made', 'one', 'favorit', 'see', 'monday', 'rock'], ['castiel', 'angl'], ['happi', 'help'], ['ask', 'thnx', 'grite', 'take', 'care', 'god', 'bless'], ['love', 'fact', 'day', 'school', 'left'], ['go', 'lay', 'get', 'offici', 'yes', 'lol', 'good', 'night'], ['wahoo', 'thank', 'mention', 'other'], ['got', 'rad', 'new', 'aunt', 'made', 'cool', 'shini', 'shini', 'pink', 'materi'], ['think', 'super', 'excit', 'week'], ['nan', 'hous', 'eat', 'fish', 'chip', 'watch', 'top', 'gear', 'good', 'time'], ['us', 'post', 'thing', 'go'], ['yay', 'sherbert', 'chocol', 'nutriti'], ['not', 'part', 'surrey', 'either', 'feel', 'quit', 'bit', 'nippi', 'must', 'say', 'afternoon'], ['not', 'sound', 'preacheri', 'anyth', 'iphon', 'amaz', 'not', 'issu', 'sinc', 'firmwar', 'wink', 'wink'], ['yes', 'minut', 'sim', 'plus', 'season', 'fun', 'fun', 'expans'], ['say', 'number', 'good', 'left', 'white', 'blood', 'cell', 'count'], ['poetic', 'great', 'go', 'keep', 'come'], ['joan', 'legend', 'not', 'wait', 'apprentic', 'final', 'addict', 'think', 'need', 'rehab', 'lol', 'tweet', 'later', 'xoxo'], ['gmorn', 'ooh', 'giirll', 'monday'], ['goodmorn', 'twitter', 'bug', 'happi', 'monday', 'today', 'mark', 'first', 'offici', 'day', 'first', 'fulltim', 'job', 'time', 'get', 'readi'], ['morn', 'twitt', 'head', 'home', 'great', 'sleep', 'bf', 'tennill'], ['thank'], ['last', 'night', 'awesom', 'thank', 'hard', 'work', 'put', 'get', 'coffe'], ['work', 'birthday', 'not', 'bad', 'get', 'work', 'rubi', 'rail'], ['hey', 'dougi', 'thought', 'would', 'tell', 'gig', 'edinburgh', 'got', 'brilliant', 'review', 'scottish', 'sunday', 'mail', 'xx'], ['knowledg', 'start', 'scare'], ['watch', 'loudquietloud', 'documentari', 'ever', 'awesom', 'pixi', 'realis', 'joey', 'santiago', 'david', 'lover', 'twitter', 'fantast'], ['hey', 'bet', 'tweep', 'lot', 'mother', 'wisdom', 'share'], ['littl', 'brother', 'funni', 'congrat', 'engag'], ['wow', 'pretti', 'x'], ['love', 'miley', 'song', 'climb', 'love', 'video', 'xx'], ['look', 'like', 'delici', 'recip', 'tri', 'tonit'], ['castiel', 'love'], ['great', 'planet', 'shannan', 'lade', 'lanet', 'amp', 'hopeful', 'come', 'peac'], ['around', 'better'], ['weekend', 'quiet', 'plan', 'new', 'websit', 'today', 'research', 'choos', 'hat', 'coffe', 'hat', 'sound', 'good', 'though', 'kettl'], ['gmorn', 'hermana', 'thank', 'testimoni', 'wonder', 'post', 'alreadi'], ['watch', 'supernatur', 'excit'], ['great', 'pic', 'tri', 'start', 'sell', 'race', 'photo', 'runner'], ['least', 'kid', 'havnt', 'gotten', 'big', 'still', 'say', 'mommi', 'ilov', 'aww', 'sweet', 'lucki', 'kid'], ['actual', 'drove', 'today', 'incid', 'report', 'quot', 'ice', 'cube', 'today', 'good', 'day'], ['thank', 'follow', 'r', 'band', 'kind', 'genr', 'play', 'nice', 'meet'], ['lol', 'pretti', 'long'], ['mayb', 'cell', 'phone', 'soon', 'yeah'], ['sun', 'shine', 'great', 'day'], ['nuu', 'total', 'love', 'may', 'best', 'cos', 'born', 'may'], ['cheer', 'lift', 'coffe', 'cup', 'monday'], ['not', 'want', 'work', 'shift', 'today', 'would', 'rather', 'whisper', 'earpiec', 'ladi', 'friend', 'cellphon'], ['comiccon', 'cool'], ['mission', 'wale', 'find', 'world', 'greatest', 'welsh', 'cake', 'success', 'none', 'better', 'nan'], ['gift', 'amp', 'honesti', 'box', 'messag', 'discontinu', 'due', 'abus', 'hehe', 'aplikac', 'na', 'hovno'], ['not', 'wait', 'dte', 'michigan', 'summer', 'guy', 'great', 'look', 'custom', 'nkotb', 'track', 'jacket'], ['best', 'ib', 'exam', 'carl', 'hope', 'not', 'find', 'difficult', 'go', 'well'], ['aww', 'sunshin', 'life', 'bob', 'larri', 'sing', 'make', 'think', 'lt'], ['got', 'home', 'audit', 'awhil', 'ago', 'think', 'went', 'pretti', 'well', 'math', 'homework', 'call', 'name'], ['yay', 'bought', 'american', 'dad', 'volum', 'also', 'seen', 'australia', 'dvd', 'could', 'lot', 'cheaper', 'go'], ['rz', 'hope', 'time', 'tell', 'good', 'luck'], ['hous', 'season', 'good', 'stuff', 'time', 'gf', 'priceless'], ['play', 'amp', 'bank', 'holiday', 'nice', 'got', 'mani', 'xp', 'kill', 'blob', 'actual', 'two', 'though', 'tentacl'], ['think', 'less', 'tribut', 'parodi'], ['know', 'nice', 'haha'], ['lot', 'task', 'complet', 'today', 'first', 'weclom', 'new', 'member', 'canadamigo', 'social', 'network', 'site', 'coffe'], ['charm', 'funni'], ['like', 'take', 'dog', 'car', 'run', 'errand', 'alway', 'excit', 'go', 'anywher', 'like', 'morn', 'kroger'], ['end', 'well', 'lt', 'unless', 'cours', 'well', 'time', 'power', 'three', 'sum', 'end', 'x'], ['thank', 'good', 'morn'], ['interest', 'type', 'get', 'bike', 'compani', 'follow', 'get', 'compani', 'amus', 'say'], ['thank'], ['mint', 'dessert', 'tonight', 'love', 'stuff'], ['thank', 'awesom'], ['hmm', 'vpn', 'work', 'fine', 'oh', 'wait', 'not', 'need', 'vpn', 'anymor'], ['busi', 'week', 'week', 'quick', 'trip', 'chase', 'oil', 'gas', 'htown', 'back', 'offic', 'fun', 'week', 'devel', 'team'], ['mean', 'not', 'tri', 'hard', 'enought'], ['happi', 'birthday', 'snicker', 'hope', 'best', 'day', 'ever', 'let', 'us', 'go', 'shop'], ['done', 'whee', 'hahaa', 'tire', 'sleepi', 'peter', 'suck', 'not', 'come', 'birthday'], ['monday', 'not', 'bad', 'sunni', 'fb'], ['beto', 'pizzeria', 'banksvill', 'rd', 'believ', 'beachview', 'area', 'sorri', 'answer', 'like', 'year', 'later'], ['yes', 'cathi', 'ordinarili', 'not', 'much', 'problem', 'nake', 'girl', 'chase', 'howev'], ['good', 'morn', 'twitter', 'bugss', 'day', 'start', 'noww'], ['good', 'morn', 'thank', 'hot', 'cup', 'tea'], ['glad', 'get', 'twitter'], ['far', 'good', 'still', 'earli', 'though'], ['macarena', 'never', 'look', 'good', 'love', 'quot', 'aaiiee', 'quot', 'squeak', 'exclam'], ['nice', 'pic', 'kept', 'seem', 'carri', 'cam', 'around', 'along'], ['germani', 'love', 'haha'], ['knew', 'would', 'get'], ['wow', 'someon', 'proud'], ['happi', 'birthday', 'month', 'get', 'day', 'deserv', 'whole', 'month'], ['guess', 'ran', 'mile', 'amp', 'gym', 'superman', 'oxox'], ['sure', 'easier', 'login', 'everi', 'day', 'make', 'post', 'admin', 'mod', 'ill', 'tri'], ['know', 'need', 'not', 'fan', 'daili', 'amp', 'nativ', 'enjoy', 'dri', 'last'], ['hahahahahaha', 'serious', 'tell', 'wait', 'staff', 'look', 'great', 'time', 'easiest', 'nice', 'thing'], ['pepsi', 'throwback', 'tast', 'good', 'belli'], ['thank', 'awesom', 'tweet', 'leeloo', 'glad', 'enjoy', 'weekend'], ['eat', 'good'], ['hand', 'evalu', 'form', 'market', 'tute', 'today', 'one', 'fill', 'amp', 'condescend', 'rest', 'love', 'though'], ['cheer', 'would', 'like', 'thank', 'zbrush', 'make', 'possibl'], ['definit', 'appreci', 'simpl', 'thing', 'make', 'day'], ['coffe', 'lifelin', 'thing', 'good'], ['yes', 'wrong', 'wireless', 'plan'], ['go', 'star', 'trek', 'premier', 'tomorrow', 'night', 'uber', 'stoke', 'not', 'care', 'nerd', 'star', 'trek', 'amazecor'], ['bon', 'voyag', 'birthday', 'brother', 'mccarran', 'cyah', 'vega', 'juli', 'not', 'slept', 'yet', 'amp', 'class', 'fun', 'weekend'], ['staff', 'meet', 'today', 'not', 'travel', 'safe', 'see', 'tomorrow'], ['make', 'sure', 'well', 'done'], ['good', 'morn'], ['lol', 'thank', 'morn', 'chuckl', 'not', 'sure', 'follow', 'pleas', 'check'], ['good', 'morn'], ['happi', 'star', 'war', 'day'], ['philosophi', 'final', 'today', 'thank', 'day'], ['hope', 'roommat', 'good', 'morn', 'without', 'tp', 'soap'], ['school', 'day', 'exit', 'amaz', 'premier'], ['call', 'einstein', 'got', 'math', 'test', 'result', 'hell', 'yess'], ['sit', 'kati', 'hous', 'jo', 'two', 'away', 'stuff', 'swine', 'flu', 'bronchiti', 'differ', 'stori'], ['wild', 'oat', 'pinot', 'grigio', 'v', 'easi', 'drink'], ['get', 'motiv', 'fact', 'know', 'wake', 'product', 'go', 'sleep', 'though'], ['like', 'superpow', 'explan', 'better', 'lol'], ['ball', 'motion', 'type', 'concept', 'outlin', 'format', 'could', 'develop', 'ensur', 'deliv', 'great'], ['might', 'give', 'anoth', 'go'], ['weather', 'report', 'week', 'upper', 'make', 'happi', 'perfect', 'run', 'weather'], ['thank'], ['saw', 'tweet', 'coupl', 'week', 'ago', 'hashtag', 'want', 'contribut', 'sinc', 'huge', 'mitch', 'fan'], ['morn', 'chip', 'love', 'new', 'html', 'format', 'ezin'], ['thimk', 'work', 'muscl', 'love', 'much'], ['ok', 'complet', 'insomniac', 'moment', 'almost', 'still', 'awak', 'hate', 'not', 'stop', 'think', 'mornin'], ['not', 'wast', 'may', 'bank', 'holiday', 'crappi', 'south', 'brighton', 'parti'], ['aha', 'length', 'touch'], ['good', 'morn'], ['get', 'nail', 'done', 'relax', 'benji', 'hour', 'away'], ['sound', 'like', 'fun', 'think', 'lol', 'naughti', 'iron', 'watch', 'nk', 'porn', 'youtub', 'instead', 'lmao'], ['want', 'experi', 'snow', 'not', 'snow', 'suck'], ['bed', 'cuppa', 'tv', 'husband', 'cook', 'life', 'sweet'], ['would', 'great', 'thank'], ['lol', 'congrat'], ['eat', 'bagel', 'yummi'], ['thank'], ['realli', 'consid', 'moment', 'day', 'even', 'money', 'harder', 'work', 'though', 'not', 'imagin', 'harder'], ['clamber', 'crash', 'car', 'hilari', 'fun'], ['someon', 'good', 'morn'], ['amp', 'lt', 'cute', 'sinfest'], ['n', 'case', 'miss', 'show', 'yesterday', 'chanc', 'listen', 'bbc', 'iplay', 'enjoy'], ['realiz', 'solid', 'better', 'ajc'], ['work', 'hope', 'enjoy', 'day', 'finger', 'cross'], ['listen', 'favourit', 'song', 'allah', 'ke', 'band', 'hasd'], ['hope', 'feel', 'better', 'soon', 'check', 'cool', 'backround', 'profil'], ['thank', 'follow', 'love', 'life', 'ador'], ['wish', 'london', 'person', 'wit', 'nun', 'run', 'great', 'idea', 'open', 'sister', 'act', 'new', 'broadway', 'show'], ['true', 'lol', 'problem', 'mad'], ['hiya', 'miss'], ['tri', 'fireflight', 'first', 'femal', 'front', 'metal', 'unbreak', 'album', 'would', 'good', 'start'], ['nice', 'submit'], ['love', 'awesom'], ['woke', 'hour', 'sleep', 'feel', 'better'], ['count', 'minut', 'go', 'home'], ['god', 'peppermint', 'mocha', 'frappachino', 'amaz', 'addict'], ['thank', 'give', 'star'], ['like', 'record', 'sooth', 'voic'], ['buy', 'copi', 'today', 'excit', 'need', 'learn', 'friday', 'good', 'luck', 'sheffield'], ['shiv', 'place', 'slowli', 'hope'], ['yay', 'not', 'wait', 'read'], ['not', 'need', 'shirt', 'suffer', 'anoth', 'two', 'old', 'ep', 'tonight'], ['whaa', 'realli', 'definit', 'option', 'though', 'like', 'also', 'crazi'], ['like', 'window', 'releas', 'candid', 'far', 'also', 'like', 'new', 'video', 'card', 'terabyt', 'harddisk'], ['bill', 'super', 'thank'], ['total', 'welcom', 'come', 'hang', 'wiki'], ['hell', 'lot', 'say', 'not', 'complain', 'thees', 'day', 'quot', 'quot', 'quot', 'quot', 'help', 'case'], ['mani', 'thank'], ['total', 'go', 'amaz', 'reason', 'bought', 'tix', 'song', 'blood', 'bank'], ['good', 'morn'], ['beauti', 'monday', 'morn', 'happi'], ['happi', 'star', 'war', 'day', 'everyon'], ['dad', 'like', 'love'], ['thank', 'gail', 'go', 'tri', 'one', 'day', 'look', 'yummi', 'geezz', 'siargao', 'trip', 'nlng', 'pla', 'heheh'], ['two', 'hour', 'set', 'drive', 'home', 'most', 'hope', 'goe', 'quick'], ['haha', 'say', 'two', 'week', 'pleas', 'continu', 'bre', 'great'], ['got', 'ticket', 'dismiss'], ['danni', 'run', 'alreadi', 'hope', 'good', 'day', 'love'], ['happi', 'star', 'war', 'day', 'may'], ['need', 'go', 'back', 'scotti', 'use', 'last', 'year'], ['thank', 'follow', 'rais', 'hand'], ['feel', 'butterfli', 'today', 'studi', 'studi', 'studi', 'contract', 'go', 'ace', 'competit', 'journal'], ['not', 'lyk', 'othaa', 'gurrl', 'not', 'lyk', 'jona'], ['go', 'work', 'amaz', 'chariti', 'event', 'big', 'brother', 'big', 'sister', 'not', 'mind', 'work', 'good'], ['kno', 'amaz', 'known', 'sinc', 'got', 'twitter', 'tweet', 'word'], ['awak', 'happi'], ['saw', 'nome', 'twitter', 'still', 'not', 'wake'], ['thank', 'becom', 'follow'], ['beauti', 'morn'], ['good', 'morn'], ['thank', 'kelli', 'sweet'], ['saw', 'xmen', 'origin', 'sat', 'far', 'best', 'xmen', 'movi', 'amaz'], ['good', 'morn', 'get', 'readi', 'go', 'hospit', 'get', 'cat', 'scan', 'best', 'wish'], ['wow', 'lot', 'work', 'hope', 'today', 'day', 'work', 'usual', 'get', 'playtim'], ['call', 'wierd', 'jus', 'love', 'raini', 'day', 'make', 'feel', 'warm', 'amp', 'cozi', 'insid', 'lol'], ['monday', 'best', 'excit', 'week'], ['yes', 'nag', 'twitter', 'haha', 'thank', 'lm'], ['say', 'pleas', 'repli', 'dougi', 'doubl', 'dare'], ['yip', 'would', 'sign', 'dodgi', 'site', 'jo', 'eish', 'boet', 'not', 'cool'], ['got', 'new', 'follow', 'yesterday', 'yay', 'need', 'til'], ['today', 'check', 'day', 'week', 'artist', 'way', 'hurray', 'time', 'celebr', 'anoth', 'good', 'complet', 'journey'], ['beij', 'good', 'massag', 'amp', 'sexi', 'girl', 'amp', 'real', 'photo', 'beij', 'hi'], ['peac', 'amp', 'quiet', 'enjoy', 'last'], ['hey', 'arthur', 'forgot', 'say', 'thank', 'flag', 'proud', 'display', 'bedroom', 'door', 'witti', 'one'], ['revamp', 'record', 'studio', 'today', 'ad', 'nice', 'high', 'end', 'outboard', 'exit'], ['hurray', 'twin', 'girl', 'born', 'beauti', 'may', 'day'], ['peopl', 'not', 'get', 'fender', 'bender', 'way', 'school', 'not', 'happen', 'hahahahah'], ['good', 'day', 'let', 'us', 'see', 'get', 'accomplish', 'today', 'togeth'], ['sound', 'good', 'one', 'also', 'fun'], ['know', 'crazi', 'love', 'use', 'seen', 'yt', 'recent', 'partner', 'xx'], ['nice', 'luke', 'quot', 'goodluck', 'test', 'dread'], ['love', 'twitski'], ['final', 'upgrad', 'spotifi', 'premium', 'exceed', 'threshold', 'awesom', 'time', 'ago', 'iphon', 'app', 'amp', 'remot'], ['quit', 'belov', 'job', 'long', 'luvli', 'vacat', 'koh', 'tao', 'turtl', 'island', 'south', 'thailand', 'sea', 'sand', 'join'], ['know', 'recommend'], ['feel', 'pretti', 'energ', 'amp', 'readi', 'face', 'day', 'hour', 'sleep', 'hope', 'last', 'day'], ['silli', 'shoot', 'shopper', 'though', 'taser', 'probabl', 'human', 'penalti', 'item', 'item', 'line'], ['happi', 'birthday'], ['studi', 'accord', 'note', 'copi', 'fine'], ['morn', 'tweetheart', 'home', 'travel', 'state', 'amp', 'fair', 'day', 'inspir', 'readi', 'write', 'enjoy', 'coffe'], ['er', 'yea', 'doubli', 'awesom'], ['love', 'song', 'happi', 'monday'], ['yo', 'thoma', 'thank', 'follow', 'social', 'media', 'director', 'disney', 'awesom', 'would', 'like', 'learn', 'let', 'us', 'lunch'], ['school', 'bit', 'glad', 'jake', 'got', 'day'], ['great', 'nice', 'meet'], ['full', 'nice', 'dinner'], ['thank', 'concern', 'check', 'much', 'appreci'], ['def', 'anyon', 'leav', 'room', 'second', 'follow', 'realli', 'great', 'dog', 'otherwis', 'far'], ['happi', 'came', 'said', 'hi', 'nice', 'meet', 'inde', 'thank', 'much', 'come', 'talk'], ['concur', 'prioriti', 'today', 'list'], ['beauti', 'day', 'not', 'got', 'first', 'class'], ['yeeh', 'also', 'thing', 'drummer', 'basic', 'guy', 'play', 'instrument', 'sing', 'p'], ['hmm', 'mean', 'start', 'quot', 'follow', 'quot', 'oh', 'way'], ['hey', 'bought', 'porter', 'cabl', 'set', 'new', 'drill', 'led', 'light', 'near', 'trigger', 'oh', 'happi'], ['goodnight'], ['not', 'wait', 'prom', 'prom', 'parti', 'friday'], ['roll', 'arm', 'cuz', 'not', 'rememb', 'ever', 'fall', 'hard', 'dc'], ['start', 'internship', 'today', 'pretti', 'excit'], ['brooklyn', 'went', 'hard', 'back', 'top'], ['good', 'intent', 'hope', 'other', 'get', 'vibe'], ['jb', 'cute', 'lmfao'], ['mayb', 'pass', 'lay', 'make', 'swineflu', 'illeg', 'law', 'abid', 'citizen', 'not', 'get'], ['check', 'googl', 'analyt', 'alway', 'get', 'safari', 'kick', 'make', 'laugh'], ['listen', 'music', 'kostet', 'der', 'fisch', 'xd', 'mathsteach', 'choos', 'wrong', 'job', 'wrong', 'grammar', 'real', 'fact'], ['host', 'next', 'logi', 'laugh', 'bit', 'realli'], ['get', 'distract', 'would', 'like', 'thank', 'new', 'follow', 'take', 'troubl', 'follow', 'other', 'feelin', 'love'], ['florida', 'nice'], ['yea', 'say', 'someth', 'great', 'hear', 'ukrainian'], ['kid', 'love', 'dark', 'hair', 'say', 'dye', 'much', 'never', 'know', 'color', 'go', 'yea', 'hahahahaha'], ['work', 'tri', 'hard', 'not', 'succumb', 'quot', 'poor', 'quot', 'mental', 'due', 'sever', 'allergi', 'boo'], ['happi', 'birthday', 'ness'], ['meet', 'overr'], ['tataindicom', 'not', 'good', 'tataski', 'airtel', 'broadband', 'better'], ['haha', 'good', 'dream', 'haha', 'best', 'friend', 'forev', 'haha', 'sweet', 'presh', 'bailey', 'zd', 'b', 'p'], ['rain', 'cat', 'dog', 'mysor', 'thank'], ['lol', 'weekend', 'yea', 'right', 'text', 'goin', 'not', 'comput', 'bye', 'bye'], ['good', 'morn', 'pretti', 'outsid', 'today'], ['haha', 'trip', 'talk', 'harvard', 'read', 'aussi', 'automat', 'came', 'idiot'], ['good', 'plan', 'peg', 'plus', 'like', 'sound', 'quot', 'money', 'monday', 'quot'], ['oh', 'gosh', 'hope', 'fun'], ['would', 'love', 'work', 'tell', 'friend', 'follow'], ['hope', 'alright', 'final'], ['hey', 'wow', 'cheer', 'insight', 'peopl', 'look', 'fun', 'oh', 'aweoms', 'robluket', 'live', 'gt'], ['pretti', 'cool', 'kid', 'adult', 'fun'], ['wow', 'great', 'know', 'piec', 'softwar', 'ensur', 'time', 'project', 'deliveri', 'productnamingrulez'], ['good', 'morn'], ['thank', 'much', 'fantast', 'day'], ['wat', 'world', 'x', 'basketbal', 'game', 'best', 'shooter', 'team', 'not', 'know', 'shooter', 'exist', 'lol', 'understand', 'haha'], ['play', 'hooki', 'work', 'feel', 'good', 'go', 'go', 'get', 'hair', 'wonder', 'fitzsimmon'], ['listen', 'coz', 'remind', 'depress'], ['five', 'day', 'five', 'long', 'day', 'ahh'], ['yup', 'stay', 'end', 'excit'], ['hey', 'thing', 'weekend', 'love', 'ikea'], ['bank', 'holiday', 'rain', 'superb', 'great', 'excus', 'not', 'start', 'garden', 'jungl', 'back', 'hous', 'eat'], ['thank', 'need'], ['know', 'cowboy', 'hat', 'pic', 'made', 'smile', 'today', 'not', 'see', 'mani', 'japan'], ['done', 'noth', 'today', 'apart', 'moan', 'whing', 'moan'], ['lol', 'point', 'laugh'], ['welcom', 'finish', 'speech', 'type', 'written', 'note'], ['get', 'porn', 'one', 'mention', 'girl', 'seem', 'loss'], ['chillaxin', 'busi', 'bankholiday', 'hope', 'everbodi', 'gd', 'wkend', 'holiday', 'day', 'xx'], ['inde', 'made', 'life'], ['awesom'], ['definit', 'readi', 'actual', 'ahead', 'alreadi', 'sun', 'tan', 'beach', 'yesterday'], ['hate', 'endless', 'suppli', 'hot', 'water', 'put', 'water', 'heater', 'ago', 'ill', 'gone', 'xx'], ['want', 'final', 'found', 'want'], ['yeah', 'damn', 'time', 'film', 'slr', 'sit', 'quiet', 'ignor', 'time', 'step'], ['woot'], ['guess', 'potus', 'abl', 'dig', 'amp', 'folo', 'ss', 'nomin', 'good', 'pos'], ['woo', 'tour', 'start', 'yay', 'day', 'awesom', 'time', 'love', 'video', 'xd'], ['go', 'see', 'reemer', 'wednesdayi', 'kirsti', 'go', 'well', 'exit'], ['haha', 'yay', 'love', 'shane', 'dawson'], ['dougi', 'coffe', 'quot', 'quot', 'coffe', 'hahaha', 'name', 'come', 'predict', 'text', 'pretti', 'awesom'], ['woke', 'feel', 'good', 'sleep', 'monday'], ['thank', 'eric', 'glad', 'appreci'], ['yeahh', 'happi', 'pendant', 'hope', 'see', 'futur', 'fair', 'ps', 'good', 'mini', 'muffin'], ['make', 'sure', 'pick', 'chrisett', 'michel', 'new', 'album', 'epiphani', 'store', 'tomorrow', 'may', 'love', 'promis', 'congrat'], ['yaay', 'think', 'might', 'ace', 'histori', 'test', 'today'], ['hey', 'amaz', 'bamboozl', 'thank', 'stop', 'take', 'apictur', 'saturday', 'seem', 'like', 'rush', 'though'], ['not', 'say', 'met', 'awesomest', 'peopl', 'bunch'], ['inthebattl', 'realli', 'cute', 'one', 'favorit'], ['thank', 'total', 'bush', 'today', 'though', 'time', 'code'], ['alway', 'good', 'day', 'make', 'good', 'time', 'make', 'better', 'morn', 'greet', 'thank'], ['fort', 'belvoir', 'base', 'hub', 'station', 'pentagon', 'not', 'wait', 'pug', 'pup', 'loov', 'mine'], ['good', 'morn', 'rob'], ['unplug', 'rest', 'day', 'good', 'one', 'everybodi'], ['hiya', 'look'], ['would', 'love', 'work', 'tell', 'friend', 'follow'], ['anoth', 'manic', 'monday', 'wish', 'sunday', 'fun', 'day', 'happi', 'monday', 'twitterland'], ['write', 'cms', 'use', 'git', 'version', 'check', 'would', 'interest', 'work', 'someth', 'like'], ['goodmorn'], ['hope', 'everyon', 'great', 'weekend', 'today', 'import', 'meet', 'today'], ['thank', 'xx'], ['good', 'morn', 'raini', 'monday'], ['would', 'love', 'work', 'tell', 'friend', 'follow'], ['happi', 'anoop', 'day', 'monica'], ['whew', 'go', 'focus', 'famili', 'time', 'swim', 'suit', 'shop', 'rest', 'vacay', 'thank', 'kind', 'word'], ['congrat', 'tax', 'refund', 'alway', 'nice'], ['good', 'day'], ['great', 'glad', 'enjoy', 'hope', 'great', 'day'], ['know', 'germani', 'like', 'holland', 'well', 'use', 'shoppin'], ['miss', 'smile'], ['last', 'day', 'sign', 'gocincinnati', 'sign', 'group', 'go', 'awesom'], ['okay', 'awesom'], ['hahaha', 'snore'], ['thank', 'got', 'hold', 'someon', 'knew', 'last'], ['offic', 'til', 'around', 'today', 'good', 'day', 'bsc'], ['thank', 'prop'], ['coffe', 'hand', 'sun', 'shine', 'window', 'hope', 'everyon', 'great', 'monday', 'morn', 'far', 'monday', 'mr'], ['ilycecili', 'lt'], ['omg', 'funni'], ['drag', 'work', 'miss', 'fit', 'class', 'morn', 'need', 'one', 'weekend', 'day'], ['rot', 'away', 'desk', 'would', 'realli', 'thank', 'yl', 'made', 'day', 'best', 'support', 'system', 'ever'], ['feel', 'weak', 'tire', 'seat', 'front', 'pc', 'realli', 'need', 'studi', 'ha', 'long', 'quiz'], ['happi', 'anoop', 'day', 'monica'], ['everyon', 'must', 'watch', 'snowbal', 'danc', 'bird', 'amp', 'make', 'promis'], ['mayb', 'natur', 'abil', 'languag', 'envi'], ['alright', 'back', 'twitter', 'decompress', 'happi', 'monday', 'folk', 'good', 'word'], ['version', 'live', 'interact', 'ticket', 'planner', 'launch', 'cool'], ['hey', 'donna', 'love', 'see', 'twitter'], ['not', 'stay', 'til', 'almost', 'read', 'quot', 'rule', 'quot', 'good', 'book', 'total', 'worth', 'sleep', 'depriv'], ['phone', 'work', 'whack', 'well', 'good', 'morn', 'go', 'go', 'eat', 'breakfast', 'neil', 'school', 'start'], ['still', 'watchin', 'boston', 'legal', 'though', 'crack', 'scrub', 'earlier', 'good', 'guess', 'like', 'laugh'], ['thank', 'shoutout'], ['new', 'nick', 'name', 'arosh', 'like', 'like'], ['yess', 'got', 'twin', 'lock', 'welcom', 'twiin'], ['yaay', 'get', 'see', 'look', 'forward', 'cupcak', 'fun'], ['munderday', 'like'], ['pauli', 'walli', 'made', 'life', 'fuck', 'happi', 'hell', 'love', 'repli', 'back'], ['not', 'true', 'get', 'wors', 'burn', 'today', 'not', 'forget', 'sunscreen'], ['wohoo', 'go', 'see', 'eddi', 'izzard', 'decemb'], ['cross', 'finger', 'ya', 'amp', 'hey', 'side', 'town', 'welcom', 'lol'], ['uhh', 'not', 'yet', 'mayb', 'dm', 'inbox', 'slow', 'let', 'know', 'show'], ['supernatur', 'good', 'love'], ['realli', 'want', 'flawless', 'work'], ['cover', 'sneez', 'tissu', 'love', 'god', 'signific', 'increas', 'sinc', 'join', 'healthcar'], ['hehe', 'smile', 'still', 'got', 'make'], ['happi', 'come', 'fact', 'gray', 'raini', 'monday', 'not', 'bother', 'well', 'not', 'much'], ['head', 'hollywood', 'studio', 'today', 'manta', 'kraken', 'awesom', 'yesterday', 'feel', 'like', 'ride'], ['go', 'go', 'jumbo', 'cup', 'coffe', 'think', 'make', 'happi'], ['sound', 'good'], ['word', 'perfect', 'run', 'right'], ['one', 'final', 'two', 'go', 'wish', 'luck', 'great', 'effort'], ['hope', 'weekend', 'fabul', 'anyth', 'interest'], ['week', 'juli', 'flollop', 'perfect', 'describ', 'way', 'move', 'belli', 'hehe'], ['omg', 'saw', 'updat', 'nd', 'said', 'quot', 'david', 'archuleta', 'quot', 'lol', 'shoulda', 'david', 'lt', 'david', 'awsom'], ['leav', 'work', 'not', 'get', 'soon', 'enough', 'hope', 'everyon', 'great', 'day'], ['precious'], ['awesom', 'aww'], ['great', 'weekend', 'work', 'day', 'go', 'illinoi', 'thur', 'amp', 'fri', 'gig', 'john'], ['great', 'interview', 'video', 'favorit', 'youtub'], ['happi', 'star', 'war', 'day'], ['hug', 'back', 'also', 'look'], ['raini', 'monday', 'better', 'day', 'work', 'home', 'thank'], ['thank', 'could', 'not', 'find', 'way', 'around', 'itun', 'though', 'found', 'littl', 'app', 'call', 'switch', 'job', 'nice'], ['middl', 'irish', 'sea', 'absent', 'elk', 'brother', 'newcastl', 'come', 'love', 'newcastl'], ['bad', 'still'], ['come', 'myspace', 'yr', 'work', 'though', 'dnt', 'bother'], ['rise', 'shine', 'time', 'get', 'prettifid'], ['good', 'morn', 'peopl', 'great', 'day'], ['look', 'great', 'morn', 'alreadi'], ['heh', 'coincid', 'barnsley', 'fan', 'track'], ['got', 'told', 'got', 'good', 'chanc', 'gettin', 'job', 'excit', 'come', 'back', 'want'], ['oww', 'good', 'morn'], ['definit', 'come', 'hope', 'readi'], ['rain', 'outsid', 'motiv', 'sleep'], ['may', 'happi', 'star', 'war', 'day'], ['not', 'worri', 'bizarr', 'find'], ['thank', 'glad', 'like', 'flower', 'made', 'diamond'], ['nice', 'clean'], ['man', 'love', 'shelv', 'way', 'go', 'diy', 'diva'], ['oh', 'lot', 'put', 'desk', 'year', 'guess', 'done', 'would', 'ok', 'back', 'lol'], ['thank'], ['done', 'jack', 'green', 'today', 'good', 'killer', 'walk', 'west', 'hill', 'though', 'listen', 'peopl'], ['got', 'shower', 'sit', 'towel', 'hate', 'twitterberri', 'not', 'repli', 'tweet'], ['kiss', 'feet', 'peopl', 'kick', 'anyth', 'want', 'morn', 'everyon', 'hope', 'best', 'day', 'ever'], ['work', 'technolog', 'love', 'waz'], ['fun', 'twitpic', 'purpl', 'hair'], ['yahoo', 'great', 'alway', 'nice', 'hear', 'success', 'stori'], ['great', 'job'], ['hey', 'gio', 'beauti', 'brazilian', 'love', 'hahahaha', 'pleas', 'answer', 'xx'], ['sound', 'like', 'fun', 'lol', 'least', 'still', 'hair', 'right', 'weekend'], ['need', 'show', 'reel', 'nxt', 'start', 'appli', 'edit', 'job', 'rock', 'climb', 'tomo', 'hope'], ['wow', 'shabu', 'himym', 'realli', 'feel', 'comfort'], ['wow', 'sound', 'heaven', 'quick', 'drive', 'north', 'carolina', 'not', 'wait'], ['not', 'tryin', 'call', 'rememb', 'dad', 'alway', 'ass', 'late', 'never', 'got', 'troubl'], ['safe', 'trip', 'joshi', 'knock', 'dead', 'speech'], ['sound', 'like', 'muffler', 'bear', 'go', 'bad'], ['weekend', 'relax', 'one', 'cousin', 'place', 'watch', 'tv', 'seri', 'quot', 'tru', 'call', 'quot', 'realli', 'cool'], ['haha', 'actual', 'violat', 'someon', 'trademark', 'okay', 'yeah', 'went', 'bed'], ['hey', 'babe', 'noth', 'much', 'tryin', 'see', 'go', 'work', 'today', 'lol', 'look', 'like', 'load', 'not', 'bad'], ['also', 'happi', 'star', 'war', 'day'], ['great', 'friend', 'mine', 'let', 'know', 'play', 'next', 'come', 'along', 'whatev', 'like'], ['naw', 'min', 'bug', 'tank', 'would', 'stop', 'spawn', 'min', 'glad', 'get', 'keep'], ['person', 'good', 'noth'], ['yay', 'save', 'overcom', 'god'], ['good', 'day', 'girl', 'ill', 'call', 'later'], ['yep', 'ah', 'damn', 'not', 'want', 'leav', 'warm', 'doona', 'get', 'hot', 'guess', 'make'], ['watch', 'boy', 'stripe', 'pj', 'day', 'best', 'film', 'ever', 'seen'], ['delici', 'pav', 'bhaaji', 'fine', 'chop', 'onion', 'littl', 'dash', 'lemon', 'yummi'], ['ponder', 'lunch', 'shane', 'think', 'alreadi', 'hear', 'peopl', 'whine'], ['met', 'mother', 'best', 'show', 'ever'], ['thank', 'go', 'laker', 'game', 'tonight', 'sec', 'love', 'la'], ['ah', 'lol', 'okay', 'thank'], ['not', 'best', 'flick', 'sure', 'readi', 'quot', 'star', 'trek', 'quot'], ['well', 'hope', 'see', 'confer'], ['sound', 'cool', 'pay', 'even', 'better'], ['hi', 'thank', 'follow', 'much', 'long', 'time', 'sinc', 'last', 'chat'], ['glad', 'someon', 'slept', 'last', 'night', 'doggi', 'would', 'take', 'pictur', 'not', 'see', 'laptop'], ['thank', 'soo', 'much', 'bella'], ['awesom', 'pic', 'nice', 'way', 'start', 'week'], ['awe', 'thank', 'good', 'morn', 'aswel'], ['quot', 'paint', 'fingernail', 'oh', 'happen', 'paint', 'quot', 'marvel'], ['starbuck', 'love'], ['gettin', 'check', 'outta', 'school', 'sicck', 'goin', 'pick', 'jimbbo'], ['thank', 'bro'], ['omg', 'spit', 'drink', 'rip', 'hair', 'straighten'], ['dmed', 'login', 'detail', 'twitter', 'salvat', 'system', 'enjoy', 'let', 'know', 'think'], ['mayb', 'use', 'besid', 'without', 'ac', 'hot', 'sleep'], ['cours', 'realli', 'hope', 'would', 'real', 'twitter', 'page', 'would', 'soo', 'cool'], ['thought', 'would', 'win', 'bot', 'side'], ['hospit', 'today', 'shop', 'mom', 'love', 'much'], ['download', 'ton', 'stun', 'beauti', 'wallpap', 'go', 'look'], ['awesom', 'day', 'school'], ['enjoy', 'springsteen', 'see', 'glastonburi', 'june', 'give', 'us', 'report', 'get', 'back'], ['bud', 'kudo', 'hardcor', 'gym', 'train', 'great', 'lifechang', 'experi', 'keep'], ['nice', 'musli', 'bar'], ['yer', 'pleas', 'good', 'day'], ['pleasur', 'hey', 'play', 'go', 'away', 'nz', 'parti', 'back', 'lot', 'burn', 'brain'], ['deplurk', 'gah', 'need', 'concentr', 'jap', 'visit', 'site', 'time', 'heh'], ['fine', 'thank', 'not', 'long', 'till', 'excit'], ['happi', 'monday', 'everyon', 'love', 'new', 'arrang', 'famili', 'room'], ['okay', 'cool', 'hope', 'better', 'dream', 'last', 'week'], ['ahh', 'go', 'year', 'old', 'fact', 'good', 'old', 'radio', 'one', 'exam', 'tomorrow'], ['way', 'thank', 'gift', 'wear', 'shirt', 'dunker', 'appl', 'love', 'chicken', 'soup', 'need'], ['not', 'problem', 'sis', 'respect', 'due'], ['thank', 'tri', 'hope', 'bud', 'trillin', 'fest', 'would', 'honor', 'guest', 'hobnob'], ['got', 'ticket', 'go', 'dad', 'girlfriend', 'see', 'eric', 'clapton', 'steve', 'winwood', 'arc', 'angel', 'june', 'toyota', 'center', 'woo'], ['hong', 'kong', 'great', 'crazi', 'quot', 'english', 'name', 'quot', 'friend', 'work', 'quot', 'miss', 'chewbacca', 'leung', 'quot'], ['like', 'enjoy', 'photographi'], ['thank', 'jani'], ['ok', 'get', 'pink', 'stripey', 'one', 'subtl', 'bit', 'bore', 'floral', 'print', 'ok'], ['good', 'monday', 'morn', 'hope', 'everyon', 'week', 'success', 'start'], ['also', 'tri', 'get', 'hous', 'readi', 'sell', 'not', 'believ', 'much', 'crap'], ['least', 'larg', 'vocabulari', 'benefit', 'writer', 'hope', 'well', 'sister'], ['lol', 'spirit', 'haha'], ['go', 'ikea', 'roomi', 'shop', 'apart', 'ikea', 'like', 'top', 'ten', 'store', 'love'], ['interest', 'day', 'yesterday', 'wonder', 'today', 'crazi', 'hope', 'not', 'still', 'diggin', 'spartacus', 'aka'], ['watch', 'ryann', 'go', 'grand', 'day'], ['good', 'luck', 'final'], ['love', 'beauti', 'monday', 'morn'], ['heard', 'song', 'time', 'two'], ['sound', 'realli', 'brummi', 'lol', 'hate', 'look'], ['promis', 'post', 'new', 'mini', 'magic', 'villag', 'today', 'weather', 'perfect', 'see', 'preview'], ['hope', 'see', 'soon'], ['aeroplan', 'know', 'plato', 'one', 'favorit', 'wkp', 'song'], ['soo', 'readyy', 'summerr', 'babyy'], ['hi', 'x', 'websit', 'soo', 'cool', 'love', 'use', 'thank'], ['get', 'readi', 'colleg', 'good', 'sleep', 'raini', 'day', 'today', 'love'], ['thank'], ['ohay', 'clean', 'teeth'], ['need', 'break', 'need', 'kitkat', 'haha'], ['one', 'lane', 'stop', 'go', 'traffic', 'suckss', 'almost', 'wwork', 'thank', 'gay', 'miinnesota', 'road'], ['block', 'account', 'one', 'hate', 'sport', 'team', 'felt', 'realli', 'good'], ['thank', 'elanc', 'cours', 'not', 'mine'], ['well', 'good', 'morn', 'wonder', 'day', 'neighborhood', 'thank', 'follow', 'anoth', 'morn'], ['birthday', 'breakfast', 'chai', 'amp', 'appl', 'fritter'], ['good', 'morn', 'everyon'], ['noo', 'good', 'guy', 'better', 'x'], ['final', 'pick', 'handwrap', 'struggl', 'wrap', 'stronger', 'hand', 'defo', 'got', 'lot', 'sooner', 'though'], ['glad', 'like', 'quot', 'integr', 'one', 'product', 'moment'], ['wee', 'internet', 'back', 'home'], ['salt', 'vinegar', 'chees', 'onion', 'make', 'breath', 'smell', 'lol', 'xx'], ['man', 'suck', 'feel', 'pain', 'local', 'would', 'buy', 'cup', 'coffe'], ['mac', 'believ', 'not', 'regret'], ['funni', 'actual', 'could', 'use', 'grow', 'thru', 'august', 'woodstock', 'anniversari', 'yrs'], ['yeah', 'want', 'bottl', 'sanit', 'good', 'tast', 'like', 'choc', 'orang'], ['ahaha', 'stuck', 'head', 'thanxx'], ['haha', 'not', 'see', 'macbook', 'imac', 'pic', 'feel', 'extra', 'jealous', 'loll'], ['dude', 'safe', 'say', 'blown', 'away', 'heard', 'attic', 'make', 'sure', 'pass', 'much'], ['great', 'cover'], ['wow', 'beauti', 'pictur', 'want', 'let', 'know', 'bella'], ['bumper', 'sticker', 'quot', 'not', 'want', 'stand', 'troop', 'feel', 'free', 'stand', 'front', 'quot', 'thank', 'militari'], ['not'], ['feel', 'pretti', 'good', 'morn', 'let', 'us', 'hope', 'last', 'day'], ['death', 'cab', 'cuti', 'slouchi', 'baret', 'good', 'way', 'start', 'day'], ['listen', 'dave', 'barn', 'get', 'realli', 'excit', 'junior', 'senior'], ['live', 'quit', 'close', 'raf', 'boulmer', 'might', 'not', 'good', 'thing'], ['wow', 'good'], ['get', 'lol', 'time', 'eat', 'id', 'hate', 'late'], ['lol', 'good', 'luck', 'love', 'vid', 'ybwm'], ['wow', 'total', 'amaz', 'awesom'], ['may'], ['watch', 'friend', 'reduc', 'stress', 'insid', 'thank', 'bright', 'kauffman', 'crane', 'creat', 'seri', 'love', 'love', 'love'], ['good', 'morn'], ['hate', 'wake', 'earli', 'need', 'make', 'hrs', 'pharmaci', 'class', 'gt', 'sighh', 'news', 'breakfast', 'time'], ['sometim', 'take', 'solv', 'problem', 'fresh', 'morn', 'hope', 'today', 'beauti'], ['welcom', 'twitter', 'babe', 'know', 'tri', 'figur'], ['maiko', 'keyboard', 'birthday', 'today', 'good', 'boy', 'mayb', 'get', 'present'], ['eat', 'pancak', 'better', 'day'], ['happi', 'monday', 'hope', 'great', 'week'], ['good', 'morn'], ['feel', 'sorri', 'adam', 'cook', 'strong', 'david', 'famili'], ['thank', 'octob'], ['hope', 'nice', 'sleep'], ['work', 'five', 'year', 'old', 'go', 'keep', 'young'], ['not', 'say', 'have', 'jame', 'rs', 'yesterdayi', 'learn', 'quotess'], ['excit', 'see', 'samantha', 'amp', 'denis'], ['ohh', 'cute', 'fish', 'peac', 'daughter', 'look', 'focus'], ['thank', 'mandi', 'good', 'sister', 'may', 'true', 'unfortun', 'road', 'tire', 'not', 'say'], ['alway', 'get', 'realli', 'excit', 'kiss', 'ben', 'harper', 'come', 'begin'], ['would', 'nice'], ['haha', 'look', 'littl', 'like', 'charli', 'lol'], ['love', 'much', 'tay', 'amaz', 'lt', 'come', 'denmark', 'love'], ['forev', 'sinc', 'tweet', 'want', 'say', 'thati', 'love', 'bill', 'hope', 'ya', 'amaz', 'week'], ['thank', 'todd', 'enjoy', 'read', 'blog', 'littl', 'cheer', 'good', 'old', 'alfr', 'wallac', 'curious', 'read', 'book'], ['eat', 'not', 'exact', 'true', 'digest', 'todayisaprosper', 'amp', 'product', 'day', 'thankujesus', 'beyebless', 'hee', 'hee'], ['like', 'mean', 'like', 'left'], ['like', 'term', 'quot', 'today', 'list', 'quot', 'better', 'quot', 'list', 'quot'], ['thank', 'follow', 'back'], ['need', 'go', 'shop', 'bore', 'day', 'doo', 'colleg', 'fuckin', 'excitin', 'wish', 'twitter', 'simplifi', 'lt'], ['definit', 'network', 'neutral', 'may', 'interest'], ['kind', 'nice', 'break', 'not', 'matter', 'soon', 'grad', 'school'], ['know', 'go', 'sort'], ['sick', 'stay', 'home', 'levi', 'said'], ['yea', 'call', 'shallow', 'save', 'say', 'make', 'good', 'music'], ['time', 'seek', 'coffe', 'caffein', 'love', 'affair', 'mm', 'sweet'], ['omg', 'sun', 'glimps', 'cloud', 'woohoo'], ['download', 'movi', 'quot', 'ben', 'alien', 'forc', 'quot', 'cool', 'movi'], ['hey', 'dasit', 'thank', 'messag'], ['soo', 'jealous', 'good', 'way', 'cours', 'lc', 'awesom'], ['seen', 'like'], ['noth', 'wrong', 'quiet', 'day', 'give', 'time', 'listen'], ['would', 'not', 'chang', 'fan', 'world', 'honest', 'not', 'think', 'anyon', 'would', 'chang', 'mcfli', 'world', 'amaz', 'x'], ['beer', 'smoki', 'lucki', 'time', 'good', 'time', 'stuff'], ['happi', 'may', 'day', 'star', 'war', 'day'], ['love', 'ipod', 'shuffl', 'good', 'song', 'togeth'], ['omg', 'would', 'soo', 'make', 'dis', 'show', 'number', 'one', 'n', 'da', 'rate'], ['say', 'chees', 'camera', 'throw', 'western', 'mass', 'gang', 'sign', 'cool'], ['thank', 'hope', 'great', 'rest', 'day', 'afternoon', 'coffe', 'yet'], ['aww', 'coukd', 'send', 'phone', 'would', 'kind', 'flair', 'would', 'like'], ['may', 'happi', 'star', 'war', 'day', 'starwarsday', 'geek', 'dork', 'fb', 'awesom'], ['probabl', 'bed', 'time', 'hug', 'kiss', 'lt'], ['raini', 'georgia', 'wear', 'bright', 'color', 'hope', 'sun', 'come', 'doubt', 'go', 'work'], ['work', 'listen', 'music', 'test', 'new', 'tonight', 'let', 'us', 'hope', 'best'], ['thank', 'follow', 'nice', 'rest'], ['miss', 'fizzi', 'duck', 'love', 'hive', 'mind'], ['email', 'email', 'gave', 'thanx', 'awesom', 'person'], ['hope', 'fix', 'right'], ['workin', 'long', 'day', 'today', 'hope', 'make', 'good', 'tip'], ['tape', 'cox', 'pick', 'starbuck', 'offic', 'nice'], ['success', 'luca', 'first', 'polic', 'contact', 'neighborhood', 'cruis', 'egg', 'cream', 'bumf', 'shave', 'foam', 'love', 'son', 'hero'], ['excit', 'taylor', 'swift', 'wednesday'], ['mile', 'go', 'ok', 'radio', 'alwa', 'help'], ['hehe', 'almost', 'hear', 'right', 'ear', 'yet'], ['done', 'thank'], ['stay', 'home', 'badass'], ['laav'], ['feel', 'great'], ['thank'], ['got', 'confirm', 'ex', 'forward'], ['goodmorn'], ['omg', 'almost', 'done', 'last', 'block', 'quilt', 'hour', 'work', 'left', 'not', 'wait', 'meet', 'goal'], ['main', 'event', 'not', 'happen', 'yet', 'well', 'far'], ['whahahah', 'thank'], ['interest', 'combin', 'great', 'one'], ['everi', 'kiss', 'give', 'give', 'three'], ['time', 'school', 'feelin', 'good', 'jog', 'good'], ['someday', 'soon', 'get', 'one'], ['back', 'school', 'feel', 'like', 'go', 'great', 'day'], ['wish', 'joe', 'bidden', 'train'], ['alreadi', 'got', 'ticket', 'concert', 'philippin', 'excit'], ['today', 'mother', 'happi', 'birthday', 'amp', 'love', 'angel', 'help', 'much', 'time', 'life'], ['dawg', 'thank', 'much'], ['come', 'estonia', 'know', 'epic', 'hors', 'hehe', 'good', 'trainer', 'good', 'beach', 'ride'], ['go', 'school', 'actual', 'not', 'tire', 'today', 'though'], ['congratul', 'mileston', 'girl', 'almost', 'five', 'month', 'one', 'though', 'rock'], ['funni'], ['love', 'pour', 'rain', 'still', 'want', 'go'], ['watch', 'tini', 'nephew', 'perfect', 'babi'], ['great', 'hope', 'studi', 'bff', 'live', 'togeth', 'see'], ['sorri'], ['caladesi', 'definit', 'nice', 'peac', 'way', 'spend', 'sunday', 'got', 'lil', 'tan'], ['yes', 'pleas', 'check', 'posit', 'locat', 'map', 'ad'], ['think', 'relat', 'size', 'depend', 'structur', 'system', 'hard', 'relay', 'tweet', 'worth', 'question'], ['not', 'follow', 'dream', 'chase', 'richard', 'dumb', 'think', 'smart'], ['excit', 'week', 'tri', 'product', 'monday', 'tri', 'hard'], ['not', 'love', 'quot', 'buttefli', 'stomach', 'quot', 'feel', 'ano', 'man', 'yun', 'kaya', 'mo', 'yan'], ['thank'], ['hook', 'rian', 'van', 'staden', 'twitter', 'much', 'better', 'cook', 'may', 'concret', 'suggest'], ['wait', 'wind', 'hair', 'would', 'would', 'never', 'break', 'law', 'never'], ['thank', 'link', 'love', 'yesterday', 'way'], ['not', 'heard', 'anyth', 'negat', 'yet', 'former', 'manag', 'use', 'tell', 'quiet', 'happi'], ['could', 'use', 'tutori', 'amp', 'resourc', 'perfect', 'twitter', 'background', 'design'], ['hello', 'new', 'follow', 'haha', 'ya'], ['good', 'morn'], ['love', 'book', 'vw', 'turn', 'name', 'scout'], ['oh', 'bad', 'made', 'mistak', 'still', 'manag', 'pass', 'though', 'mayb', 'not', 'bad', 'think'], ['thank', 'teflon', 'liver', 'scottish', 'rais', 'whiski'], ['good', 'morn', 'rock', 'star', 'nurs'], ['success', 'defeat', 'swine', 'flue', 'power', 'posit', 'think', 'swineflu', 'swine', 'flu'], ['sure', 'would', 'make', 'koon', 'happi'], ['funni'], ['good', 'break', 'digit', 'yet'], ['amaz', 'concert', 'citi', 'everyth', 'realli', 'awesom', 'trip'], ['absolut', 'amaz', 'wolverin', 'soo', 'beauti', 'also', 'amaz', 'person', 'look'], ['love', 'new', 'avatar'], ['yum', 'mickeyd', 'eggmcmuffin', 'mcyum'], ['congrat', 'quot', 'mine', 'bird', 'quot', 'underdog', 'kick', 'crap', 'runner', 'yesterday', 'love', 'see', 'happen'], ['sure', 'hope'], ['stop', 'today', 'wish', 'luck', 'overload', 'first'], ['lol'], ['fun', 'friend', 'hous', 'cuz', 'know', 'not', 'yard', 'big', 'enough', 'firepit', 'sniffl'], ['oh', 'sure', 'thank'], ['aww', 'know', 'never', 'thank', 'count', 'love', 'ya', 'boo'], ['not', 'believ', 'alreadi', 'monday', 'weekend', 'went', 'soo', 'fast', 'keep', 'finger', 'cross'], ['bought', 'attic', 'eden', 'madina', 'lake', 'total', 'amaz'], ['haha', 'realis', 'sound', 'lot', 'like', 'stellaa', 'lol', 'anyhoo', 'got', 'facebook', 'messag', 'start', 'work', 'soon', 'hope'], ['movi', 'awesom', 'wish', 'could', 'pistol', 'like', 'agent', 'not', 'want', 'think', 'gambit'], ['funni', 'not', 'even', 'know'], ['turkey', 'leg', 'not', 'believ'], ['new', 'babi', 'excit', 'congrat', 'advanc'], ['yess', 'came', 'amsterdam', 'april', 'best', 'night', 'everr'], ['receiv', 'first', 'bit', 'spam', 'twitter', 'not', 'sure', 'feel', 'quot', 'sanctiti', 'quot', 'convers', 'taint'], ['get', 'readi', 'dayi', 'hope', 'work', 'goe', 'good'], ['fun', 'hon', 'ooh', 'look', 'poet'], ['woke', 'late', 'amp', 'tri', 'get', 'sh', 'done', 'work'], ['next', 'thing', 'tomorrow', 'morn', 'temperatur', 'check', 'go', 'routin', 'till', 'swine', 'flu', 'die', 'good', 'night', 'everyon'], ['style', 'might', 'work'], ['nerdi', 'found', 'star', 'war', 'day', 'today', 'love'], ['slam', 'spam', 'follow', 'today', 'attract', 'get', 'life', 'peopl'], ['go', 'great', 'product', 'week', 'feel', 'posit', 'think', 'key'], ['happi', 'star', 'war', 'day', 'unbeliev'], ['happi', 'judday'], ['good', 'morn', 'welcom', 'new', 'follow'], ['glad', 'know', 'ad', 'display', 'problem', 'due', 'firewal', 'config', 'yr', 'offic', 'phew'], ['oohh', 'go', 'need', 'get', 'soon', 'possibl', 'love'], ['ake', 'work', 'not', 'laze', 'home', 'sunni', 'bank', 'holiday'], ['bodi', 'ach', 'bare', 'worth', 'champ'], ['thank', 'nice', 'blog', 'post', 'howev', 'given', 'cred', 'sinc', 'done', 'least', 'half', 'work'], ['follow', 'ellen', 'oprah', 'honor'], ['morn', 'tweepl'], ['good', 'morn', 'twit', 'let', 'us', 'make', 'today', 'better', 'one', 'start', 'runnin'], ['serio', 'barroca', 'paraben', 'may'], ['yeah', 'know', 'hun', 'spammer', 'seem', 'move', 'fast', 'though', 'alreadi', 'two', 'first', 'minut', 'post', 'block'], ['thank'], ['excit', 'look', 'forward', 'pic', 'facebook', 'xx'], ['thank', 'laura'], ['gettin', 'readi', 'hit', 'mall', 'mom', 'amp', 'jayden', 'thing'], ['lurve'], ['true', 'discret', 'nice', 'also', 'help', 'far', 'not', 'turn'], ['detroit', 'week', 'not', 'horror', 'horror'], ['shope', 'till', 'drop', 'day'], ['thank', 'prove', 'point'], ['year', 'month', 'hoorah', 'not', 'wait'], ['problem', 'free', 'atleast', 'alreadi', 'said', 'person', 'truth'], ['domina', 'sun', 'girl', 'think', 'fit', 'better'], ['chees', 'onion', 'vinegar', 'tast', 'weird', 'crisp', 'england', 'got', 'load', 'weird', 'crisp', 'flavorus', 'lol', 'like', 'x'], ['sure', 'entir', 'blogrol', 'terribl', 'updat', 'could', 'motiv', 'updat', 'redo'], ['hi', 'godd', 'day', 'eweryon', 'reel', 'good', 'mood', 'day'], ['ikr', 'mom', 'got', 'birthday', 'year', 'ago', 'best'], ['morn', 'warner', 'soon', 'lot', 'go', 'school', 'work', 'hope', 'everyon', 'great', 'day'], ['get', 'readi', 'today', 'happi', 'awesom', 'day'], ['sure', 'mayor', 'brainard', 'thrill', 'hear', 'fan'], ['thank', 'much', 'retweet', 'x'], ['let', 'us', 'continu', 'product', 'today'], ['liam', 'peed', 'potti'], ['good', 'mix', 'develop', 'content', 'develop', 'provid', 'ventur', 'folk'], ['pop', 'cultur', 'beauti', 'also', 'not', 'pull', 'weed', 'wrong', 'promis', 'practic', 'yard', 'nervous'], ['thank'], ['silli'], ['go', 'show', 'amsterdam', 'not', 'wait'], ['littl', 'one', 'cast', 'take', 'beat', 'start', 'show', 'wear', 'tear', 'less', 'week', 'activ'], ['skip', 'school', 'like', 'cool', 'kid'], ['press', 'ignor', 'button'], ['thing', 'anybodi', 'cover', 'dave', 'haha', 'not', 'like', 'peopl', 'mess', 'perfect', 'music'], ['aah', 'see', 'prez', 'obama', 'hold', 'hand', 'wifey', 'soo', 'romant', 'even', 'white', 'hous'], ['cool', 'np', 'got', 'work', 'seri', 'design'], ['happi', 'birthday', 'corey'], ['wow', 'cool'], ['glad', 'happi'], ['shld', 'say', 'great', 'phone'], ['quaterfin', 'chariti', 'footbal', 'tournament', 'penalti', 'save', 'sent', 'us'], ['pleas', 'pleas', 'pleas', 'pleas', 'let', 'match', 'cancel', 'today', 'pleas'], ['dude', 'alway', 'think', 'thing', 'get', 'worst'], ['love', 'hot', 'weather', 'forecast', 'rest', 'week', 'summer', 'almost', 'heer'], ['good', 'morn', 'world', 'happi', 'star', 'war', 'day', 'may'], ['love', 'love', 'nice'], ['hey', 'morn', 'wussup', 'tell', 'wut', 'mind'], ['thank'], ['somehow', 'alarm', 'becam', 'hour', 'fast', 'came', 'realiz', 'leav', 'hous', 'feel', 'good', 'earli', 'start'], ['like'], ['done', 'photo', 'album', 'good', 'person', 'make', 'quit', 'privat', 'piti', 'ben', 'haha'], ['whoo', 'hoo', 'chuck', 'although', 'gloomi', 'today', 'much', 'better', 'day'], ['watch', 'show', 'miss', 'ellipit', 'love'], ['hey', 'bye', 'bye', 'fun', 'robluket', 'live', 'gt'], ['follow', 'congrat'], ['thank'], ['two', 'month', 'someth', 'kinf', 'prom', 'realli', 'excit', 'not', 'contact'], ['smooch', 'well', 'great', 'day'], ['oh', 'wow', 'realli', 'good', 'think', 'go', 'use', 'one', 'lol'], ['least', 'done'], ['hear', 'song', 'brighten', 'someon', 'day', 'alway', 'make', 'grin'], ['yeahh', 'got', 'plenti', 'great', 'fan', 'spain', 'come', 'play', 'gig'], ['well', 'use', 'tweet', 'push', 'make', 'go', 'shop', 'time', 'back', 'hope'], ['proud', 'love', 'carpent'], ['despit', 'rain', 'fantast', 'day'], ['damn', 'must', 'morrison'], ['thank'], ['wow', 'sleep', 'eye', 'open', 'amaz', 'lie'], ['hey', 'ladi', 'come', 'canada', 'fall', 'would', 'love', 'see', 'concert', 'time', 'time'], ['sinc', 'travel', 'quit', 'often', 'use', 'onlin', 'travel', 'site', 'would', 'love', 'feedback'], ['thank', 'follow'], ['thank', 'hope', 'good', 'one'], ['def', 'chees', 'onion', 'howev', 'back', 'state', 'month', 'find', 'bag', 'salt', 'amp', 'tast', 'great'], ['go', 'workout', 'swin', 'fun'], ['glad', 'hear', 'without', 'would', 'renam', 'show', 'quot', 'friend', 'quot'], ['great', 'weekend', 'good', 'mood', 'not', 'even', 'mind', 'work', 'morn'], ['hey', 'song', 'would', 'like', 'listen'], ['ok', 'tweet', 'use', 'simpli', 'say', 'quot', 'thank', 'quot', 'met', 'peopl', 'twitter'], ['haha', 'also', 'look', 'amaz', 'fun'], ['welcom', 'beauti', 'snow', 'leopard'], ['let', 'know', 'goe', 'babe', 'good', 'luck'], ['big', 'hug'], ['tranc', 'awesom', 'work', 'danc'], ['arch', 'draw', 'check', 'mvcc', 'cad', 'degre', 'look', 'good'], ['put', 'new', 'consult', 'work', 'week', 'good', 'feel', 'congrat', 'offer'], ['true', 'dirti', 'thought', 'lol', 'well', 'also', 'dude', 'huh', 'xoxo'], ['leav', 'facebook', 'alon', 'weekend', 'get', 'new', 'notif', 'whew'], ['amaz', 'heck', 'quot', 'internet', 'thing', 'quot'], ['leav', 'communiti', 'colleg', 'bang'], ['get', 'dms', 'ask', 'fell', 'past', 'day', 'sick', 'better', 'appreci', 'concern', 'game'], ['know', 'mean', 'littl', 'dog', 'sink', 'depress', 'want', 'move', 'someplac', 'tropic'], ['big', 'thank', 'melodi', 'got', 'love', 'vit'], ['might', 'enjoy', 'one'], ['thank', 'mascara', 'input', 'appreci'], ['oh', 'yeah', 'camera', 'clip', 'problem', 'void', 'complet', 'fix', 'yay', 'fiddl'], ['oh', 'nice', 'go'], ['welcom'], ['imagin', 'know', 'love', 'hear', 'novel', 'kind', 'awak', 'lol', 'continu', 'hope'], ['sure', 'continu', 'tweet', 'conf', 'call', 'worri', 'cat', 'bee'], ['let', 'us', 'get', 'rich', 'give', 'everyon', 'nice', 'sweater', 'teach', 'danc'], ['morn', 'workout', 'sesh', 'love', 'life'], ['gray', 'hat', 'python', 'book', 'remind', 'mani', 'secur', 'tool', 'python', 'version', 'specif', 'pain', 'need', 'use'], ['yeah', 'like', 'purpl', 'mayb', 'p'], ['happi', 'morn', 'sunshin', 'may', 'drive', 'window', 'sing', 'smile', 'not', 'wear', 'shoe', 'kirsten'], ['yay'], ['need', 'huge', 'favor', 'love', 'anticip', 'text'], ['splinter', 'look', 'heroic', 'save', 'pickl'], ['go', 'go', 'work', 'honey', 'today', 'excit'], ['think', 'new', 'oh', 'yes', 'way', 'bankrol', 'stay', 'bit', 'yesterday', 'not', 'whine', 'bad', 'beat'], ['like', 'last', 'part', 'methodolog'], ['cat', 'gone'], ['rest', 'import', 'like', 'everyth', 'els', 'not'], ['ha', 'ha', 'game', 'like', 'game'], ['hope', 'mani', 'new', 'follow', 'around', 'sydney', 'australia', 'welcom', 'tweet', 'anyway'], ['heyi', 'final', 'got', 'one', 'oh', 'good', 'luck', 'final', 'today'], ['yep', 'three', 'thing', 'good', 'haircut', 'abil', 'listen', 'valu', 'not', 'take', 'serious'], ['hear', 'barley', 'keep', 'follow', 'current', 'tuff', 'mobil', 'devic'], ['appli', 'part', 'time', 'job', 'lmao', 'hope', 'someon', 'need', 'help'], ['look', 'forward', 'short', 'work', 'week', 'follow', 'clemson'], ['thank'], ['intel', 'gfx', 'driver', 'situat', 'much', 'better', 'recent', 'upgrad', 'kernel', 'driver', 'git', 'suspend', 'work', 'fewer', 'mem', 'leak'], ['thankyou'], ['use', 'extern', 'track', 'ball', 'laptop', 'seem', 'excess', 'total', 'effici'], ['lol', 'good', 'know', 'time', 'la', 'time', 'differ', 'good', 'morn', 'ya'], ['love', 'watch', 'yt', 'video', 'realli', 'look', 'forward', 'see', 'collect', 'vid'], ['use', 'love', 'knew', 'would', 'quot', 'experi', 'quot', 'last', 'night'], ['thank', 'everyon', 'pray', 'presid', 'aquino'], ['riot'], ['nobobi', 'behind', 'think', 'lead', 'far'], ['good', 'morn', 'hope', 'everyon', 'well', 'monday', 'thank', 'followfriday', 'reco', 'bless'], ['world', 'amaz'], ['enjoy', 'nola', 'definit', 'one', 'favorit', 'citi', 'world', 'pleas', 'beignet', 'chocol'], ['thank', 'followfriday', 'recommend', 'actual', 'though'], ['realli', 'come', 'ireland', 'time', 'love', 'lt'], ['see', 'hannah', 'klein', 'lookin', 'good', 'today'], ['good', 'morn', 'everyon'], ['not', 'bore', 'realli', 'redd', 'convers', 'love', 'convers'], ['safe', 'flight'], ['yes', 'everybodi', 'love', 'german', 'fan', 'follow'], ['pub', 'lunch', 'go', 'daughter', 'tea', 'life', 'good'], ['would', 'realli', 'hard', 'give', 'chocol', 'read', 'chocol', 'count', 'food'], ['briliant', 'may', 'fourth', 'starwarsday', 'starwar'], ['love', 'comment', 'flashcad', 'old', 'school'], ['ad', 'minut', 'morn', 'sleep', 'cut', 'useless', 'today', 'show', 'feel', 'nice'], ['love', 'latest', 'journal', 'final', 'join', 'twitter', 'came', 'say', 'hi'], ['good', 'morn', 'swedish', 'friend', 'love', 'meat', 'ball', 'haha'], ['happi', 'star', 'war', 'day'], ['thrill', 'time', 'das', 'joyrid', 'roadtrip', 'nice', 'drive', 'pai', 'paulo'], ['thank', 'well', 'impress', 'much', 'better', 'last', 'one', 'must', 'b', 'clean', 'live', 'gluten', 'free', 'lactos', 'free', 'food'], ['honor'], ['inspir', 'blog', 'someth', 'inspir', 'haha'], ['beauti', 'morn', 'mountain'], ['hey', 'pretti', 'good', 'suck', 'daughter', 'exact', 'glad', 'see', 'not', 'alon', 'good', 'luck', 'mom'], ['goodmorn'], ['oh', 'not', 'seem', 'age', 'got', 'watch', 'soon', 'thank', 'remind'], ['made', 'day'], ['subway', 'go', 'get', 'subway', 'love', 'ate', 'often', 'new', 'zealand'], ['happiest', 'birthday', 'kat'], ['come', 'home', 'not', 'bore'], ['window', 'open', 'not', 'cold', 'ahahah'], ['not', 'know', 'yet', 'would', 'love', 'though', 'keep', 'miss', 'time', 'reason', 'amp', 'fun'], ['beati', 'eye', 'want'], ['hell', 'itun', 'music', 'librari', 'even', 'bipolar'], ['upload', 'photo', 'like', 'true'], ['glad', 'hear', 'good', 'bank', 'holiday', 'weather'], ['pilot', 'babi', 'burnin', 'not', 'stress', 'much', 'line', 'work'], ['not', 'worri', 'though', 'fine'], ['thank', 'rememb'], ['good', 'hope', 'wonder', 'experi'], ['kind', 'sleepi', 'late', 'text', 'nice', 'boy', 'make', 'date', 'plan', 'next', 'weekend'], ['agre', 'danc', 'dad', 'quot', 'kind', 'amp', 'generous', 'quot', 'wed', 'huge', 'fan'], ['definit', 'not', 'offend', 'mess', 'around', 'various', 'twitter', 'app', 'strang', 'thing', 'keep', 'happen'], ['back', 'aot', 'last', 'lec', 'alot', 'question', 'mark', 'head', 'thank', 'god', 'tip', 'abl', 'pull', 'tru'], ['thank', 'almost'], ['yes'], ['time', 'get', 'educ', 'hope', 'great', 'start', 'monday', 'morn'], ['lol', 'vat', 'insid'], ['go', 'girl', 'start', 'day', 'love'], ['ok', 'love', 'big', 'buff', 'tatto', 'prefer', 'christian', 'men', 'dog', 'option'], ['not', 'problem', 'love', 'idea', 'cours', 'photo', 'perfect'], ['man', 'great', 'sens', 'humour', 'venki', 'pachad'], ['etherr', 'main', 'preoccup', 'etherr', 'preoccup', 'humm', 'schizophren'], ['sound', 'pretti', 'sweet', 'must', 'love', 'yeah', 'man', 'sound', 'cool', 'keen'], ['heyheyheyi', 'happi', 'star', 'war', 'day', 'watcha', 'doin', 'friday', 'movi'], ['lt', 'ryan', 'babi', 'iloveyopu', 'xx', 'lt', 'day', 'kayleigh', 'babi', 'lymz', 'cntt', 'waiit'], ['yo', 'wake', 'ass', 'go', 'work', 'go', 'get', 'paper', 'not', 'sick', 'not', 'lie'], ['havin', 'fun', 'x', 'way', 'not', 'bowl', 'x', 'xx'], ['happi', 'star', 'war', 'dayi', 'hbd', 'uncl', 'lee'], ['omg', 'know', 'give', 'stroke', 'everytim', 'go', 'get', 'mad', 'quiet', 'window', 'roll'], ['school', 'blagh', 'yay', 'get', 'iphon', 'august'], ['amaz', 'jockey', 'saw', 'clydesdal', 'commerci'], ['great', 'found', 'star', 'war', 'day', 'quot', 'may', 'quot', 'hug', 'ewok', 'today'], ['good', 'morn', 'tweeti', 'today', 'rest', 'richmond', 'readi', 'hit', 'beach'], ['thank', 'like', 'said', 'facebook', 'made', 'awesom', 'happi', 'thank'], ['yes', 'hope', 'show', 'promot', 'clean', 'lol', 'bella'], ['new', 'implement', 'test', 'discoveri', 'unittest', 'time', 'loader', 'good', 'start', 'think'], ['chemistri', 'go', 'choos', 'english', 'find', 'chem', 'kind', 'bore', 'end', 'go', 'help', 'peopl', 'lt', 'choos', 'chem', 'gt'], ['shower', 'class', 'class', 'take', 'care', 'write', 'like', 'tomorrow'], ['well', 'hope', 'rest', 'day', 'get', 'better'], ['love', 'cute', 'texi', 'messag', 'especi', 'call', 'mandi'], ['not', 'believ', 'would', 'believ', 'horizon', 'chill', 'goe', 'spine', 'whenev', 'hear', 'line'], ['watch', 'quot', 'king', 'men', 'quot', 'pretti', 'good', 'far'], ['need', 'simpl'], ['morn', 'happi', 'judday'], ['good', 'atmo', 'decid', 'stay', 'til', 'close', 'funni'], ['well', 'impress', 'technic', 'skillz'], ['whoa', 'hahaha', 'wee', 'go', 'bit', 'watch', 'hugh', 'jackman', 'interview', 'oprah'], ['wish', 'could', 'come', 'hour', 'dream', 'meet', 'xoxo'], ['commish', 'day', 'atl', 'fam', 'saw', 'updat', 'websit', 'look', 'awesom'], ['hey', 'perez', 'good', 'luck', 'well', 'still', 'plan', 'big', 'present', 'given', 'mom', 'love', 'mom'], ['want', 'go', 'see', 'edinburgh', 'not', 'happen', 'though', 'haha', 'yir', 'lucki', 'funn', 'xx'], ['thank', 'know'], ['hahahah', 'cours', 'nasti', 'display', 'pictur'], ['thank', 'glad', 'like'], ['goodd', 'morn', 'tweet', 'week', 'three', 'workout', 'mention', 'got', 'new', 'glass', 'yesterday'], ['not', 'know', 'hyper', 'jump', 'everyher', 'ugh', 'let', 'us', 'let', 'friday', 'sweeney', 'todd', 'cinco', 'de', 'mayo', 'il', 'parti'], ['friend', 'someon', 'help', 'move', 'real', 'friend', 'someon', 'help', 'move', 'bodi'], ['least', 'top', 'magic', 'happen', 'today', 'good', 'day', 'worri'], ['great', 'thank', 'hun', 'thr', 'famili', 'thing', 'wknd', 'week', 'today', 'hit', 'usa', 'not', 'wait'], ['love', 'stereosound', 'hq', 'headphon'], ['feel', 'esp', 'know', 'not', 'done', 'wrong', 'lt'], ['cultur', 'day', 'love', 'tell', 'graf', 'cultur', 'studi'], ['haul', 'slideshow', 'fun'], ['whin', 'park', 'swing', 'victori', 'mine', 'right'], ['glad', 'hear', 'busi', 'day', 'today'], ['thank', 'realli', 'fun', 'love', 'though', 'one', 'could', 'use', 'comedi', 'go'], ['well', 'la', 'decent', 'weather', 'tell', 'happen', 'futur'], ['realli', 'awesom', 'love', 'work', 'buckhead', 'church', 'love', 'around'], ['man', 'monday', 'suck', 'would', 'not', 'give', 'rich', 'beach', 'bum', 'dive', 'tropic', 'lagoon', 'everi', 'day', 'eat', 'fresh', 'fruit'], ['good', 'morn', 'tweeter', 'happi', 'monday', 'grab', 'big', 'cup', 'coffe', 'new', 'week'], ['great', 'social', 'network', 'site', 'still', 'grow'], ['aw', 'thank', 'suppos', 'good', 'thing', 'sinc', 'mean', 'tweet'], ['amtarot', 'thank', 'much'], ['yeah', 'truee', 'not', 'wait', 'till', 'tour', 'dvd', 'come', 'tour', 'epic', 'backstag', 'materi', 'hilari'], ['thing', 'twitter', 'could', 'without', 'src', 'like', 'guy'], ['good', 'morn', 'scari', 'world'], ['love', 'find', 'lot', 'easier', 'content', 'spotifi', 'add', 'like'], ['welcom', 'ad', 'alreadi'], ['kewl', 'sound', 'good', 'wait', 'thank'], ['one', 'favorit', 'relax', 'song', 'wake', 'good', 'morn'], ['listen', 'miley', 'cyrus', 'breakout', 'cd', 'love'], ['lebron', 'mayb', 'mvp', 'year', 'like', 'laker', 'win', 'nba', 'titl'], ['love', 'agustin', 'happi', 'morn', 'mood'], ['scare'], ['thank', 'sankar', 'wish'], ['start', 'brinn', 'guess', 'get', 'laptop', 'back', 'not', 'use', 'messeng', 'hate'], ['work', 'ass', 'complet', 'happi'], ['cool', 'would', 'fantast'], ['john', 'lennon', 'poster', 'inner', 'fan', 'girl', 'danc', 'joy'], ['beardburk', 'optimist'], ['yes', 'repriev', 'one', 'paper', 'push', 'back', 'friday', 'leav', 'three', 'page', 'due', 'not', 'even', 'problem'], ['nail', 'webconcept', 'zone', 'award'], ['booziest', 'weekend', 'long', 'time', 'good', 'fun', 'though'], ['sure', 'hope', 'great', 'morn'], ['sql', 'queri', 'display', 'one', 'singl', 'deal', 'page', 'ozbargain', 'look', 'like', 'fun', 'optimis', 'bad', 'bad', 'drupal'], ['not', 'deal', 'tweet', 'lol'], ['not', 'work', 'drop', 'line', 'would', 'love', 'talk'], ['hey', 'thank', 'follow', 'wow', 'excit', 'new', 'tweet'], ['short', 'usual', 'awesom'], ['back', 'weekend', 'work', 'yard', 'not', 'open', 'laptop', 'thank'], ['thanx', 'showin', 'love'], ['right', 'not', 'worri'], ['thank'], ['today', 'got', 'pop', 'amp', 'lovess', 'itt', 'haha', 'x'], ['love', 'profil', 'websit', 'neat', 'love', 'quot', 'gari', 'quot', 'ticker'], ['ahh', 'meet', 'thank', 'reimer'], ['lol', 'feel', 'like', 'drunk', 'right'], ['found', 'rollo', 'got', 'happi', 'hmm', 'guess', 'realli', 'need', 'insert', 'back', 'matrix'], ['get', 'readi', 'launch', 'podcast', 'chapter', 'quot', 'turn', 'left', 'albuquerqu', 'quot', 'morn', 'know', 'excit'], ['kind', 'help', 'need', 'machin', 'embroideri', 'may', 'bea', 'abl', 'help'], ['doubt', 'go'], ['hit', 'fair', 'empti', 'shop', 'orlando', 'downtown', 'disney', 'later'], ['yu', 'want', 'kill'], ['would', 'fun', 'date'], ['thank', 'love'], ['great', 'day'], ['son', 'play', 'pitcher', 'catcher', 'beauti', 'weather', 'past', 'weekend', 'basebal', 'exhaust'], ['danc', 'pirouett', 'ballerina', 'hug', 'morn', 'awesom', 'brudder'], ['thank', 'made', 'morn'], ['would', 'not', 'miss', 'world', 'iccvb', 'meet', 'fun', 'begin'], ['congrat'], ['super', 'tire', 'probabl', 'could', 'sleep', 'day', 'work', 'today', 'tool', 'rental', 'oh', 'joy'], ['thank', 'merrier'], ['thank'], ['work', 'work', 'work', 'final', 'not', 'sick', 'though'], ['look', 'forward', 'spend', 'time', 'mom', 'today'], ['wow', 'awesom', 'review', 'carri', 'everywher', 'lamin', 'read', 'plain', 'cool'], ['discrimin', 'not', 'bad', 'thing', 'learn', 'say', 'children', 'would', 'say', 'master', 'year', 'ago'], ['poetic', 'beauti'], ['momma', 'day', 'may', 'not', 'forget', 'someth', 'nice', 'mommyy'], ['read', 'anoth', 'ecolog', 'book', 'two', 'hour', 'good', 'fun', 'today'], ['cake', 'sure', 'look', 'good', 'one', 'ok', 'umm', 'good', 'tks'], ['philli', 'not', 'play', 'yet', 'someth', 'pleas'], ['welcom', 'kiddo', 'pictur', 'way', 'love', 'shade'], ['happi', 'birthday', 'mommi'], ['awesom', 'run', 'report', 'see', 'bald', 'eagl', 'lighthous', 'hangout', 'last', 'ran', 'discoveri', 'park'], ['good', 'morn'], ['haha', 'love', 'way', 'put', 'quot', 'lift', 'feet', 'ground', 'spin', 'us', 'around', 'make', 'us', 'crazier', 'quot'], ['thank', 'ponytail', 'dreamt', 'last', 'night', 'shave', 'head', 'guess', 'bigger', 'deal', 'thought'], ['check', 'song', 'quot', 'time', 'lose', 'quot', 'enjoy', 'promis'], ['chillin', 'wassup', 'ayo', 'cali', 'day', 'start', 'not', 'know', 'r', 'gud', 'day', 'ya', 'digg'], ['thank', 'much', 'nice', 'happi', 'hear', 'voic', 'realli', 'start', 'someth', 'good', 'xo'], ['wish', 'somewher', 'els', 'besid', 'not', 'worri', 'not', 'dampen', 'day', 'neither', 'rain'], ['total', 'got', 'think', 'awesom'], ['happi', 'nurs', 'week', 'first', 'one', 'right'], ['move', 'today', 'excit'], ['yeah', 'better', 'ad', 'make', 'look', 'part', 'content', 'rather', 'blatant', 'advert'], ['proud', 'cevich', 'bellini', 'turn', 'well', 'love', 'smell', 'fresh', 'flower', 'hous'], ['yes', 'not', 'wait', 'hope', 'vip', 'pass', 'help', 'sinc', 'peopl', 'alreadi', 'campin', 'hahah'], ['not', 'good', 'day', 'cheer', 'tweet', 'even', 'tink', 'lol'], ['cn', 'gt', 'twit', 'frm', 'pls', 'hva', 'shw'], ['aww', 'snaap', 'jimmaayi', 'man', 'hookup', 'bad', 'far', 'away'], ['kid', 'not', 'eat', 'salad', 'get', 'crisp', 'salad', 'mr', 'make', 'bloodi'], ['soo', 'love', 'beyonc', 'song', 'quot', 'smash', 'quot'], ['hilari', 'act', 'say', 'littl', 'quot', 'gum', 'quot', 'gross', 'hub', 'say', 'torment'], ['mm', 'wasabi', 'coat', 'peanut', 'burn', 'good'], ['realli', 'feel', 'special'], ['um', 'happi', 'star', 'war', 'day', 'way', 'cheer', 'scruffi', 'look', 'nerfherd', 'hot', 'ami'], ['thank', 'everybodi', 'wonder', 'feedback', 'happilett'], ['happi', 'star', 'war', 'day', 'everyon', 'may', 'forc', 'padawan', 'jedi'], ['welcom', 'hun', 'amaz', 'peopl', 'make', 'sure', 'say', 'hello'], ['evid', 'convict', 'absolut', 'hilari', 'make', 'day', 'everi', 'time'], ['love', 'jeff', 'lynn', 'enjoy', 'sitar', 'work', 'kind', 'weird'], ['call', 'later', 'tell', 'weekend', 'easier', 'phone'], ['depend', 'goal', 'amp', 'much', 'want', 'spend', 'cannondal', 'special', 'cervelo', 'good', 'brand'], ['f', 'kin', 'great', 'day', 'graham', 'not'], ['serious', 'guy', 'kick', 'monday', 'starwarswithaddedp', 'spam', 'realli'], ['silli'], ['seat', 'nice', 'place', 'go'], ['haiszt', 'offic', 'noth', 'tweet', 'haha', 'fun'], ['not', 'wait', 'home', 'snuggl', 'puppi', 'fianc'], ['happi', 'keve', 'earli', 'mother', 'day', 'let', 'us', 'quiet', 'drove', 'night', 'sleep'], ['goosh', 'someon', 'pay', 'lastfm', 'subscript'], ['listen', 'quot', 'la', 'la', 'land', 'quot', 'love'], ['whoo', 'hoo', 'congrat', 'get'], ['okay', 'yesterday', 'good', 'went', 'food', 'shop', 'cook', 'chicken', 'taco', 'bake', 'cooki', 'back', 'work'], ['mani', 'spent', 'good', 'hour', 'organ'], ['also', 'travel', 'backpack', 'hope', 'enjoy', 'pic', 'amp', 'video'], ['finish', 'first', 'workout', 'jillian', 'michael', 'make', 'cut', 'program', 'feel', 'great', 'hope', 'eat', 'good'], ['make', 'sure', 'practic', 'hoop', 'today'], ['appl', 'done', 'impress', 'thing', 'almost', 'year', 'old', 'macbook', 'except', 'pour', 'coffe', 'keyboard'], ['not', 'excus', 'night', 'shift', 'got', 'orphan', 'lamb', 'local', 'farmer', 'cheat'], ['thank', 'yes', 'sudden', 'downpour', 'seem', 'rather', 'freakish', 'realli', 'end', 'summer', 'philippin'], ['aww', 'sorri', 'hear', 'bad', 'time', 'rememb', 'shall', 'pass'], ['pick', 'copi', 'print', 'brochur', 'bwrc', 'excit'], ['amaz', 'dvds', 'put', 'netflix', 'list', 'base', 'trash', 'potenti', 'inher', 'titl'], ['happi', 'star', 'war', 'day', 'week'], ['wake', 'go', 'great', 'day', 'today', 'see', 'not', 'sore', 'run', 'yesterday'], ['mayb', 'get', 'coffe', 'machin', 'new', 'desk', 'seem', 'appropri'], ['cherri', 'italian', 'ice', 'fave', 'want', 'get', 'local', 'rita', 'twitter', 'send', 'daili', 'flavor'], ['haha', 'may', 'hehe', 'might', 'import', 'love', 'heat', 'love', 'play', 'footbal', 'hot', 'day'], ['great', 'idea'], ['nobodi', 'better', 'not', 'even', 'half', 'good'], ['goe', 'first', 'twitter', 'twitterberri', 'applic', 'blackberri', 'bold', 'cheer', 'long', 'live', 'smr'], ['like'], ['soo', 'scari', 'care', 'one', 'kirsti'], ['good', 'thank', 'sorri', 'lil', 'busi', 'moment'], ['yeah', 'plan', 'actual', 'got', 'kinokuniya', 'discount', 'card', 'go', 'splurg', 'worri', 'overwhelm'], ['definit', 'senior', 'go', 'chem', 'ii', 'calculus', 'not', 'good', 'class', 'feel', 'like', 'slackin'], ['got', 'jagk', 'shirt', 'mail', 'omg', 'love', 'see', 'saturday'], ['fuck', 'awesom', 'bookmark'], ['enjoy', 'night', 'folk'], ['go', 'beauti', 'day'], ['grandbabi', 'today', 'month', 'old', 'twin', 'month', 'infant', 'love', 'everi', 'minut'], ['ahh', 'yay', 'go', 'get'], ['kwl', 'nm', 'msn', 'nd', 'homework', 'went', 'c', 'hanna', 'montana', 'hte', 'movi', 'yesterday', 'xx', 'happi', 'mayday', 'way', 'xx'], ['thank', 'way', 'wonder', 'check', 'quot', 'fuel', 'quot', 'brand'], ['thank', 'nick', 'mean', 'lot', 'come', 'design', 'calib', 'symphonycm'], ['discov', 'numpi', 'array', 'hold', 'valu', 'type', 'use', 'manipul', 'array', 'number', 'uncertainti'], ['lamb', 'meet', 'fun', 'sunni', 'yay', 'play', 'hors', 'afternoon', 'clap', 'clap', 'clap'], ['oh', 'rain', 'haat', 'great', 'violin', 'lesson', 'lt'], ['start', 'alreadi', 'see', 'far', 'biggest', 'talker', 'er', 'mean', 'tweeter'], ['thank', 'funni', 'true'], ['great', 'mood', 'todayi', 'super', 'excit', 'game', 'tonight', 'not', 'excit', 'one', 'year', 'older', 'tomorrow'], ['umm', 'comment', 'like', 'p', 'quot', 'not', 'like', 'quot'], ['nice', 'yo', 'live', 'buddi'], ['yes', 'realli', 'back', 'could', 'not', 'wait', 'day', 'arriv', 'final', 'gale', 'back', 'pos'], ['tonight', 'northland', 'newscent', 'kick', 'week', 'long', 'look', 'great', 'summer', 'getaway', 'northland', 'not', 'miss'], ['whuahahhaha', 'need', 'cut', 'bram'], ['good', 'mornin', 'today', 'end', 'earli', 'woo', 'go', 'work', 'rick', 'surpris', 'project', 'due', 'tuesday'], ['love', 'half', 'even', 'day', 'orch', 'jazz', 'band', 'daddi'], ['wish', 'happi', 'monday', 'wonder', 'start', 'week', 'make', 'good', 'one'], ['good', 'attitud'], ['good', 'day', 'lake', 'mirror', 'kid', 'happi', 'get', 'clean', 'cabin', 'today', 'err', 'two', 'outta', 'three', 'not', 'bad'], ['glad', 'got', 'laugh'], ['thank', 'new', 'first', 'time', 'japa', 'dog', 'custom', 'twitter', 'spread', 'word', 'like', 'new', 'custom'], ['well', 'good', 'took', 'exam', 'think', 'good'], ['ohh', 'realli', 'want', 'see', 'coralin', 'seem', 'realli', 'good'], ['son', 'back', 'school', 'today', 'feel', 'much', 'better', 'not', 'not', 'stop', 'eat'], ['hi', 'everyon', 'hope', 'good', 'week'], ['play', 'eclectr', 'festiv', 'custard', 'factori', 'last', 'night', 'unreal', 'atmo', 'right', 'till', 'end', 'glad', 'play', 'last', 'set'], ['cheer', 'look', 'later', 'hope', 'get', 'sort'], ['love', 'thi', 'self', 'keep', 'simpl', 'learn', 'tai', 'chi', 'aim', 'today', 'beat', 'ankl', 'less', 'swollen', 'negoti', 'vacat'], ['day', 'new', 'begin'], ['ta', 'much', 'happi'], ['work', 'vacat', 'thailand', 'get', 'excit', 'everi', 'day'], ['good', 'luck', 'tonight', 'fun'], ['not', 'wait', 'defin', 'go', 'amaz', 'lt', 'michell'], ['littl', 'bit', 'good', 'news'], ['hi', 'susan', 'read', 'blog', 'realli', 'good', 'look', 'forward', 'tweet', 'updat'], ['obvious', 'not', 'bad'], ['case', 'one', 'gave', 'head', 'amp', 'put', 'iphon', 'app', 'account', 'manag', 'mywireless', 'would', 'love', 'see', 'review'], ['virus', 'hunt', 'comput', 'alway', 'wonder', 'destroy'], ['rain', 'make', 'good', 'studi', 'day', 'almost', 'done'], ['come', 'back', 'hors', 'ride', 'brilliant', 'day'], ['noth', 'sweeter'], ['relief', 'feel', 'better', 'know', 'hereditari', 'fun'], ['nice', 'meet', 'best', 'bring', 'along'], ['look', 'forward', 'new', 'album'], ['feel', 'realli', 'good', 'perform', 'ap', 'govern', 'amp', 'polit', 'exam', 'morn', 'go', 'lunch', 'krista'], ['weekend', 'start', 'quot', 'healthi', 'lifeestyl', 'quot', 'not', 'diet', 'let', 'us', 'see', 'goe', 'keep', 'ya', 'post', 'progress'], ['nice'], ['morn', 'hope', 'super'], ['need', 'get', 'intel', 'base', 'mac', 'impact', 'dual', 'core', 'vs', 'quad', 'choic', 'latter', 'probabl', 'better', 'virtual'], ['maddi', 'start', 'work', 'watch', 'world'], ['spell', 'name', 'alyson', 'ali', 'short', 'spell', 'best'], ['shanghai', 'also', 'realli', 'excit', 'precis', 'skyscrap', 'galor', 'good', 'tweep', 'china', 'sh', 'bj'], ['atm', 'oh', 'yeah', 'appl', 'juic', 'rebel'], ['haha', 'like', 'modern', 'studi', 'favourit', 'subject', 'haha', 'guess', 'not', 'feel', 'xx'], ['though', 'sound', 'bit', 'not', 'boiler'], ['ten', 'minut', 'shop', 'demi', 'around', 'demi', 'enemi', 'line', 'seen', 'titan', 'trailer', 'realli', 'good'], ['happi', 'star', 'war', 'day', 'may'], ['good', 'luck', 'final'], ['say', 'happi', 'mother', 'day', 'mom'], ['yikeyss', 'harmless', 'realli', 'want', 'attent', 'brodi'], ['aww', 'glad', 'know', 'littl', 'sweet', 'leigh', 'updat', 'howi'], ['haha', 'excit', 'wat', 'look', 'like'], ['honest', 'hate', 'said', 'peopl', 'sometim', 'sorri', 'makin', 'ass', 'anyon'], ['aww', 'thank'], ['think', 'sg', 'wonder'], ['watch', 'african', 'music', 'show', 'tele', 'love', 'itt'], ['seen', 'quot', 'fifth', 'element', 'quot', 'make', 'quot', 'super', 'green', 'quot', 'lot', 'funnier'], ['excel', 'chiang', 'mai', 'definit', 'possibl', 'next', 'vacat', 'stop', 'thank', 'info'], ['crazi', 'gone'], ['well', 'would', 'seem', 'enter', 'nine', 'individu', 'without', 'ein', 'accord', 'appl', 'hurray'], ['believ', 'creativ', 'cook', 'limit', 'imagin', 'guess', 'appli', 'thing', 'like', 'photographi'], ['aliv', 'go', 'make', 'cri', 'stuff'], ['haha', 'bore', 'think', 'go', 'watch', 'movi', 'bbl'], ['saw', 'yesterday', 'pretti', 'good'], ['think', 'time', 'bed', 'good', 'night', 'twitt'], ['well', 'feed', 'other', 'main', 'shade', 'love', 'nativ', 'wildflow'], ['good', 'know', 'bet', 'look', 'like'], ['know', 'would', 'love', 'see', 'lie', 'editor', 'believ', 'writer', 'justsayin'], ['miss', 'not', 'far'], ['zapato', 'trashcan', 'nacho', 'epic', 'night'], ['well', 'know', 'quot', 'kind', 'guy', 'quot', 'idiot'], ['love', 'great', 'job'], ['aww', 'wonder', 'get', 'marri', 'shawna', 'damon', 'cute'], ['mother', 'day', 'classic', 'went', 'realli', 'well', 'despit', 'cold', 'start'], ['thank'], ['dammit', 'guess', 'babi', 'daddi', 'impostor', 'kid', 'kid'], ['welcom', 'love', 'review', 'free', 'app', 'much'], ['got', 'home', 'dinner', 'realli', 'realli', 'full', 'mom', 'said', 'dad', 'bought', 'soni', 'holyy'], ['great', 'song'], ['compiment', 'glad', 'good', 'time'], ['yes', 'win'], ['high', 'amus', 'not', 'treat', 'nice', 'like', 'fault', 'life', 'better'], ['laugh', 'like', 'win'], ['go', 'take', 'good', 'care', 'littl', 'babi', 'go', 'strong', 'boy', 'sure'], ['look', 'class', 'water', 'splash', 'look', 'real', 'look', 'forward', 'review', 'copi'], ['aww', 'ya', 'not', 'show', 'us', 'mum', 'proud', 'kid', 'let', 'everyon', 'know'], ['make', 'perfect', 'sens', 'guess', 'earth', 'thank', 'repli'], ['mere', 'fact', 'twitter', 'someon', 'read', 'matter', 'love', 'song', 'graviti'], ['alway', 'good', 'idea'], ['love', 'would', 'never', 'thought', 'icar', 'version', 'beani', 'babi', 'xd'], ['kind', 'noth', 'life', 'bore', 'feel', 'like', 'chang', 'look', 'let', 'us', 'go', 'shop', 'tomorrow'], ['get', 'right', 'think', 'obsess', 'hyde', 'voic', 'chosen', 'guitar', 'song', 'learn', 'summer', 'time', 'perfect', 'pick'], ['not', 'wait', 'daughtri', 'new', 'album', 'ack', 'two', 'month'], ['thank', 'much', 'everyon', 'came', 'speakeasi', 'last', 'night', 'hit', 'wonder', 'see', 'fun', 'june', 'awesom'], ['work', 'day', 'monday', 'tri', 'rememb', 'email', 'smart', 'remind'], ['time', 'get', 'purrtti', 'wink'], ['aaww', 'good', 'know', 'glad', 'jame', 'great', 'love', 'guy', 'kiss', 'venezuela'], ['well', 'suck', 'except', 'compani', 'go', 'kelli'], ['success', 'anoth', 'paper', 'demolish', 'rock', 'god', 'live', 'go', 'yes', 'celebr', 'awesom'], ['next', 'mother', 'day', 'favorit', 'day', 'year', 'one', 'day', 'not', 'feel', 'guilti', 'slack', 'littl', 'aahh'], ['tip', 'today', 'eagl', 'special', 'bronco', 'put', 'hous'], ['wow', 'fanci'], ['decid', 'myspace', 'wayi', 'better'], ['get', 'show', 'hotspot', 'not', 'kno', 'come', 'shoppin', 'lol'], ['hope', 'shatner', 'address', 'messag', 'philosoph', 'doom', 'stop', 'think'], ['thank'], ['watch', 'cav', 'game', 'lebron', 'jame', 'newest', 'love', 'pts', 'cav', 'lebron'], ['visual', 'smile', 'see'], ['color', 'thing', 'seen', 'day', 'wow'], ['photo', 'like', 'da', 'cooloorss', 'composit', 'great', 'scribkin'], ['get', 'work', 'day', 'hope', 'everyon', 'wonder', 'mother', 'day', 'tomorrow', 'hope', 'enjoy', 'cheesecak'], ['yes', 'youtub', 'may', 'made', 'feel', 'better', 'halari'], ['got', 'nap', 'relax', 'night'], ['well', 'thank', 'pleasur', 'shop', 'see', 'first', 'pic'], ['bought', 'good', 'chocol', 'magazin', 'later', 'play', 'comanch', 'good', 'saturday'], ['yeah', 'part', 'lab', 'part', 'spaniel', 'energi', 'hehe', 'love', 'death'], ['twitter', 'fam', 'hop', 'back', 'aim', 'went', 'ghost', 'lolz', 'sowwi'], ['boy', 'graduat', 'proud'], ['noth', 'good', 'tonight', 'anyway', 'sigjean'], ['went', 'shop', 'lil', 'deserv', 'night', 'town', 'big', 'citi', 'norfolk'], ['wish', 'see', 'clip', 'show', 'host', 'hotti', 'shawn', 'yes', 'still', 'hotti'], ['save', 'pix', 'today', 'show', 'pleas', 'credit', 'thank'], ['happi', 'earli', 'mother', 'day'], ['ha', 'ha', 'ha', 'know', 'love', 'love'], ['sometim', 'feel', 'pathet', 'go', 'bed', 'earli', 'oh', 'well', 'total', 'get', 'clam', 'chowder', 'tomorrow'], ['enjoy', 'view', 'sg', 'flyer'], ['ok', 'shop', 'far', 'fun', 'unpack', 'bag'], ['gooni', 'project', 'garag', 'door', 'friend', 'amaz'], ['world', 'happiest', 'place', 'denmark', 'finland', 'netherland'], ['happi', 'guy', 'congratul'], ['went', 'bought', 'conquer', 'came', 'back', 'delici', 'custard', 'croissant'], ['saw', 'hannah', 'montana', 'movi', 'today', 'best', 'awesome', 'hannah', 'miley', 'rock', 'lol'], ['awesom', 'glad', 'like', 'fyi', 'platinum', 'note', 'free', 'upgrad', 'summer'], ['dora', 'explor', 'greet', 'niec'], ['bbq', 'yum', 'full'], ['love', 'video', 'inspir', 'lesli', 'not', 'wait', 'new', 'album', 'still', 'rock', 'debut'], ['ok'], ['complet', 'forgot', 'mothersday', 'today', 'lol', 'happi', 'mothersday', 'beauti', 'mum'], ['glad', 'hear', 'made', 'hear', 'place', 'use', 'countri', 'look', 'forward', 'arriv'], ['nice', 'tweet'], ['sound', 'like', 'backstag', 'pass'], ['wow', 'look', 'incred', 'wick', 'job', 'butterfli', 'fantast'], ['pool', 'alcohol', 'amp', 'cute', 'band', 'could', 'not', 'ask', 'saturday', 'night', 'fb'], ['new', 'cd', 'love'], ['surpris', 'parti', 'today', 'parti', 'tomorrow', 'funfunfun', 'need', 'finish', 'bug', 'project'], ['happi', 'birthday', 'keshia', 'keshia', 'bo', 'beshia'], ['wow', 'noth', 'like', 'sale', 'perk', 'girl', 'even', 'huh'], ['aww', 'congrat', 'famili', 'send', 'picci', 'email'], ['thank'], ['first', 'session', 'yay'], ['hehe', 'hell', 'fix', 'qet', 'drankin', 'damnit'], ['whaat', 'thas', 'hot', 'b', 'super', 'nice'], ['omg', 'work'], ['omg', 'realli', 'good', 'want', 'see', 'photo', 'nice', 'day'], ['aww', 'cute', 'like', 'song', 'lot'], ['got', 'back', 'babi', 'sit', 'went', 'well'], ['recov', 'crazi', 'famili', 'love', 'not', 'got', 'see', 'coupl', 'time', 'year', 'guess', 'deal'], ['cook', 'breakfast', 'mom', 'happi'], ['not', 'lot', 'bore', 'name', 'crissi', 'way', 'lol', 'doinn'], ['amaz'], ['abl', 'watch', 'onlin', 'hope', 'yeah', 'belinda', 'jensen', 'realli', 'good'], ['congrat', 'bike', 'ride', 'today', 'impress', 'inde', 'ya', 'might', 'quot', 'tour', 'de', 'franc', 'quot', 'day'], ['hubbi', 'vet', 'anim', 'like', 'children', 'best', 'hope', 'biz', 'go', 'well'], ['yay', 'ear', 'match'], ['love', 'mom'], ['fuckin', 'awesom', 'super', 'sexi', 'stud', 'muffin', 'beast', 'sound'], ['hope', 'guy', 'fun', 'not', 'wait', 'ya', 'back', 'wilmi', 'not', 'without'], ['thank', 'pretti', 'ladi'], ['va', 'weekend', 'youngest', 'son', 'turn', 'make', 'kind', 'sad', 'get', 'big', 'check', 'twipic'], ['feel', 'better', 'someth', 'tummi'], ['son', 'wtf', 'bit', 'hole', 'damn', 'bread', 'god', 'forsaken'], ['make', 'happi', 'hear', 'girl', 'talk', 'tweet', 'nba', 'could', 'give', 'nugget', 'love'], ['hug', 'not', 'sad', 'realli', 'mess'], ['came', 'back', 'hang', 'friend', 'cocktail', 'lt', 'not', 'drunk', 'feel', 'good', 'hope', 'everyon', 'well'], ['love', 'cairn', 'clan'], ['pad', 'thai', 'favourit'], ['relax', 'busi', 'week', 'tedious', 'saturday'], ['lay', 'bed', 'boredd', 'look', 'old', 'cookbook', 'new', 'recip'], ['maxin', 'relaxin', 'ahh'], ['yr', 'young', 'look', 'dude'], ['hope', 'speedi', 'recoveri'], ['definit', 'readi', 'plate', 'pancak'], ['amp', 'kelli', 'share', 'last', 'name', 'would', 'not', 'sweet', 'relat'], ['realli', 'good', 'mood', 'absolut', 'reason', 'tee'], ['happi', 'mother', 'day', 'mother'], ['gasp', 'follow', 'feel', 'almost', 'famous', 'use', 'think', 'would', 'famous', 'grew', 'one', 'day', 'lol', 'oh', 'well', 'cheer', 'norm', 'peep'], ['oh', 'wow', 'thank', 'wayn'], ['wonder', 'put', 'bet', 'cub', 'win', 'world', 'seri', 'due', 'bttf', 'ii', 'would', 'love', 'actual', 'happen', 'geek'], ['nice', 'pre', 'mother', 'day', 'dinner', 'cocktail', 'retir', 'even'], ['thanx', 'love'], ['better', 'not', 'get', 'need', 'fix'], ['reward', 'dinner', 'american', 'dream', 'pizza', 'rooftop', 'terrac', 'perfect', 'got', 'page', 'done', 'prospectus'], ['yeah', 'check', 'pretti', 'nice', 'site'], ['pretti', 'girl', 'must', 'love', 'whole', 'lot', 'happi', 'birthday'], ['happi', 'mother', 'day', 'mommi'], ['look', 'old', 'myspac', 'status', 'oh', 'mann', 'skyrocket', 'flight', 'afternoon', 'delight', 'aafternoon', 'delight'], ['needless', 'say', 'not', 'stay', 'find'], ['aw', 'shit', 'thank', 'much', 'twitter', 'love', 'appreci', 'everi', 'last', 'drop'], ['love', 'stori', 'loop', 'past', 'minut', 'love', 'song', 'make', 'happi', 'like'], ['glad', 'see', 'red', 'bull', 'air', 'racer', 'keep', 'us', 'loop'], ['lol', 'thank'], ['thank', 'follow', 'good', 'caus'], ['agre'], ['happi', 'birthday'], ['thank', 'answer', 'wonder', 'whole', 'week'], ['thank', 'peopl', 'ad', 'skype', 'want', 'add', 'name', 'twitter', 'name', 'yt', 'name', 'blogtv', 'etc'], ['honor', 'tweet', 'ya'], ['uh', 'happi', 'mother', 'day', 'mum'], ['get', 'readi', 'earli', 'night', 'tweep', 'great', 'one', 'everi'], ['everyon', 'follow', 'amaz'], ['tomorrow', 'mother', 'day', 'need', 'get', 'crap', 'togeth', 'soon', 'noor', 'left', 'fun', 'nine', 'month'], ['still', 'not', 'club', 'lot', 'bar', 'though', 'not', 'think', 'miss', 'much'], ['problem', 'superstar', 'alway', 'deliv', 'huge', 'file', 'much', 'energi', 'pixel'], ['plan', 'cardio', 'hrs', 'reason', 'last', 'night'], ['go', 'see', 'star', 'trak', 'expect', 'note', 'amaz'], ['keep', 'tell', 'feel', 'better', 'tomorrow', 'lazi', 'day', 'sunfay', 'afteral', 'excus'], ['make', 'wish', 'dog', 'instead', 'cat'], ['alexand', 'ovechkin', 'definit', 'new', 'favorit', 'nhl', 'player'], ['ha', 'ha', 'funni'], ['ot', 'excit', 'game', 'like', 'alway'], ['kmf', 'go', 'smooth', 'far', 'free', 'stuff', 'alway', 'plus'], ['equal', 'gt', 'almost', 'better', 'sim'], ['happi', 'mother', 'day', 'nfti'], ['dad', 'told', 'music', 'power', 'heal', 'soul', 'sure', 'true'], ['head', 'strand', 'goodnight'], ['lmao', 'bake', 'sound', 'like', 'yummi', 'fun'], ['feel', 'smooth', 'like', 'chrome'], ['holi', 'crap', 'exhaust', 'rest', 'go', 'see', 'wolverin', 'later'], ['fun', 'water', 'park', 'dinner', 'rainforest', 'cafe', 'free', 'parti', 'tonight', 'pretti', 'good', 'saturday', 'think'], ['realli', 'enjoy', 'star', 'trek', 'great', 'movi', 'amaz', 'special', 'effect', 'defin', 'recommend', 'even', 'not', 'trekki'], ['omj', 'love', 'good', 'laugh', 'franki', 'great', 'job', 'guy'], ['saturday', 'not', 'cool', 'friend', 'job', 'differ', 'posit', 'let', 'know', 'town', 'miss'], ['awesom', 'dude', 'yay', 'surpris', 'celebr', 'got', 'meet', 'year', 'ago', 'soo', 'friend'], ['noth', 'beat', 'spend', 'even', 'mom'], ['wrong', 'come', 'brag', 'full', 'belli', 'smh'], ['lexus', 'twitpic', 'happi', 'mother', 'day', 'lexus', 'hopw', 'nice', 'one'], ['healthi', 'wish', 'may', 'start', 'say'], ['fun', 'time', 'friend', 'beer', 'pic'], ['thank', 'thing', 'much', 'hard', 'ever', 'get', 'go', 'therefor', 'never', 'get', 'much', 'better'], ['cure'], ['haha', 'not', 'anyth', 'wrong'], ['mom', 'get', 'readi', 'enjoy', 'special', 'day'], ['good', 'let', 'us', 'go', 'get', 'done'], ['haha', 'one', 'mani', 'reason', 'love'], ['photo', 'amaz', 'great', 'subject', 'amp', 'way', 'get', 'peopl', 'educ', 'darfur', 'hug', 'inspir', 'woman'], ['know', 'good', 'littl', 'life', 'love'], ['head', 'back', 'home', 'win'], ['realli', 'made', 'night', 'infact', 'made', 'weekend', 'well', 'done'], ['yes', 'sound', 'like', 'distinct', 'advantag', 'fortun', 'enjoy', 'femal'], ['clean', 'kitchen', 'amp', 'watch', 'royal', 'play'], ['long', 'day', 'head', 'bed', 'iloveyou', 'lt'], ['join', 'twitter', 'lol'], ['never', 'pragu', 'money', 'first', 'citi', 'visit'], ['discern', 'request', 'hulu', 'support', 'excel', 'idea'], ['go', 'tonight', 'let', 'us', 'partyy'], ['repli', 'button', 'right', 'stop', 'spam'], ['true', 'admit', 'funni', 'bout', 'go', 'tube', 'lol'], ['know', 'quot', 'extra', 'hand', 'quot', 'comment', 'would', 'caus', 'troubl', 'upload', 'hous', 'music', 'beyond', 'vol'], ['not', 'take', 'feel', 'away', 'lt', 'go', 'lay', 'amp', 'watch', 'movi'], ['yeah', 'happi', 'move', 'parti', 'happi'], ['love', 'weekend', 'thank', 'like', 'live', 'excit', 'sure', 'night', 'night', 'xx'], ['good', 'morn', 'everyon'], ['go', 'havta', 'temp', 'stop', 'fllwing', 'talkin', 'kobe', 'love', 'amp', 'take', 'person', 'like', 'lebron'], ['absolut', 'love', 'kill', 'bill', 'vol', 'think', 'luci', 'liu', 'soo', 'gorgeous'], ['back', 'graduat', 'two', 'doctor', 'famili'], ['not', 'awhil', 'point', 'anyway'], ['thank', 'sigjean'], ['great', 'song', 'east', 'clubber'], ['not', 'watch', 'wish', 'tv', 'love', 'guess', 'not', 'win', 'though', 'lol'], ['happi', 'mother', 'day'], ['oop', 'drunken', 'stupor', 'lol', 'check'], ['haha', 'agre', 'lol'], ['love', 'humor', 'reword', 'like', 'say', 'quot', 'group', 'therapi', 'quot', 'instead', 'quot', 'gang', 'bang', 'quot', 'keep', 'mom', 'back', 'hahaha'], ['good', 'pic', 'guy', 'look', 'good', 'yesterday', 'not', 'ya', 'think'], ['crush', 'someon'], [], ['aww', 'cool', 'ate', 'much', 'ice', 'cream'], ['would', 'lime', 'lemon', 'deal', 'sound', 'fabul', 'text', 'back'], ['shot', 'new', 'rifl', 'plinker', 'target', 'built', 'shop', 'class', 'work', 'great'], ['readi', 'new', 'backstreet', 'fan', 'proud'], ['yea', 'aww', 'sweet', 'r', 'good', 'kid'], ['cool', 'good'], ['haha', 'true', 'thank', 'regular', 'keyboard', 'job', 'time'], ['long', 'amp', 'prosper', 'movi', 'better', 'thought', 'awesom', 'job', 'pleas'], ['babylov', 'homenagem', 'ao', 'babi'], ['dad', 'total', 'rock', 'fli', 'white', 'guy', 'haha'], ['woohoo', 'cool', 'see', 'knew', 'would', 'get', 'see'], ['chang', 'quot', 'within', 'mile', 'quot', 'within', 'mile', 'effin', 'bore'], ['thank', 'marc', 'jacob', 'thou', 'limit'], ['way', 'still', 'not', 'believ', 'awesom', 'newjabbakidz', 'perform', 'scream', 'pc'], ['theatr', 'see', 'star', 'trek', 'second', 'time', 'becuas', 'cool'], ['thank', 'heather', 'glad', 'like', 'dish'], ['loung', 'not', 'product', 'upp', 'time', 'go'], ['congratul', 'shirt', 'way'], ['fuck', 'say'], ['happi', 'go', 'get', 'see', 'love', 'ladi'], ['wow', 'mom', 'lot', 'energi', 'get', 'tire', 'read', 'tweet', 'live'], ['forgot', 'much', 'realli', 'need', 'music', 'bare', 'week', 'music', 'yay'], ['need', 'show', 'wednesay', 'oh', 'well', 'come', 'one', 'come', 'irvin', 'improv', 'live', 'gotham', 'showcas', 'lot', 'good'], ['aim', 'account', 'add'], ['congrat', 'dave', 'amp', 'anna', 'surpris', 'propos', 'enzian', 'theater', 'orlando'], ['well', 'guess', 'think', 'everyth', 'thank', 'much', 'keep', 'fan', 'loop'], ['wath', 'dollhous', 'hulu', 'eat', 'special', 'el', 'taquito', 'beer', 'week', 'go', 'well'], ['new', 'comic', 'post', 'introduc', 'quot', 'joe', 'mini', 'strip', 'quot', 'via', 'cute', 'mother', 'day', 'strip'], ['dope', 'mom', 'love', 'stop', 'drink', 'mom', 'juic', 'stop', 'twitter', 'get', 'rest'], ['take', 'million', 'song', 'station', 'thing', 'sorri'], ['happi', 'mother', 'day'], ['bed', 'tonight', 'realli', 'realli', 'funni', 'best', 'famili', 'ever'], ['live', 'long', 'prosper'], ['karaok', 'small', 'town', 'bar', 'wonder', 'time'], ['oh', 'sunni'], ['told', 'would', 'sweep', 'haha'], ['quot', 'patchouli', 'oil', 'amp', 'incens', 'surg', 'popular', 'amp', 'most', 'among', 'devote', 'free', 'love', 'amp', 'hippi', 'quot'], ['thank', 'mama', 'absolut', 'ador'], ['brill', 'night', 'girl', 'met', 'terri', 'christian', 'realli', 'love', 'home', 'berocca', 'toast'], ['happiest', 'girl', 'world', 'best', 'weekend', 'ever', 'not', 'wait', 'next', 'weekend', 'either', 'grate', 'bless'], ['way', 'still', 'not', 'believ', 'awesom', 'newjabbakidz', 'perform', 'scream', 'pc'], ['hahaha', 'funnyy'], ['glad', 'hope', 'make', 'back', 'near', 'new', 'orlean'], ['mom', 'compani', 'picnic', 'lake', 'elsinor', 'storm', 'game', 'oh', 'thing', 'pleas', 'mom'], ['read', 'twitter', 'bio', 'love', 'clever', 'cute', 'smile'], ['still', 'recal', 'help', 'way', 'back', 'struggl', 'ar', 'contest', 'question'], ['yay', 'bannerbomb', 'wii', 'final', 'run', 'homebrew', 'wii'], ['mum', 'sound', 'humbl', 'sweet', 'thing', 'ask'], ['feel', 'great', 'solv', 'minor', 'long', 'term', 'problem', 'max', 'mayb', 'tri', 'anim', 'avatar', 'xd'], ['omg', 'get', 'coupon', 'time', 'obsess', 'catalog', 'come', 'mail'], ['great', 'time', 'kc'], ['miss', 'kid', 'sent', 'messag', 'yt'], ['one', 'femal', 'server', 'tell', 'ass', 'look', 'big', 'pant', 'worri', 'night', 'long', 'lol'], ['jona', 'second', 'episod', 'aww', 'nick', 'handsom'], ['one', 'groceri', 'sad', 'not', 'dukbolgi'], ['decid', 'best', 'stay', 'tonight', 'ladi', 'shall', 'pittsburgh', 'soon', 'farewel'], ['snuck', 'window', 'lay', 'roof', 'look', 'star', 'nice', 'night', 'tonight'], ['still', 'putt', 'yard', 'longer', 'hit', 'driver'], ['need', 'lele', 'answer', 'mee', 'haha'], ['aww', 'nice', 'attempt', 'hide', 'camera'], ['alredi', 'chocol', 'imposs', 'resist'], ['quot', 'never', 'alon', 'love', 'realli', 'quot'], ['leatherman', 'must', 'realli', 'anybodi', 'never', 'know', 'might', 'need', 'one', 'amp', 'get', 'job', 'done'], ['piyaa', 'hi', 'hyper', 'amp', 'bore', 'amp', 'onlin', 'amp', 'go', 'find', 'pictur', 'notebook', 'still', 'not', 'send', 'messag', 'grr'], ['record', 'john', 'mayer', 'freak', 'cool'], ['happi', 'mother', 'day', 'mum'], ['sorri', 'friend', 'pay', 'mortgag'], ['nyappi', 'mother', 'day', 'mom'], ['work', 'secur', 'club', 'tonight', 'first', 'time', 'work', 'month', 'interest', 'oh', 'hi', 'kelsen'], ['thank', 'much', 'follow', 'twitter', 'hope', 'find', 'excit', 'look', 'forward', 'tweet'], ['drank', 'sli', 'not', 'ask', 'know'], ['knock', 'soo', 'godamn', 'funni', 'never', 'get', 'old', 'quot', 'tupac', 'quot', 'lol'], ['fun', 'time', 'allegra', 'tonit', 'saw', 'good', 'movi'], ['bellevill', 'parent', 'someon', 'offer', 'bus', 'ride', 'orillia', 'mall', 'thought'], ['head', 'beach', 'puppi', 'maverick', 'hug', 'much', 'aloha'], ['year', 'old', 'go', 'drive', 'crazi', 'come', 'territori', 'guess'], ['pretti', 'flower', 'john', 'main', 'brought', 'ladi'], ['go', 'see', 'star', 'trek', 'babe', 'actual', 'excit', 'hah'], ['appar', 'crappi', 'type', 'sorri'], ['good', 'keep', 'guy', 'would', 'love', 'come', 'visit', 'sonetim'], ['success', 'shop', 'day'], ['mum', 'would', 'happi', 'receiv', 'handbag', 'card', 'us', 'today', 'hehe'], ['viviann', 'mine', 'yumm'], ['mum', 'cake', 'done', 'need', 'make', 'good', 'luch', 'tomorrow', 'amaz', 'mum', 'day'], ['right', 'second', 'gig', 'sippinn', 'guess', 'whut', 'water', 'sta', 'focus', 'job'], ['sweet', 'go', 'public', 'avail'], ['sorri', 'take', 'twitter', 'not'], ['go', 'mother', 'day', 'ever', 'notic', 'papa', 'look', 'like', 'squiggi', 'lavern', 'snd', 'shirley', 'love'], ['idea', 'wtf', 'twitter', 'will', 'give', 'go', 'go', 'bit'], ['aw', 'tear', 'feel', 'special', 'da', 'famili', 'haha', 'thank', 'girl', 'love', 'yal'], ['awesom', 'night', 'ahead', 'bad', 'v', 'rat', 'citi', 'favorit', 'skater', 'one', 'track', 'fb'], ['mm', 'sound', 'tasti', 'spice', 'rum', 'earlier', 'yummyy', 'also', 'herb', 'alway', 'good', 'although', 'better', 'share'], ['thank', 'followfriday'], ['know', 'bare', 'believ', 'almost', 'thank', 'review', 'love'], ['thank', 'got', 'contact', 'troubl', 'thank'], ['respond', 'question', 'thou', 'shall', 'blog', 'appreci', 'communiti'], ['experienc', 'uniqu', 'winnipeg', 'tradit', 'known', 'quot', 'social', 'quot', 'tri', 'pace'], ['play', 'realli', 'good'], ['not', 'prom', 'ha', 'chines', 'ice', 'chai', 'old', 'school', 'pokemon', 'good', 'night'], ['exhaust', 'come', 'home', 'swim', 'morn', 'tire', 'rememb', 'happi', 'mother', 'day'], ['oh', 'yes', 'happi', 'nine', 'year', 'annivarsari', 'hanson', 'second', 'studio', 'album', 'quot', 'time', 'quot'], ['thank', 'tip', 'figur', 'one'], ['retweet', 'favorit', 'palin'], ['last', 'time', 'get', 'right', 'hello', 'love'], ['thank', 'thought', 'unfortunat', 'not', 'work', 'like', 'hope', 'ah', 'well', 'paint', 'beauti'], ['thank', 'remind', 'toni'], ['boredd', 'follow', 'amaz', 'broken'], ['home', 'galleri', 'open', 'woodstock', 'ny', 'frine', 'work', 'display', 'much', 'great', 'cool', 'interest', 'art', 'seen'], ['fun', 'ate', 'good', 'luck', 'show', 'tomorrow'], ['love', 'guy', 'best'], ['thank', 'sissi', 'sure', 'check', 'myspac', 'tonight', 'go', 'someth', 'love', 'ya'], ['woke', 'nap', 'final', 'got', 'sleep', 'need'], ['know', 'not', 'believ', 'half', 'say'], ['interest', 'night', 'defianc', 'say', 'least', 'hey', 'got', 'doll', 'free'], ['look', 'littl', 'quot', 'fri', 'quot', 'fun', 'paul'], ['vibe', 'doin', 'atlant', 'amp', 'shirt', 'twitter', 'pic', 'lol'], ['got', 'back', 'babi', 'much', 'love', 'ya'], ['thank', 'gerbino', 'forc', 'us', 'start', 'junior', 'year', 'make', 'survey', 'mockup', 'let', 'tell', 'super', 'help', 'skill'], ['leav', 'beach', 'great', 'day', 'vicent', 'need', 'time', 'togeth'], ['hey', 'dirt', 'track', 'thank', 'info', 'got', 'mile'], ['soo', 'happi', 'back'], ['lucki', 'babi', 'wonder', 'famili', 'know', 'could', 'take', 'home'], ['happi', 'mother', 'day', 'like', 'poem'], ['excit'], ['got', 'home', 'partyy', 'good', 'time', 'not', 'wait', 'birthday', 'day'], ['hope', 'day', 'good'], ['haha', 'complet', 'agre'], ['ben', 'love', 'yahh', 'babe', 'lt', 'miss', 'hope', 'see', 'tomorrow', 'mommi', 'love', 'tomorrow', 'happi', 'mother', 'day', 'happi', 'mother', 'day', 'mom'], ['shoot', 'ron', 'torey', 'lot', 'fun'], ['hard', 'feel', 'hope', 'like', 'say', 'think', 'agre'], ['thought', 'pretti', 'good', 'not', 'die', 'hard', 'trekki', 'either'], ['oo', 'lovin', 'first', 'ladi', 'fuschia', 'sheath', 'dress', 'tres', 'chic', 'want', 'arm'], ['usual', 'two', 'famili', 'parti', 'today', 'happi', 'birthday', 'lili'], ['ahh', 'drink', 'bride', 'war', 'realli', 'good'], ['love', 'book', 'read', 'host', 'amaz', 'storytel'], ['good', 'anoth', 'hit', 'anoth', 'run'], ['thank', 'realli', 'appreci', 'babe'], ['woo', 'hoo', 'happi', 'score', 'appar', 'happi', 'consid', 'week'], ['cigarett', 'relax'], ['hahahaha', 'laugh', 'ass', 'thank'], ['say', 'look', 'like', 'demi', 'hahaha', 'yess', 'august', 'blast'], ['itt', 'big', 'time', 'saturday', 'night', 'play', 'canasta', 'movi', 'homework', 'stay', 'shini', 'love', 'everybodi'], ['hey', 'know', 'ya', 'not', 'know', 'want', 'say', 'yopu', 'help', 'lot', 'iraq', 'want', 'thank'], ['sun', 'melbourn', 'happi', 'mother', 'day', 'mum'], ['tgc', 'concert', 'good', 'see', 'old', 'friend', 'rememb', 'old', 'time'], ['happi', 'mother', 'day'], ['check', 'got', 'lol', 'ok', 'went', 'live', 'minut', 'everyth', 'fine'], ['see', 'date', 'show', 'good', 'time', 'still', 'want', 'stripper', 'pictur'], ['glad', 'like', 'want'], ['make', 'fun', 'guy'], ['pappadeux', 'yummi', 'strawberri', 'lemonad'], ['overwhelm', 'lead', 'strawberri', 'lemonad', 'husband', 'vote', 'banana', 'foster', 'though'], ['hehe'], ['today', 'first', 'mother', 'day', 'littl', 'boy', 'hope', 'beauti', 'mother', 'day'], ['sit', 'comput', 'eat', 'grape', 'hail', 'outsid', 'miss', 'summer'], ['well', 'done', 'happi', 'ya'], ['omg', 'shut', 'sorri', 'still', 'vent', 'person', 'annoy', 'none', 'swear'], ['happi', 'morn', 'everyon'], ['sweet', 'girl', 'food', 'soo', 'good'], ['hah', 'yeah', 'bad', 'not', 'go', 'lie', 'fun'], ['play', 'new', 'ds', 'lite', 'love'], ['dinner', 'parent', 'unit', 'alway', 'grand'], ['realli', 'realli', 'get', 'excit'], ['like', 'stuff', 'strang', 'voicemail'], ['come', 'new', 'plan', 'besti', 'oh', 'one', 'go', 'great'], ['oh', 'lol', 'yes', 'facebook', 'nice', 'safe', 'environ', 'like', 'church', 'basement'], ['sorri', 'tri', 'keep'], ['thank', 'much', 'love', 'fanmail', 'talk', 'us', 'anytim'], ['lol', 'well', 'learn', 'somethin', 'new', 'thank'], ['thank', 'love', 'good', 'bargain'], ['much', 'seri', 'denver', 'next'], ['john', 'amaz', 'book', 'need', 'brighten', 'mood'], ['lol', 'tweet', 'alway', 'fun', 'follow', 'never', 'dull', 'moment', 'kulp'], ['not', 'know', 'quit', 'mountain'], ['thank'], ['swim', 'parti', 'brother', 'tonight', 'awesom', 'time', 'sinc', 'sissi', 'cold', 'water', 'love', 'today'], ['see', 'suck', 'right', 'problem', 'race', 'conflict', 'god', 'gave', 'us', 'dvr'], ['happi', 'mother', 'day', 'us', 'not', 'bein', 'mamma', 'yet', 'lucki', 'enough', 'live', 'live', 'littl'], ['caught', 'email', 'research', 'project', 'yay', 'label', 'search', 'gmail', 'much', 'easier'], ['star', 'trek', 'grtsat', 'bggete', 'drunk'], ['link', 'not', 'open', 'tri', 'better', 'connect', 'tomorrow', 'curious'], ['red', 'win', 'great', 'end', 'great', 'day'], ['welcom', 'babe', 'kill', 'show', 'yuupp'], ['think', 'catch', 'sleep', 'befor', 'go', 'back', 'uni', 'haha', 'goodnight', 'lt'], ['iight', 'thank'], ['yeah', 'son', 'two', 'go', 'kid', 'friend', 'place', 'congrat', 'babi'], ['beauti', 'day', 'hangin', 'guy', 'graham', 'josiah', 'lol', 'wait', 'other', 'want', 'stop', 'come', 'food'], ['final', 'finish', 'market', 'project', 'took', 'hang', 'relax'], ['say', 'happi', 'mother', 'day', 'mom'], ['coffe', 'sociolog', 'paper', 'complet', 'happi', 'mother', 'day'], ['hey', 'honey', 'bunni', 'big', 'bunni', 'hug'], ['real', 'hooker', 'go', 'slap', 'public'], ['listen', 'sampl', 'make', 'sure', 'think', 'stuff', 'loud', 'odd', 'stuff', 'recal', 'not', 'bungl'], ['well', 'not', 'stay', 'away', 'kind', 'surround', 'not', 'happi', 'mother', 'day', 'mom', 'treiz'], ['thank', 'think', 'first', 'girl', 'say', 'mom'], ['seen', 'mi', 'abueltia', 'hospit', 'good'], ['hug', 'glad', 'got', 'spend', 'time', 'mom', 'free', 'tonight', 'drop', 'spaghetti'], ['ahh', 'mommi', 'got', 'new', 'sheet', 'bed', 'comfi'], ['welcom', 'wonder', 'day', 'stayin', 'outta', 'troubl', 'readi', 'crash', 'parti', 'lol'], ['way'], ['mom', 'came', 'home', 'final', 'got', 'guitar', 'strap', 'yay'], ['hot', 'damn', 'fuck', 'disneyland'], ['great', 'basto', 'happi', 'go', 'mabaho', 'leg', 'celebr', 'haha'], ['fail', 'life'], ['happi', 'mother', 'day'], ['wow', 'look', 'realli', 'good', 'wish', 'good'], ['not', 'live', 'tri', 'earn', 'groceri', 'money', 'enjoy', 'eat', 'least', 'day'], ['happi', 'mother', 'day', 'beauti', 'mother', 'may', 'love', 'shine', 'world', 'thank', 'mum'], ['last', 'weekend', 'pretti', 'solid', 'brunch', 'bar', 'wellington', 'hard', 'screw', 'steak', 'egg', 'though'], ['thank', 'send', 'link'], ['psst', 'new', 'blog', 'comment', 'likey'], ['oh', 'love', 'famili'], ['hi', 'nic', 'excit', 'heard', 'pcd', 'perform', 'jakarta', 'hope', 'visit', 'town', 'bali', 'well', 'love', 'ya'], ['happi', 'mother', 'day', 'everi', 'mommi'], ['enjoy', 'mother', 'day'], ['ahh', 'go', 'away', 'yay', 'fav', 'song'], ['happi', 'see', 'kurt', 'spin'], ['love', 'comeback', 'stay', 'tune', 'fellow', 'follow', 'peopl', 'though', 'turn', 'get', 'follow'], ['congrat', 'knew', 'princess', 'would', 'win', 'sigjean'], ['feel', 'like', 'princess', 'love', 'lingeri', 'parti'], ['get', 'michael', 'jackson', 'ish', 'not', 'bad', 'look', 'go'], ['need', 'right', 'absolut', 'mindd', 'blow', 'love', 'much'], ['hot', 'coco', 'nkotb', 'cup', 'sweeti'], ['cute', 'time', 'twitpic'], ['hii', 'freak', 'love', 'would', 'happiest', 'year', 'old', 'girl', 'aliv', 'repli'], ['happi', 'mother', 'day', 'mother'], ['aww', 'nice'], ['ahh', 'yay', 'get', 'knockin', 'lot'], ['get', 'wors', 'everi', 'year', 'worst', 'oh', 'month', 'today'], ['sit', 'outsid', 'cold', 'ocean', 'glass', 'wine'], ['inde', 'tri', 'get', 'trend', 'topic', 'fun', 'twilight', 'idea'], ['kick', 'though', 'feel', 'littl', 'sick', 'altern', 'talk', 'friend', 'game', 'watch', 'playoff', 'write', 'applic'], ['not', 'sure', 'stracchino', 'sound', 'good'], ['yes', 'ili'], ['tire', 'gunna', 'go', 'bed', 'soon', 'first', 'time', 'onlin', 'today', 'readi', 'mother', 'day', 'tomorow'], ['welcom', 'aboard', 'friend', 'fan', 'go', 'love', 'ya'], ['anoth', 'amaz', 'day', 'ever', 'sinc', 'got', 'twitter', 'great', 'day'], ['nothin', 'better', 'ridin', 'car', 'sister', 'blast', 'th', 'cb', 'ladi', 'gaga', 'loud', 'not', 'hear', 'screamin', 'lyric'], ['friend', 'ent', 'industri', 'said', 'realli', 'realli', 'good', 'hope', 'convinc', 'wife', 'date', 'night', 'hhrs'], ['loss', 'power', 'hous', 'alon', 'not', 'fucckingg', 'cool', 'parti', 'cakss'], ['want', 'see', 'movi', 'fun'], ['mouth', 'sure'], ['watch', 'role', 'model', 'absolut', 'hilari'], ['chillin', 'famili', 'get', 'taco', 'ochoa', 'best', 'food', 'washington', 'counti'], ['hahahahahahahahahahahahaha', 'could', 'interest'], ['better', 'safe', 'sorri', 'glad', 'everyth', 'okay'], ['mother', 'madr', 'chel', 'tonight', 'not', 'wait', 'see', 'present'], ['yay', 'star', 'trek', 'realli', 'quot', 'good', 'quot', 'happi', 'not', 'let', 'got', 'see', 'imax'], ['finish', 'book', 'vat', 'good', 'book', 'lt'], ['hehe', 'yeah', 'funni', 'updat', 'peopl', 'random', 'thing', 'amus'], ['love', 'metal', 'gear', 'solid', 'valkyria', 'chronicl'], ['nerd', 'read', 'first', 'mani', 'book', 'summer'], ['messag', 'messag', 'want', 'sound', 'funni'], ['hi', 'nick', 'realli', 'like', 'seri', 'jona', 'awesom', 'see', 'soon', 'concert', 'kiss', 'marta'], ['haha', 'nice', 'thank', 'let', 'know'], ['thank', 'ye', 'vaneta', 'much', 'appreci'], ['thank', 'come', 'support', 'us', 'rock'], ['show', 'discret', 'occasion'], ['new', 'star', 'trek', 'movi', 'awesom', 'unnecessari', 'brief', 'underwear', 'scene', 'pun', 'intend', 'besid', 'awesom', 'startrek'], ['habitat', 'neat'], ['could', 'spend', 'rest', 'night', 'room', 'least', 'one', 'could', 'happi', 'glass', 'wine', 'surlytween'], ['goodmorn'], ['chillen', 'tri', 'figur', 'thing', 'gettin', 'drunk'], ['chillin', 'homi'], ['whatsoev', 'mean', 'get', 'lol', 'alway', 'sober'], ['oh', 'wait', 'mess', 'mess', 'lyric', 'quot', 'not', 'concret', 'quot'], ['vega', 'fire'], ['lol', 'yourock'], ['dinner', 'fam', 'miss'], ['lay', 'lyndi', 'drive', 'way', 'drink', 'tea', 'listenin', 'music', 'takin', 'pictur', 'chillin'], ['alreadi', 'damn'], ['would', 'sicken', 'number', 'way', 'abl', 'tweet'], ['last', 'year', 'right', 'around', 'time', 'black', 'parad', 'dead', 'came', 'awesom', 'time', 'man'], ['movi', 'pretti', 'interest', 'actual', 'go', 'finish', 'watch', 'probabl', 'see', 'star', 'trek', 'tomorrow', 'lt', 'zq', 'lol'], ['watch', 'jona', 'love', 'dvr'], ['sound', 'like', 'great', 'way', 'start', 'mother', 'day', 'enjoy', 'day'], ['star', 'trek', 'pretti', 'much', 'rock', 'life', 'oh', 'wait', 'rock', 'life'], ['must', 'abl', 'tell', 'reprob', 'despit', 'endors', 'sound', 'pretti', 'smart'], ['happi', 'voic', 'back', 'lt'], ['good', 'luck', 'whit', 'show', 'tonit', 'man', 'ill', 'watch'], ['isp', 'sort', 'gather', 'cheer', 'birthday', 'wish'], ['reunit', 'feel', 'good'], ['love', 'boy', 'make', 'happi', 'look', 'sexiest', 'plain', 'black', 'boxer'], ['said', 'elus', 'tricki'], ['oh', 'amaz', 'two', 'need', 'third', 'yn'], ['yes', 'love', 'seen', 'ep', 'mani', 'time', 'quot', 'line'], ['back', 'first', 'run', 'race', 'still', 'aliv'], ['fabul', 'interraci', 'gangbang', 'woot'], ['love', 'fact', 'jor', 'talk', 'tell', 'want', 'amaz'], ['nurs', 'scratch', 'bump', 'festivus', 'mud', 'wrestl', 'swear', 'still', 'dirt', 'hair', 'good', 'time'], ['ahh', 'not', 'care', 'love', 'movi'], ['blahh', 'tire', 'got', 'go', 'airport', 'pick', 'mom', 'amp', 'amp', 'bore', 'upsid', 'listen', 'backstreet', 'boy'], ['miss', 'way', 'life', 'cook', 'mother', 'saturday', 'night', 'mama', 'love'], ['happi', 'studi', 'nighter', 'pay'], ['sorri'], ['ohh', 'love', 'green', 'purpl', 'black'], ['happi', 'ace', 'final'], ['sittin', 'home', 'watchin', 'monster', 'waitin', 'pizza', 'yum', 'yum'], ['oh', 'cool', 'thank'], ['hahaha', 'cool', 'pic', 'sal', 'made', 'daniel', 'lol'], ['heart', 'sing'], ['bad', 'understand', 'thing', 'know'], ['whoo', 'spcn', 'readi', 'cheer'], ['lol', 'see'], ['heard', 'one', 'song', 'amaz', 'voic', 'stun'], ['dinner', 'amp', 'fam'], ['lol', 'yeah', 'forgot', 'tweetdeck', 'status', 'funni'], ['make', 'feel', 'better', 'studi', 'sat', 'night', 'blackberri'], ['twitter', 'offici', 'best', 'way', 'advertis', 'someth'], ['welcom'], ['happi', 'mother', 'day', 'momma', 'momma', 'current', 'wonder', 'day'], ['love', 'cancuk', 'lt'], ['love', 'song', 'start', 'think', 'one', 'knew', 'one', 'sameperson'], ['practic', 'blackjack', 'skill', 'not', 'look', 'hope'], ['oh', 'bring', 'home', 'full', 'delici', 'one', 'philli', 'fav'], ['amaz', 'day', 'boyfriend', 'good', 'drummer'], ['relax'], ['happi', 'birthday', 'hour', 'minuet', 'haha'], ['ugh', 'fun', 'concert', 'screen', 'crack', 'phone', 'fell'], ['give', 'best'], ['congratul', 'xo'], ['idea', 'complet', 'lost'], ['watch', 'georg', 'lopez', 'went', 'school', 'play', 'basketbal', 'today', 'pretti', 'nice', 'hot'], ['look', 'page', 'realis', 'radio', 'show', 'get', 'play', 'call', 'want', 'love', 'track'], ['watch', 'hope', 'haley'], ['discov', 'whole', 'new', 'beauti'], ['download', 'twitterberri', 'life', 'even', 'conveni'], ['home', 'day', 'pamper', 'mom', 'amp', 'dinner', 'famili', 'current', 'snuggi', 'couch', 'glass', 'wine', 'amp', 'new', 'book', 'ahh'], ['know', 'realli', 'want', 'stuff', 'school', 'next', 'week', 'ill', 'free', 'day', 'week', 'ill', 'hit'], ['make', 'get', 'better', 'believ'], ['fun', 'day', 'boo', 'short', 'fun'], ['good', 'movi'], ['happi', 'mother', 'day', 'sure', 'say', 'lt', 'mum'], ['took', 'go', 'go', 'thank', 'mother'], ['sweet', 'dream'], ['know', 'made', 'differ', 'other', 'feel', 'proud'], ['good', 'day', 'sell', 'feria', 'urbana', 'ladi', 'love', 'felt'], ['rog', 'never', 'heard', 'esti', 'beat', 'acum', 'tweet', 'much'], ['biligu', 'sweatshop', 'lol', 'talk', 'not', 'much', 'got'], ['wow', 'bring', 'back', 'mani', 'happi', 'memori', 'love', 'yes', 'know', 'show', 'age', 'not', 'care'], ['heard', 'st', 'not', 'true', 'shot', 'blown', 'nice', 'big', 'screen'], ['not', 'stop', 'listen', 'new', 'singl', 'paranoid', 'amaz', 'love'], ['talk', 'hubbi', 'convinc', 'great', 'present', 'mommi'], ['homm', 'good', 'day'], ['thank', 'find', 'wonder', 'even'], ['watch', 'pianist', 'dad', 'great', 'movi'], ['feel', 'accomplish', 'got', 'lot', 'done', 'today'], ['happi', 'mother', 'day', 'mom'], ['wish', 'knew', 'play', 'instrument', 'lesson', 'menac', 'missi', 'moo', 'sure', 'piano', 'cello', 'bass', 'whatev', 'want'], ['know', 'ok', 'thank'], ['saw', 'ghost', 'girlfriend', 'past', 'actual', 'realli', 'cute', 'total', 'chick', 'flick', 'mattew', 'mcconaughey', 'smexi'], ['thank', 'man', 'appreci', 'rock', 'sir'], ['thank', 'much', 'rex', 'ff'], ['hey', 'sherri', 'not', 'give', 'marri', 'may', 'brother', 'friend'], ['chillin', 'bore', 'drink', 'margarita', 'txt'], ['lmao', 'know', 'two', 'day', 'good', 'thing'], ['mother', 'day', 'mum', 'ili', 'mummi', 'lol'], ['love', 'hair', 'blowin', 'wind'], ['everyon', 'pleas', 'welcom', 'new', 'friend', 'kari', 'warm', 'follow', 'set', 'twitter', 'account', 'tonight'], ['ok', 'one', 'favorit', 'movi', 'seri', 'star', 'war', 'make', 'dork'], ['yummi', 'mother', 'day', 'mum', 'dad', 'arcel', 'yuum'], ['glad', 'blast'], ['okay', 'thank'], ['riot', 'go', 'girl'], ['love', 'song'], ['get', 'readi', 'go', 'read', 'pray', 'go', 'bed', 'enjoy', 'rest', 'night'], ['funn'], ['relax'], ['kid', 'count', 'day', 'till', 'saturday', 'hope', 'someth', 'rememb', 'live'], ['free', 'fillin', 'app', 'ipod', 'fun', 'addict'], ['happi', 'mother', 'day', 'x', 'amp', 'go', 'docker'], ['jus', 'love', 'doin', 'night', 'done', 'hour'], ['start', 'feel', 'realli', 'old'], ['plan', 'mother', 'day', 'special', 'belov', 'mother'], ['never', 'miss', 'icar', 'son', 'huge', 'crush', 'miranda'], ['sure', 'ill', 'follow', 'hun', 'ohh', 'thank', 'subscrib', 'youtub'], ['told', 'manag', 'sent', 'home', 'afraid', 'troubl', 'send', 'home', 'haha', 'dumb', 'bitch'], ['curri', 'shrimp', 'yesterday', 'lol', 'love', 'seafood'], ['cool', 'save', 'tea'], ['snl', 'tonight', 'go', 'hilari'], ['thank'], ['got', 'back', 'hangin', 'besti', 'pool', 'soo', 'nice'], ['lmfao', 'yea', 'anyon', 'pleas', 'realli', 'pretti'], ['embark', 'larg', 'tour', 'bar', 'project', 'hope', 'not', 'die', 'alcohol', 'poison'], ['lay', 'bed', 'text', 'good', 'night', 'ya'], ['think', 'tonight', 'could', 'not', 'gone', 'perfect'], ['hey', 'sorri', 'not', 'see', 'messag'], ['good', 'end', 'busi', 'day', 'bed', 'full', 'belli', 'sushi'], ['never', 'expect', 'hear', 'beasti', 'boy', 'star', 'trek', 'movi', 'super', 'great', 'flick', 'though', 'pew', 'peww', 'phaser'], ['happi', 'mother', 'may', 'mak', 'love', 'alway', 'xoxo'], ['ty', 'much', 'ff'], ['aw', 'song', 'make', 'think', 'girl', 'scout'], ['want', 'move', 'england', 'quot', 'ello', 'must', 'go', 'loo', 'head', 'caddi', 'quot', 'gahaha', 'awesom', 'accent'], ['oh', 'god', 'ador', 'ilov', 'much', 'inspir', 'nick'], ['nice', 'meet', 'good', 'know', 'anoth', 'one', 'follow', 'actual', 'speak'], ['wonder', 'go', 'sleep', 'well', 'tonight'], ['omg', 'love', 'parent', 'juss', 'got', 'lavend', 'camera', 'earli', 'birthday', 'present'], ['want', 'wish', 'mom', 'happi', 'mother', 'day'], ['ventur', 'forth', 'turkey', 'creek', 'amp', 'fetch', 'boy', 'post', 'prom', 'festiv', 'hope', 'fun'], ['fear', 'not', 'deserv', 'alot', 'care', 'anim', 'get', 'food', 'not', 'worri'], ['thank', 'read', 'ohlala'], ['yup', 'join', 'nin', 'access', 'fun'], ['got', 'total', 'lost', 'pay', 'taxi', 'get', 'back', 'suppos', 'yeah', 'someth', 'like', 'lol'], ['kickin', 'miss', 'babe', 'lolz'], ['purpl', 'pusrs', 'pretti', 'someon', 'tell', 'kati', 'holm'], ['lol', 'true'], ['next', 'year', 'sweet'], ['cool', 'yes', 'ciwwaf', 'awesom'], ['chillin', 'home'], ['everyon', 'mistak', 'make', 'lesson', 'learn', 'not', 'let', 'negat', 'get'], ['quit', 'right', 'cock', 'sound', 'better', 'clock', 'come', 'femal', 'anyway'], ['haciendo', 'mi', 'primer', 'app', 'con', 'thin', 'rack', 'crazi', 'stuff'], ['shower', 'feel', 'refresh', 'long', 'day', 'fair'], ['thank'], ['enjoy', 'famili', 'trump', 'everyth'], ['aww', 'thank', 'babe', 'plan', 'tomorrow'], ['woo', 'hoo', 'parti', 'go', 'fun'], ['sing', 'song', 'film', 'movi', 'best'], ['listen', 'best', 'day', 'life', 'kelli', 'pickler'], ['yaay', 'congrat', 'shmolan', 'graduat', 'proud', 'fun', 'lt'], ['got', 'home', 'tilli', 'danc', 'recit', 'lol', 'spectacular'], ['soo', 'happi', 'demi', 'back', 'twitter'], ['well', 'guess', 'make', 'pretti', 'great', 'pair', 'not', 'think', 'birthday', 'date', 'go', 'happen'], ['thrill', 'prom', 'went', 'well'], ['good', 'night', 'rob', 'sleep', 'well', 'safe', 'travel', 'tomorrow'], ['thank'], ['thank', 'dj'], ['finish', 'watch', 'not', 'love'], ['hang', 'cousin', 'jimmi', 'hope', 'hang', 'friend'], ['great', 'date', 'last', 'find', 'cdcave', 'daniel', 'hilari', 'fun'], ['comedi', 'good', 'luck', 'friend'], ['sweet', 'san', 'fran', 'awesom', 'love'], ['rofl', 'uh', 'huh'], ['hahah', 'love', 'though'], ['hi', 'bunni', 'recent', 'subcrib', 'channel', 'youtub', 'make', 'great', 'stuff', 'kind', 'want', 'say', 'hi'], ['yes', 'realli', 'good', 'even', 'though', 'not', 'sci', 'fi', 'love', 'amp', 'haha', 'know'], ['happi', 'mother', 'day', 'mom'], ['likabl', 'hahahahahahaha', 'still', 'moon'], ['nice', 'place', 'eat', 'sao', 'paulo', 'brazil'], ['enjoy', 'coffe', 'super', 'delici', 'cooki'], ['weirton', 'juli', 'way', 'north', 'tippi', 'top', 'lol', 'not', 'think', 'southern', 'wv', 'folk', 'like', 'us', 'much'], ['omg', 'cur', 'hair', 'cute'], ['hello', 'new', 'follow', 'say', 'hi', 'say', 'nice', 'meet'], ['hi', 'ya', 'demi', 'glad', 'back', 'person', 'love', 'pictur', 'haha'], ['tri', 'dang', 'hardest', 'not', 'watch', 'movi', 'finish', 'book'], ['last', 'song', 'american', 'reject', 'amaz', 'song'], ['real', 'not', 'excit'], ['debut', 'thursday', 'galleri', 'loung', 'fun', 'not', 'wait', 'next', 'one'], ['uh', 'oh', 'hope', 'noth', 'damag'], ['listen', 'echo', 'gorilla', 'zoe', 'ahh', 'love', 'song'], ['today', 'dan', 'bought', 'bio', 'dome', 'realiti', 'bite', 'soundtrack', 'needless', 'say', 'get', 'mayjah', 'point', 'also', 'tummi', 'not', 'happi', 'boo'], ['photo', 'love', 'knew', 'talent', 'photograph', 'journalist'], ['hehe', 'fun', 'tweet'], ['good'], ['spend', 'time', 'momma', 'celebr', 'mother', 'day', 'earli', 'good', 'woodburn'], ['think', 'letitia', 'still', 'tri', 'upload', 'digit', 'problem', 'sure', 'let', 'us', 'know'], ['eagl', 'make', 'saturday', 'night', 'much', 'better'], ['movi', 'realli', 'good'], ['go', 'bed', 'earli', 'got', 'lot', 'import', 'women', 'visit', 'mother', 'day', 'tomorrow', 'midnight', 'tonight', 'happi', 'birthday', 'boo', 'bear'], ['say', 'good', 'morn', 'everyon', 'happi', 'mother', 'day', 'mother', 'hope', 'h'], ['airsoft', 'much', 'fun', 'play', 'brother', 'great', 'bond', 'experi'], ['sister', 'law', 'left', 'prom', 'look', 'soo', 'pretti', 'tear', 'around'], ['hey', 'weirdo', 'haha', 'jk', 'love'], ['chillin', 'bbq', 'gettin', 'drink'], ['steel', 'toe', 'boot', 'good', 'hear', 'comfi', 'hope', 'kodiak', 'terra', 'brand'], ['lmfaoo', 'fuck', 'love', 'showw'], ['nice', 'pc', 'author', 'review', 'tivo', 'vod', 'servic', 'still', 'love', 'tivo'], ['amaz', 'therebi', 'prove', 'not', 'believ', 'anyth', 'see'], ['aww', 'thank', 'hope'], ['happi', 'mother', 'day', 'oh', 'not', 'read', 'yet'], ['oh', 'emm', 'gee', 'quebec', 'day', 'excit'], ['michell', 'not', 'miss', 'fox', 'like', 'interview'], ['gosh', 'freakin', 'bore', 'talk'], ['shawti', 'next', 'like', 'hella', 'good', 'ooww'], ['watch', 'star', 'trek', 'next', 'watch', 'movi', 'theater', 'movi', 'realli', 'worth'], ['got', 'moommi', 'somn', 'special', 'mother', 'day'], ['good', 'next', 'time', 'get', 'ooh', 'know', 'go'], ['saturday', 'good', 'not', 'wait', 'monday', 'night'], ['go', 'uga', 'like', 'better', 'knew', 'ha'], ['hard', 'pleas', 'methink', 'pictur', 'head', 'fine'], ['thank', 'go', 'make', 'joke', 'say', 'look', 'like', 'mine'], ['like'], ['work', 'sever', 'book', 'project', 'due', 'releas', 'within', 'next', 'month', 'need', 'extra', 'pair', 'hand', 'good'], ['watch', 'ocean', 'vega', 'seem', 'appropri'], ['nice', 'dinner', 'hubbi', 'way', 'home', 'min', 'drive', 'citi', 'sigh'], ['love', 'catch', 'peopl', 'sing', 'car', 'even', 'better', 'danc'], ['lol', 'thank'], ['tire', 'hell', 'bed', 'time', 'cara', 'nighti', 'night', 'twitter', 'world'], ['sit', 'wait', 'dough', 'rise', 'someth', 'calm', 'mayb', 'knowledg', 'cinnamon', 'roll', 'soon'], ['know', 'love'], ['wow', 'might', 'counter', 'benedryl', 'enthusiasm'], ['tfarp', 'take', 'moment', 'translat', 'nod', 'quit', 'welcom', 'also', 'dear', 'probabl', 'best', 'stay'], ['way', 'home', 'love', 'long', 'car', 'ride', 'lt'], ['scare', 'lmao', 'someon', 'pls', 'tell'], ['cross', 'golden', 'state', 'nice', 'home'], ['lol', 'cute', 'way', 'happi', 'mother', 'day', 'ladi'], ['r', 'yvonn', 'not', 'seen', 'googl', 'group', 'day', 'miss', 'ya'], ['aww', 'two', 'cutest', 'god', 'love', 'hair'], ['think', 'dream', 'howev', 'memori', 'suck', 'mayb', 'not'], ['not', 'ya', 'know', 'peopl', 'love', 'human', 'societi'], ['found', 'earlier', 'today', 'go', 'uncl'], ['gah', 'got', 'song', 'itun', 'happi', 'awesom', 'keep'], ['likelyy', 'need', 'save', 'money', 'practic', 'ass'], ['almost', 'legal', 'limit', 'db', 'garag'], ['make', 'delici', 'pasta'], ['lol', 'love', 'thing'], ['flashlight', 'tag', 'love', 'play', 'game', 'dark'], ['wish', 'mom', 'world', 'happi', 'relax', 'mother', 'day', 'may', 'get', 'spend', 'day', 'feet', 'pamper'], ['alright', 'add', 'egg', 'mayb', 'sort', 'leftov', 'meat', 'not', 'bad', 'lt'], ['tomorrow', 'mother', 'day', 'n', 'sis', 'go', 'make', 'onigiri', 'go', 'kewl', 'not', 'wait', 'tomorrow', 'gt', 'lt'], ['oohh', 'yaay', 'like', 'love', 'ya'], ['glad', 'hear', 'tournament', 'soon', 'ksn', 'say', 'quot', 'need', 'practic', 'quot'], ['got', 'new', 'silverstein', 'cd', 'aha', 'amaz', 'high', 'recomend'], ['ooh', 'question', 'chain', 'hang', 'low', 'not', 'know', 'sorri'], ['think', 'go', 'fun', 'mayb', 'chang', 'come'], ['exact', 'pic', 'except', 'hubbi', 'amp', 'chihuahua', 'tucker', 'cute'], ['posit', 'thinker', 'sure', 'keep', 'around'], ['bore', 'need', 'peopl', 'rsmv', 'jagex', 'not', 'let', 'say', 'rsmv', 'unless', 'first', 'word', 'say', 'sentenc', 'sad'], ['beauti', 'dream', 'snuggl', 'beauti', 'babi', 'done', 'outdoor'], ['lol', 'r', 'not', 'loser', 'drove', 'hour', 'day', 'need', 'rest', 'day', 'still', 'tire', 'lol'], ['tri', 'make', 'feel', 'home'], ['not', 'wait', 'crack', 'open', 'doubt', 'learn', 'well', 'support', 'evangel'], ['ahh', 'imagin', 'look', 'luckyy', 'hope', 'fun'], ['thank', 'real', 'name', 'nadia'], ['great', 'hope', 'run', 'end', 'woo', 'hoo', 'got', 'love'], ['happi', 'mommah', 'day', 'mom'], ['welcom', 'welcom'], ['song', 'call', 'stolen', 'soo', 'amaz', 'dashboard', 'confession'], ['gave', 'homeless', 'ladi', 'name', 'rubi', 'ice', 'cream', 'sandwich', 'cigarett', 'deed', 'day', 'p'], ['chill', 'feel', 'realli', 'nice'], ['welcom', 'twitter', 'love', 'not', 'wait', 'see', 'next', 'month'], ['kind', 'swear', 'alway', 'feed', 'someon'], ['forgot', 'much', 'love', 'song', 'itun', 'love', 'shuffl', 'love', 'watch', 'prank', 'ap', 'tour'], ['yes', 'haahaa', 'break', 'jellybeaniess'], ['oh', 'believ', 'soo', 'think', 'belong', 'elsewher', 'say', 'not', 'think'], ['mine', 'lt'], ['happi', 'mother', 'day', 'mother'], ['ftsk', 'merci', 'merced', 'amaz', 'tonight', 'alway'], ['thank', 'makeup', 'art', 'come', 'hous', 'everi', 'morn', 'ha', 'ha'], ['thank', 'afrin', 'nasal', 'spray', 'also', 'got', 'giant', 'teacup', 'tonight'], ['happi', 'mother', 'day', 'special', 'mom', 'love', 'mommi'], ['got', 'home', 'hour', 'track', 'feel', 'real', 'good', 'run', 'nice', 'ab', 'work', 'push', 'up', 'haha'], ['interest', 'today', 'say', 'least', 'overal', 'good', 'day'], ['watch', 'white', 'hous', 'dinner', 'speech', 'barack', 'mani', 'kind', 'awesom'], ['thank', 'follow', 'friday', 'love'], ['hi', 'eric', 'hope', 'beauti', 'saturday'], ['soo', 'happi', 'kellz', 'back', 'tn', 'bout', 'hang', 'time'], ['quot', 'say', 'look', 'yummi', 'amp', 'want', 'tast', 'human', 'not', 'quot', 'lmfao', 'make'], ['best', 'sticker', 'ever', 'also', 'dig', 'hair', 'gotten', 'long', 'sinc', 'seen', 'last'], ['thank', 'yes', 'yes', 'hooray'], ['joke', 'love'], ['star', 'trek', 'great', 'yet', 'minor', 'detail', 'need', 'work', 'give', 'thumb', 'regardless'], ['mm', 'chocki', 'cake', 'oven', 'smell', 'delici'], ['umm', 'come', 'twin', 'slurpe', 'car', 'twin', 'go', 'pretti', 'epic'], ['beauti', 'outsid', 'wish', 'new', 'york', 'citi', 'area', 'pretti', 'cool', 'hip', 'trendi'], ['fun', 'doll', 'mom', 'danc', 'funni'], ['averag', 'per', 'hour', 'work', 'today', 'got', 'love', 'holiday'], ['listen', 'last', 'night', 'underground', 'screen', 'awesom', 'job'], ['quot', 'quot', 'calendar', 'quot', 'colland', 'quot', 'bahaha', 'part', 'hilari', 'cours', 'whole', 'thing', 'hilari'], ['bif', 'love', 'bulid'], ['aim', 'get', 'readi', 'go', 'bed', 'run', 'tommorow', 'mother', 'day', 'wish', 'luck'], ['mom', 'watch', 'new', 'video', 'actual', 'lol', 'love', 'xoxo'], ['realli', 'good', 'day', 'today'], ['hahhaa', 'okaay', 'ili', 'lmfao'], ['minotouro', 'fight'], ['final', 'go', 'bed', 'got', 'work', 'lot', 'love'], ['right', 'time', 'happi', 'face'], ['read', 'cryin', 'read', 'laughin', 'enjoy', 'ride', 'enlighten', 'inspir', 'letter', 'young', 'sister', 'thank', 'hill'], ['saw', 'zack', 'miri', 'make', 'porno', 'soo', 'good'], ['hungryy', 'go', 'eat', 'tradit', 'indian', 'pakistani', 'way', 'woowoo', 'hahaha', 'gt'], ['pik', 'hair', 'braid', 'scrub', 'make', 'relaxx', 'tonight', 'fun'], ['told', 'ya', 'good', 'girl', 'see', 'halo', 'everyth'], ['hey', 'tduke', 'flwd', 'immedi', 'dhmptn', 'mention', 'bit', 'tattoo', 'love', 'twitter'], ['love', 'app', 'thing', 'hella', 'awesom', 'bro'], ['sorri', 'got', 'behind', 'follow', 'still', 'catch', 'follow', 'folk', 'includ'], ['welcom'], ['relax', 'night', 'home', 'best', 'peopl'], ['quot', 'coome', 'feel', 'right', 'quot', 'hahaha'], ['fought', 'hour', 'claim', 'victori', 'hate', 'electron'], ['came', 'back', 'nice', 'bike', 'ride', 'famili', 'refresh', 'thank', 'shower'], ['right', 'pull', 'chair', 'welcom'], ['play', 'mythic', 'brawl', 'order', 'get', 'good', 'screenshot', 'instead', 'got', 'perfect'], ['cute'], ['bought', 'cheesecak', 'ice', 'cream', 'last', 'week', 'think', 'good', 'suck', 'much', 'take'], ['interest', 'watch', 'snl', 'ciara', 'justin', 'timberfak'], ['love', 'mom', 'happi', 'mother', 'day', 'mommi'], ['made', 'night', 'way', 'funni'], ['noth', 'perfect', 'life', 'darn'], ['hope', 'weather'], ['good', 'more'], ['women', 'scienc', 'amp', 'technolog', 'confer', 'la', 'jolla', 'interest', 'day', 'met', 'realli', 'great', 'peopl'], ['feelin', 'realli', 'aw', 'mono', 'suck', 'much', 'music'], ['thank', 'ffs', 'friend'], ['nice', 'idea', 'gift', 'crochet', 'good', 'idea', 'look', 'onlin', 'youtub', 'video', 'show', 'lefti', 'crochet'], ['want', 'say', 'taylor', 'swift', 'hayley', 'william', 'great', 'love', 'voic'], ['feel', 'like', 'dress', 'heck', 'amp', 'put', 'make', 'haha'], ['relax'], ['twitter', 'text', 'ipod', 'love', 'invent', 'mutitask'], ['search', 'ryan', 'carera', 'amp', 'josh', 'kelley', 'realli', 'good'], ['rock', 'guy', 'world', 'night', 'make', 'pancak', 'next', 'morn'], ['hellerr', 'new', 'followerss', 'tricina', 'amp', 'uhhm', 'cool'], ['realli', 'excit', 'queen', 'bee', 'power', 'mom', 'list', 'feel', 'realli', 'realli', 'honor', 'nielsenpowermom'], ['give', 'mother', 'anyth', 'special', 'make', 'cake', 'make', 'sure', 'mine', 'get', 'stressfre', 'day', 'cheesi', 'work'], ['ahh', 'wonder', 'adaptor'], ['happi', 'mother', 'day'], ['know', 'love'], ['love', 'new', 'profil', 'pic'], ['thank', 'great', 'time'], ['basebal', 'game', 'whoo', 'hoo', 'banquet', 'yesterday', 'hyhtt', 'soo', 'fun'], ['woah', 'realli', 'good', 'rain', 'earlier', 'rather', 'nice'], ['bring', 'hk', 'loung', 'tomorrow', 'drink', 'till', 'kareok', 'think', 'nice', 'sunday'], ['oh', 'usual', 'warn', 'new', 'follow', 'tend', 'canuck', 'game', 'apolog', 'advanc'], ['happi', 'mothr', 'day', 'thaa', 'mom', 'outt', 'thr'], ['loll', 'cours', 'amp', 'love', 'new', 'song'], ['better', 'also', 'yes', 'unf', 'unf', 'lt', 'still', 'not', 'gotten', 'way', 'smack'], ['hug', 'love', 'mamabear', 'happi', 'mom', 'day', 'case', 'not', 'see', 'around', 'tomorrow'], ['got', 'back', 'sing', 'loud', 'concert', 'fuckin', 'amaz'], ['cute'], ['midg', 'definit', 'tie', 'first', 'complet', 'dumb', 'yeah', 'punk', 'inde'], ['happi', 'mother', 'day', 'oh', 'love', 'mom', 'heheh', 'happi', 'mom', 'day'], ['glad', 'lot', 'happier', 'barakitten', 'lt', 'see', 'yah', 'juli'], ['aww', 'thank', 'glad', 'appreci', 'weather', 'much', 'yesterday'], ['extrem', 'clever', 'dear'], ['fantast', 'thank'], ['lucki', 'awesom'], ['come', 'kirk', 'hook', 'wii', 'eet'], ['back', 'long', 'day', 'naz', 'gunna', 'crash', 'tomorrow', 'mother', 'day', 'edit', 'photo', 'today', 'hangin', 'mom', 'etc'], ['good', 'home'], ['great', 'weekend', 'mononok', 'may', 'tweet', 'insid', 'movi', 'theater', 'either', 'monday', 'tuesday', 'lol'], ['final', 'make', 'headway', 'famili', 'room', 'home', 'final', 'begin', 'look', 'like', 'way', 'dial', 'go', 'die'], ['spend', 'night', 'mom', 'tommi', 'order', 'pizza', 'hut', 'yum'], ['aww', 'bad', 'not', 'would', 'entertain', 'thought', 'enter'], ['wake', 'yuup', 'still', 'go', 'tonight', 'better', 'believ'], ['accumul', 'money', 'use', 'fanci', 'financ', 'app', 'think', 'get', 'anoth', 'cd', 'ira', 'save', 'hous', 'crazi'], ['wind', 'love', 'low', 'key', 'day'], ['parti', 'long', 'twitter', 'see', 'ya', 'mornin'], ['haha', 'state', 'pride', 'import'], ['mee', 'sound', 'delici'], ['thank', 'followfriday'], ['hope', 'nerdprom', 'sound', 'like', 'lot', 'fun', 'thank'], ['look', 'forward', 'read', 'post', 'like', 'bullshit', 'write', 'often', 'learn', 'thing'], ['end', 'magic', 'dream', 'win', 'along', 'sway', 'back', 'forth', 'within', 'site', 'sleep', 'mommi'], ['time', 'finish', 'essay', 'sunday', 'woop'], ['omg', 'pic', 'youu', 'look', 'cuut'], ['succes', 'love'], ['watch', 'anoth', 'episod', 'jona', 'better', 'hannah', 'montana', 'much', 'true'], ['hi', 'ty', 'good', 'morn', 'happi', 'mom', 'day', 'mom', 'love', 'entir', 'famili', 'ad', 'fb', 'love', 'sweet'], ['aural', 'good'], ['hungri', 'singl', 'head', 'golf', 'rang', 'soon'], ['haha', 'love', 'aime'], ['hope', 'great', 'weekend', 'say', 'hi', 'fam'], ['thank', 'ff'], ['true', 'think', 'import', 'sensit', 'relat', 'other', 'empathi', 'remind', 'not', 'judg', 'book', 'cover'], ['got', 'yr', 'home', 'amp', 'hous', 'amp', 'alway', 'bring', 'friend', 'hope', 'bless', 'day'], ['rain', 'rain', 'rain', 'wow', 'actual', 'love', 'rain'], ['aww', 'jim', 'jam', 'good', 'dodg', 'meatbal', 'woo'], ['molli', 'born', 'birthday', 'cue', 'twilight', 'zone', 'music'], ['happi', 'mother', 'day', 'mang', 'thank', 'love'], ['wish', 'mother', 'flatworld', 'happi', 'amp', 'awesom', 'mother', 'day'], ['way', 'order', 'yer', 'merch', 'yesterday', 'lt'], ['yes', 'want', 'keep', 'go', 'would'], ['oo', 'studi', 'today', 'outsid', 'wear', 'sundress', 'hope', 'not', 'get', 'awkward', 'tan', 'line', 'haha'], ['sorri', 'squirrellist', 'talk', 'black', 'sliver', 'squirrel'], ['favourit', 'song', 'tonight', 'cheer', 'tokyo', 'polic', 'club'], ['bahaha', 'look', 'like', 'kung', 'fu', 'panda', 'wake', 'morn'], ['love', 'well'], ['think', 'alway', 'offtop', 'sometim', 'inappropri', 'germin', 'quot', 'fruit', 'pick', 'quot', 'joke', 'etc'], ['fun', 'tonight'], ['welcom', 'deserv', 'followfriday', 'everi', 'day'], ['ohh', 'bad', 'yes', 'heh', 'heh'], ['realli', 'realli', 'like', 'song', 'love', 'stori', 'taylor', 'swift'], ['thank', 'advic', 'went', 'doctor', 'slept', 'lot', 'yesterday', 'must', 'med'], ['got', 'new', 'ipod', 'life', 'good'], ['way', 'not', 'know', 'sing', 'rof', 'without', 'doubt', 'fave', 'done', 'idol', 'thus', 'far', 'moment'], ['twitter', 'soo', 'pretti', 'damn', 'cool'], ['amend', 'right', 'big', 'pimpin', 'got', 'say', 'posit', 'right', 'best', 'man', 'time', 'tonight', 'thrd'], ['would', 'think', 'pres', 'would', 'afraid', 'would', 'pun', 'k'], ['truth'], ['decid', 'wolf', 'futur', 'star', 'trek', 'logo', 'game', 'would', 'much', 'cooler', 'chewi', 'star', 'war'], ['beauti', 'song', 'anyon', 'could', 'use', 'pick', 'tonight'], ['hot', 'personifi'], ['lol', 'twitter', 'addict'], ['blackberri', 'ran', 'juic', 'middl', 'miser', 'twitter', 'email', 'beck', 'call', 'truli', 'aw'], ['woke', 'delight', 'nap', 'not', 'desrib', 'much', 'success', 'involv', 'nap', 'sat', 'rhubarb'], ['happi', 'mother', 'day'], ['get', 'see', 'hope', 'meet', 'guy', 'next', 'week', 'rotr', 'not', 'wait', 'adelita', 'way', 'invinc'], ['pue', 'bien', 'small', 'world', 'small', 'world', 'yo', 'amo', 'la', 'chiquita', 'esa', 'great', 'friend'], ['made', 'cake', 'mi', 'madr', 'goodd'], ['excel', 'point'], ['realli', 'cool'], ['congratul', 'check', 'one', 'list'], ['teach', 'peopl', 'beauti', 'twitter'], ['usher', 'guy', 'made', 'mother', 'day', 'realli', 'awesom', 'today', 'thank', 'come', 'earli', 'prep', 'surpris', 'gift', 'mom'], ['oh', 'awesom', 'yahoo', 'good', 'night', 'sleep', 'tight', 'not', 'let', 'bed', 'bug', 'bite'], ['dakota', 'first', 'bath', 'sinc', 'spay', 'heaven'], ['yes'], ['mine', 'hayley', 'great'], ['hayley', 'william', 'pretti', 'much', 'amazz'], ['taylor', 'back', 'nashvill', 'la', 'well', 'trip', 'ya', 'fun', 'love', 'ya', 'gir'], ['woot', 'woot', 'super', 'cool'], ['ton', 'fun', 'w', 'muffin', 'today'], ['happi', 'mother', 'day', 'mum', 'life', 'not'], ['saw', 'new', 'star', 'trek', 'movi', 'good', 'zachari', 'quinto', 'amazingg'], ['laundri', 'tonight', 'guess', 'admit', 'pave', 'way'], ['doubl', 'cheeseburg', 'fri', 'golden', 'sicker', 'dog', 'tomorrow'], ['star', 'trek', 'actual', 'realli', 'good'], ['oh', 'yes', 'amaz', 'nice', 'next', 'go', 'drive', 'trust', 'us', 'haha'], ['fun', 'haha', 'guy', 'american', 'reject', 'look', 'like', 'crack'], ['sure', 'long', 'said', 'glad', 'like'], ['yeah', 'freedom', 'awesom', 'great', 'littl', 'independ'], ['dw', 'funni'], ['girl', 'make', 'giggl', 'twinz', 'twinz', 'godda', 'hit', 'bbq'], ['need', 'chang', 'way', 'instead', 'weak', 'love', 'great', 'role', 'model'], ['get', 'readi', 'concert', 'tonight', 'yay'], ['elop', 'not', 'wait', 'see', 'pictur', 'dress', 'breath', 'take'], ['first', 'night', 'myer', 'not', 'lydia', 'actual', 'excit', 'summer'], ['lao', 'mein', 'spanikopita', 'haha', 'would', 'know'], ['anim', 'ad', 'work', 'one', 'favorit', 'thing', 'much', 'saturday', 'night', 'fun'], ['leon', 'look', 'supa', 'fli', 'mini', 'couch'], ['final', 'made', 'jp', 'lick', 'coolidg', 'corner', 'oreo', 'soft', 'serv'], ['quot', 'not', 'rape', 'scream', 'surpris', 'quot', 'custom', 'said', 'haha', 'via', 'lmao'], ['got', 'back', 'six', 'flag', 'wick', 'fun', 'even', 'though', 'almost', 'die'], ['haha', 'thank', 'histori', 'invent', 'televis', 'influenc', 'america', 'lol'], ['write', 'music', 'lit', 'final', 'paper', 'mozart', 'ein', 'klein', 'nashtmusik', 'mom', 'give', 'actual', 'great', 'time'], ['mm', 'mcdonald', 'coffe', 'soo', 'go', 'hookah', 'tonight', 'abbster'], ['way', 'still', 'not', 'believ', 'awesom', 'newjabbakidz', 'perform', 'scream', 'pc'], ['noth', 'better', 'grandaught', 'smile', 'noth', 'feel', 'better', 'big', 'hug', 'grandkid', 'hoot'], ['saw', 'shoot', 'star', 'made', 'wish'], ['lol', 'fine', 'way', 'weekend'], ['finish', 'ysc', 'runthrough', 'servic', 'go', 'awesom'], ['help', 'pay', 'reactiv'], ['watch', 'quot', 'thing', 'quot', 'comcast', 'miss', 'boo', 'like', 'crrazi'], ['thank', 'follow'], ['lmao', 'haha', 'nice', 'lolz', 'good', 'though', 'wait', 'lol'], ['good', 'morn', 'everbodi'], ['mom', 'pril'], ['right'], ['good', 'night', 'sleep', 'good', 'mornin', 'xd'], ['alright', 'parti', 'success', 'fun', 'amp'], ['know', 'excit'], ['mm', 'late', 'night', 'bruster', 'ice', 'cream', 'om', 'nom', 'nom', 'nom'], ['happi', 'mother', 'day', 'mom', 'mother', 'world'], ['way', 'still', 'not', 'believ', 'awesom', 'newjabbakidz', 'perform', 'scream', 'pc'], ['reach', 'cellgroup', 'leader', 'hous', 'surpris', 'dri', 'haha'], ['not', 'ya', 'love', 'free', 'night', 'catch', 'dvr', 'show', 'antm', 'ha'], ['best', 'day', 'ever', 'miss', 'tomorrow'], ['food', 'look', 'amaz', 'dessert', 'frozen', 'grand', 'marnier', 'souffl', 'cours', 'eat', 'bar'], ['lone', 'battl', 'friend', 'fought', 'valiant'], ['got', 'back', 'greenlak', 'nice', 'day', 'today'], ['best', 'husband', 'ever', 'realli', 'lucki', 'hope', 'wonder', 'saturday', 'even'], ['haha', 'nice', 'ring', 'let', 'us', 'get', 'use', 'ok', 'iloveyoutoo'], ['way', 'still', 'not', 'believ', 'awesom', 'newjabbakidz', 'perform', 'scream', 'pc'], ['great', 'mother', 'day'], ['cool', 'guid', 'best', 'tip', 'not', 'use', 'unless', 'absolut', 'need'], ['zz', 'take', 'mom', 'breakfast', 'tomorrow', 'shall', 'quit', 'treat'], ['thank', 'guy', 'follow'], ['pretti', 'hope', 'win'], ['happi', 'mother', 'day', 'ya', 'tomorrow'], ['read', 'status', 'updat', 'amp', 'want', 'b', 'sure', 'follow', 'list', 'hope', 'r', 'wondefl', 'wkend'], ['not', 'care', 'netsexor', 'cam', 'rout', 'heaven', 'howev', 'lobster', 'sound', 'super', 'good', 'almost', 'tempt', 'go', 'get'], ['one', 'wish', 'video', 'compil', 'thrust'], ['nice', 'long', 'nap'], ['haha', 'thank'], ['write', 'research', 'tire', 'foolish', 'educ', 'amp', 'move', 'forward', 'go', 'marri', 'white', 'boy', 'right'], ['go', 'canada', 'made', 'nikki', 'payn', 'comic', 'well', 'soo', 'yeah', 'funni', 'perv', 'teen', 'peopl', 'famili'], ['hey', 'pleasant', 'surpris'], ['jump', 'nearest', 'bridg', 'not'], ['whoop', 'start', 'trek', 'start', 'duh'], ['hey', 'jodi', 'ugg', 'bore', 'made', 'sunda', 'c', 'monday', 'hahaha', 'ryme', 'loll', 'cu', 'school'], ['happi', 'sunday'], ['omg', 'much', 'fun', 'watc', 'hous', 'bunni', 'courto', 'isa', 'ledg', 'send', 'link', 'lt'], ['love', 'mom', 'best', 'mom', 'planet'], ['sometim', 'wish', 'twitter', 'facebook', 'quot', 'like', 'quot', 'could', 'give', 'thumb', 'great', 'job', 'either', 'way', 'suck', 'way'], ['weird', 'mood', 'muahaz'], ['much', 'fun', 'famili', 'happi', 'birthday', 'beauti', 'aunt'], ['crappi'], ['good', 'morn'], ['great', 'point', 'not', 'shit', 'wood', 'sara', 'know', 'better', 'haha'], ['love', 'paramor', 'welcom', 'back'], ['tsx', 'nice', 'cuz', 'new', 'handl', 'nice', 'not', 'hors'], ['would', 'love', 'sleep', 'pete', 'lmfao', 'jk'], ['hey', 'guy', 'went', 'jenni', 'hous', 'today', 'much', 'fun', 'everyon', 'els', 'guy', 'doo'], ['hope', 'great', 'day', 'tomorrow', 'happi', 'mother', 'day', 'let', 'us', 'know'], ['new', 'song', 'amaz'], ['feel', 'special', 'first', 'guy', 'give', 'flower'], ['holi', 'smoke', 'star', 'trek', 'freak', 'awesome'], ['yeah', 'think', 'ahaha'], ['hey', 'huge', 'fan', 'hope', 'fun', 'wango', 'tango'], ['got', 'back', 'awesom', 'need', 'danc', 'often', 'overal', 'awesom', 'night'], ['walk', 'street', 'harlem', 'home', 'sweet', 'home'], ['hahaa', 'awesome'], ['got', 'done', 'watch', 'bedtim', 'stori', 'love', 'movi'], ['yep', 'toler', 'noth', 'facebook', 'group'], ['feel', 'like', 'watch', 'twilight', 'amp', 'enjoy'], ['proud', 'nau', 'graduat', 'friend', 'get', 'readi', 'celebr', 'tonight', 'intern'], ['guy', 'look', 'nice'], ['wtf', 'lmao', 'got', 'hit', 'head', 'bloodi', 'ball'], ['mgm', 'grand', 'mraz', 'stage', 'doubl', 'back', 'open', 'lot', 'old', 'memori', 'flood', 'back'], ['congratul', 'win', 'indi', 'award'], ['good', 'day'], ['alright', 'sorri', 'think', 'go', 'anyway'], ['realis', 'got', 'home', 'left', 'mine', 'fridg', 'welcom', 'like'], ['alright', 'not', 'want', 'overdu', 'lol', 'funni', 'nite', 'nite'], ['go', 'bed', 'love', 'jona', 'brother', 'last', 'time', 'megan', 'togeth', 'weekend', 'premier', 'jona', 'lt'], ['best', 'kind', 'gum', 'ever', 'bought', 'pack'], ['got', 'home', 'show', 'open', 'fantast', 'thank', 'everyon', 'came'], ['long', 'pain', 'mile', 'today', 'knee', 'ach', 'approach', 'year', 'rough', 'not', 'accept', 'well', 'glass', 'draft', 'help'], ['guy', 'awesom', 'coupl'], ['enjoy', 'first', 'day', 'summer'], ['nice', 'see', 'twitter'], ['good', 'catch', 'thank', 'put', 'new', 'widget'], ['happi', 'mother', 'day'], ['awesom', 'want', 'roll', 'becom', 'mogul', 'status'], ['ooh', 'storm', 'alway', 'welcom', 'news', 'happi', 'mother', 'day'], ['mother', 'citi', 'terrel', 'texa', 'district', 'council', 'seat', 'lol', 'happi', 'mother', 'day'], ['pic', 'ah', 'probabl', 'see', 'work', 'point', 'hope', 'grow', 'much'], ['happi', 'mother', 'day', 'mum'], ['mrskutcher', 'amp', 'aplusk', 'two', 'funni'], ['good', 'weekend'], ['happi', 'mother', 'day'], ['happi', 'mother', 'day', 'mum'], ['like', 'cooki', 'go', 'love', 'cooki', 'lar', 'teten', 'cooki', 'come', 'see', 'us'], ['got', 'back', 'grandpar', 'supris', 'anniversari', 'soo', 'much', 'fun'], ['good', 'day', 'go', 'get', 'bed'], ['fort', 'green', 'brooklyn', 'flea', 'love', 'look', 'forward', 'next', 'weekend', 'alreadi'], ['haha', 'watch', 'funni', 'ass', 'video', 'youtub', 'made', 'day'], ['not', 'ever', 'weig', 'north', 'avoid', 'drive', 'home'], ['shock', 'amp', 'put', 'thing', 'whole', 'new', 'empow', 'light', 'not'], ['well', 'propel', 'peopl', 'chang', 'direct', 'point', 'wast', 'day', 'someth', 'lost', 'passion'], ['well', 'tonight', 'would', 'good', 'time', 'watch'], ['thank', 'mom', 'seed', 'larger', 'alreadi', 'crack', 'plant', 'hope', 'avalina', 'not', 'dud'], ['snappi', 'deliv', 'tea', 'ice', 'cream', 'love', 'sister'], ['go', 'church', 'momma', 'day', 'almost'], ['great', 'parti', 'alenka', 'happi', 'birthday', 'chicki', 'lt'], ['sweet', 'tri', 'earn', 'crown', 'gluten', 'free', 'bake'], ['bonfir', 'fave'], ['make', 'wish'], ['patrick', 'come', 'say', 'hi'], ['haha', 'right'], ['alway', 'champion', 'leagu', 'parti', 'awesom'], ['way', 'happi', 'mom', 'day', 'hannah', 'mom', 'han', 'mom', 'yey', 'mom', 'unit', 'day'], ['grill', 'chicken', 'broccolli', 'water', 'yummi', 'healthi', 'well', 'put', 'butter', 'veggi', 'whatev'], ['got', 'littl', 'much', 'sun', 'today'], ['lol', 'yes', 'total', 'agre', 'blog', 'well'], ['honest', 'say', 'themat', 'big', 'part', 'blog', 'enthusiam', 'love', 'abl', 'want'], ['happi', 'great', 'glowi', 'ravey', 'beeri', 'night', 'smokey', 'pizzari', 'night', 'cool', 'friend', 'love', 'liz', 'x'], ['watch', 'chelsea', 'late', 'love', 'lt'], ['tonight', 'good', 'night', 'everyon'], ['well', 'could', 'not', 'get', 'real', 'clear', 'shot', 'got', 'best', 'peopl', 'walk', 'admit', 'er'], ['congrat', 'proud', 'girl'], ['matter', 'love', 'take', 'pick', 'ha'], ['wish'], ['happi', 'birthday', 'sorri', 'blank', 'one', 'sister', 'mess'], ['loov', 'star', 'trek', 'run', 'famili'], ['thank'], ['l', 'ice', 'grand', 'french', 'vanilla', 'soy', 'milk', 'starbuck', 'mean', 'summaa', 'come'], ['new', 'passion'], ['not', 'make', 'smoke', 'thank', 'r'], ['girl', 'crazi', 'love', 'hahaha', 'got', 'yo', 'lp', 'chap'], ['awesom', 'mayb', 'someday', 'find', 'book', 'bestsel', 'list', 'lol'], ['roflmfao', 'love', 'us', 'better', 'not'], ['peanut', 'butter', 'soup', 'amaz', 'everyth', 'els', 'soup', 'higher', 'form', 'amaz'], ['cute', 'man', 'cute', 'cours', 'remind', 'scion'], ['thank', 'fabric', 'addict', 'late', 'bought', 'soo', 'much'], ['realli', 'awesom'], ['listen', 'metal', 'shop', 'mooney', 'good'], ['happi', 'mother', 'day'], ['nice', 'order', 'mom', 'gift', 'sister', 'someth', 'differ', 'unexpect'], ['thank', 'first', 'one', 'wish', 'happi', 'mother', 'day'], ['could', 'not', 'true', 'like', 'momma', 'style'], ['heart', 'girl', 'let', 'us', 'hang', 'soon'], ['watch', 'fav', 'play', 'game', 'quot', 'ever', 'notic', 'men', 'start', 'act', 'around', 'spring', 'time', 'quot', 'shant', 'smith'], ['perfect', 'night', 'nj'], ['god', 'good'], ['not', 'feel', 'pressur', 'right', 'happi', 'mother', 'day', 'peopl'], ['probabl', 'coolest', 'thing', 'ever', 'done'], ['anyth', 'bookmark', 'keychain', 'surpris'], ['lmao', 'dimpl', 'naww', 'cute', 'ok', 'ill', 'tri', 'rememb', 'first', 'winter', 'dimpl', 'day'], ['boy', 'hes', 'cute', 'hes', 'got', 'six', 'pack', 'yum', 'fun', 'touchin'], ['today', 'love', 'day', 'fun', 'even'], ['wish', 'quot', 'like', 'quot', 'option', 'like', 'fb', 'thing', 'like'], ['definit'], ['free', 'free', 'peski', 'registr', 'enjoy'], ['found', 'best', 'songd', 'stuck', 'head', 'relient', 'k', 'know', 'everi', 'word', 'finish'], ['love', 'life', 'late', 'look', 'forward', 'go', 'see', 'samantha', 'hang', 'natali', 'right'], ['makeup', 'cute', 'dress', 'readi', 'go'], ['congrat', 'graduat', 'colleg'], ['beauti', 'albeit', 'windi', 'time', 'night'], ['love', 'black', 'eye', 'pea', 'mani', 'memori', 'watch', 'hulk'], ['love', 'guy', 'amaz'], ['iloveyoumore'], ['good', 'luck', 'babi'], ['thank'], ['love', 'gossip', 'girl', 'episod', 'wrath', 'con'], ['gift', 'publish', 'episod', 'align', 'sensit', 'level', 'min', 'yoga', 'class'], ['put', 'tv', 'canuck', 'game', 'score', 'yaay', 'come', 'vanciti', 'babi', 'know', 'not', 'believ', 'watch', 'hockey', 'either'], ['super', 'bueno', 'ftw', 'proud', 'guy'], ['tell', 'obvious', 'real', 'life', 'make', 'great', 'entertain', 'tv', 'great', 'tri', 'figur', 'killer'], ['tell', 'us', 'experi', 'love', 'youu'], ['jona', 'absolut', 'heartwarm', 'time', 'bed', 'goodnight'], ['end', 'te', 'funniest', 'see', 'know', 'paranoif', 'alway', 'stuck', 'head', 'love'], ['aha', 'mom', 'super', 'power', 'guilt'], ['realli', 'bahaha', 'love', 'relat', 'peopl', 'haha'], ['got', 'reconnect', 'dear', 'friend', 'tonight', 'lucki', 'mani', 'great', 'peopl', 'life', 'bless'], ['go', 'celebr', 'mother', 'day', 'famili', 'go', 'start', 'parti', 'tonit'], ['fun', 'night', 'bekah', 'talkin', 'stuff', 'wuv'], ['dedic', 'today', 'mother', 'day', 'video', 'without', 'mom', 'dad', 'would', 'not', 'tweet'], ['lucki', 'belong'], ['nice', 'cousin', 'left', 'hous', 'daughter', 'daddi', 'girl', 'sweet'], ['happi', 'mother', 'day', 'beach', 'famili', 'warm', 'clear', 'night', 'beauti', 'full', 'moon'], ['make', 'video', 'hitrecord', 'hope', 'come', 'well', 'first', 'record'], ['alon', 'home', 'nice', 'nice'], ['sure', 'wife', 'seem', 'like', 'cool', 'cat'], ['hang', 'roomi', 'ador', 'gentlemen', 'live', 'great', 'peopl', 'good', 'talk', 'discuss', 'boy', 'issu'], ['woah', 'love', 'new', 'twitter', 'app', 'mani', 'new', 'thing', 'got', 'finish', 'watch', 'video', 'good'], ['hey', 'david', 'hot'], ['great', 'time', 'surpris', 'parti', 'got', 'good'], ['fun', 'got', 'retweet', 'bot'], ['lol', 'tiz', 'good', 'song'], ['star', 'trek', 'good', 'time'], ['crawl', 'bed', 'super', 'happi', 'penguin', 'tonight'], ['justin', 'timberlak', 'soo', 'funni'], ['phase', 'success', 'self', 'discoveri', 'vital', 'phase', 'min', 'away', 'cool', 'amp', 'classi', 'babi', 'shout', 'quot', 'quot', 'yeah', 'mane'], ['dude', 'awesom'], ['excit', 'pari', 'ooh', 'lala', 'look', 'forward', 'know', 'long', 'long', 'time', 'love', 'hug', 'n', 'kiss', 'g'], ['today', 'alot', 'fun', 'love', 'famili', 'sammi', 'hernandez', 'caitlin', 'hugh', 'goodnight'], ['love', 'john', 'mayer', 'updat', 'model', 'hot', 'sun', 'sweati', 'jk', 'serious'], ['nice', 'good', 'night'], ['sin'], ['perfect', 'song'], ['heart', 'face'], ['play', 'ghost', 'onlin', 'realli', 'interest', 'new', 'updat', 'kirin', 'pet', 'metamorph', 'third', 'job', 'not', 'wait', 'dragon', 'pet'], ['new', 'pickkshaa', 'realli', 'big', 'look', 'milki', 'yaay'], ['birthday', 'may', 'right', 'probabl', 'happi', 'birthday', 'anyway'], ['pretti', 'babi'], ['oh', 'yah', 'angel', 'came', 'harrass', 'tri', 'break', 'hous', 'lol', 'burgen'], ['not', 'wait', 'see', 'boy', 'tomorrow'], ['watch', 'beauti', 'amp', 'beast', 'haha'], ['thank', 'good', 'friend', 'come', 'hang', 'ear', 'know'], ['awesom', 'kind'], ['nice', 'win', 'dodger', 'giant'], ['whoohoo', 'went', 'get', 'movi', 'junk', 'food', 'women', 'night', 'mwahaha', 'gt'], ['um', 'realli', 'scari', 'pleas', 'safe', 'way', 'ill', 'orlando', 'next', 'week'], ['got', 'good', 'happi', 'mother', 'day'], ['ha', 'total', 'go', 'journal', 'major', 'perfect', 'fit'], ['white', 'hous', 'thing', 'lifesav'], ['today', 'event'], ['take', 'fun'], ['watch', 'one', 'fine', 'day', 'eat', 'cereal', 'start', 'good', 'sunday', 'good', 'movi'], ['follow', 'new', 'sanctuari', 'fan', 'see', 'wonder', 'sanctuarysunday', 'good', 'meet'], ['thank', 'great', 'even', 'better', 'soon', 'get', 'wallet', 'grubbi', 'littl', 'hand', 'lol'], ['go', 'cincinnati', 'day', 'old', 'korea', 'date', 'someon', 'special'], ['watch', 'quot', 'steel', 'magnolia', 'quot', 'go', 'bed', 'babysit', 'one', 'tomorrow', 'give', 'mommi', 'gift', 'night', 'lt'], ['husband', 'think', 'twitter', 'make', 'creeper', 'whatev'], ['retweet', 'pleas', 'awesom', 'kawaii', 'anim', 'cosplay', 'item'], ['awesom', 'famili', 'own', 'flower', 'love', 'kid', 'seem', 'lot', 'fun'], ['lol', 'good', 'men', 'watch', 'flick', 'sigh', 'good', 'flick', 'far', 'call', 'quot', 'said', 'quot'], ['yes', 'thank'], ['would', 'soo', 'honour', 'cld', 'chk', 'beat', 'perhap', 'sm', 'advic', 'wat', 'nd', 'improv', 'da', 'overal', 'sound', 'music'], ['good', 'not', 'think', 'join', 'later', 'hyper', 'hell', 'though', 'whee'], ['turn', 'hope', 'get', 'neww', 'cd', 'funki', 'reel', 'music', 'todayi'], ['thank', 'follow'], ['rough', 'hubbi', 'knee', 'surgeri', 'help', 'end', 'let', 'us', 'know', 'result', 'keep', 'prayer'], ['care', 'hockey'], ['way', 'earli', 'anyway', 'nigth', 'night', 'love'], ['got', 'degre', 'bs'], ['not', 'wait', 'next', 'twitter'], ['look', 'like', 'fun'], ['thank', 'download', 'trial', 'version', 'stuffit', 'work', 'good', 'advic'], ['yeah', 'hope', 'not', 'mayb', 'save', 'get', 'christma', 'find'], ['want', 'wish', 'mom', 'happi', 'mother', 'day', 'hope', 'treat', 'like', 'queen'], ['yet', 'understand', 'sentenc', 'ever', 'type', 'kind', 'learn', 'foreign', 'languag', 'amp', 'love', 'quot'], ['good', 'starship', 'trooper', 'cool', 'citizen'], ['greg', 'back', 'top', 'love', 'nascar'], ['guy', 'got', 'someon', 'saran', 'wrap', 'tuesday', 'video', 'shall', 'awesom'], ['like', 'seuss', 'quot', 'know', 'love', 'not', 'fall', 'asleep', 'realiti', 'final', 'better', 'quot'], ['two', 'new', 'favorit', 'prayer', 'quot', 'help', 'help', 'help', 'quot', 'quot', 'thank', 'thank', 'thank', 'quot'], ['rocki', 'kind', 'littl', 'rockpool', 'amp', 'octopi', 'amp', 'shell', 'amp', 'stuff', 'want', 'beach', 'perfect', 'overcast', 'day'], ['thank', 'carri', 'crazi'], ['hubbi', 'adoarbl', 'babi', 'brother'], ['day', 'must', 'look', 'hard', 'good', 'thing'], ['bad', 'rum', 'experi', 'colleg', 'still', 'not', 'recov'], ['aww', 'cute'], ['nice', 'clutch'], ['must', 'ask', 'cub', 'fan', 'not', 'fathom'], ['yay', 'break'], ['happi', 'mother', 'day', 'pat', 'carey'], ['food', 'yummi', 'whose', 'wash', 'dish', 'not', 'not', 'rofl'], ['oh', 'well', 'good', 'get', 'weather', 'updat', 'instead', 'jk'], ['shall', 'annoy', 'tweet', 'tomorrow'], ['pfftt', 'know', 'like', 'stay', 'busi', 'awesom'], ['enjoy', 'night'], ['chicago', 'rock', 'sock'], ['four', 'hour', 'basebal', 'game', 'least', 'crew', 'spent', 'much', 'make', 'cubbi', 'look', 'bad'], ['hahahaha', 'nice', 'gave', 'bio', 'cos', 'not', 'know', 'hell', 'hello', 'chem'], ['bowl', 'cousin', 'awesom'], ['power', 'not', 'see', 'love', 'storm'], ['haha', 'thank'], ['anoth', 'birthday', 'w', 'special', 'friend'], ['love', 'weekend'], ['strip', 'club', 'pick'], ['aw', 'yay'], ['pride', 'next', 'weekend', 'long', 'beach'], ['goodnight'], ['watch', 'movi', 'holiday', 'forgotten', 'feel', 'good', 'movi', 'love', 'even'], ['ok', 'time', 'bed', 'good', 'night', 'twitter'], ['go', 'ride', 'perfect', 'night', 'go', 'chill'], ['nice', 'dinner', 'mom', 'start', 'chicken', 'roll', 'go', 'cook', 'overnight', 'rest', 'tomorrow'], ['not', 'watch', 'star', 'trek', 'tonight', 'head', 'love', 'dinner', 'fun', 'board', 'game', 'night'], ['good', 'luck', 'doubt', 'hilari', 'realli', 'hope', 'see', 'dress', 'kind', 'foam', 'food', 'item', 'go'], ['wh', 'correspond', 'dinner', 'rock', 'wanda', 'syke', 'hilari', 'obama', 'not', 'bad', 'happi', 'mother', 'day', 'mom'], ['watch', 'one', 'fav', 'movi', 'sparkl', 'go', 'get', 'food', 'later'], ['week', 'hope', 'next', 'week', 'even', 'better', 'nyc', 'day'], ['watch', 'tv', 'best', 'peopl', 'whole', 'world', 'mum', 'sis', 'agus', 'love', 'twitter', 'later', 'ha'], ['came', 'back', 'karaok', 'amp', 'eat', 'dinner', 'emili', 'soo', 'much', 'fun'], ['yes', 'lol', 'good', 'one', 'bottom', 'alway', 'top'], ['good', 'day', 'lot', 'stretch', 'sleep', 'sun'], ['bioshock', 'fantast', 'first', 'time', 'play', 'sleep', 'bioshock', 'tomorrow'], ['happi', 'mother', 'day', 'go', 'help', 'mine', 'right', 'deserv', 'guy'], ['ha', 'thought', 'would', 'enjoy', 'famili', 'guy', 'refer', 'bore'], ['poor', 'live', 'germani', 'favourit', 'cheap', 'saturday', 'one', 'away'], ['parti', 'great', 'time', 'got', 'rington', 'yay'], ['margarita', 'momo', 'miss'], ['heh', 'heh', 'odd', 'amus', 'thank'], ['time', 'go', 'swim', 'freez', 'water', 'kali', 'yeah'], ['thank', 'link', 'made', 'smile'], ['case', 'yeah', 'start', 'work', 'tomorrow', 'excit'], ['haha', 'wish', 'coudl', 'meet', 'stop', 'seattl', 'time', 'home', 'starbuk', 'love', 'david'], ['glad', 'final', 'done', 'final'], ['get', 'not', 'go', 'lol', 'least', 'not', 'get', 'hope'], ['back', 'soap', 'soo', 'fun'], ['hahaah', 'crys', 'blow', 'fuse', 'typic', 'move'], ['yay', 'go', 'leav', 'earlier', 'not', 'wait', 'get', 'back', 'hawthorn'], ['would', 'like', 'put', 'fruiti', 'articl', 'websit', 'permit'], ['add', 'shop', 'favorit', 'love', 'needl', 'wrap', 'right', 'needl', 'mess', 'basket'], ['feet', 'not', 'forget', 'crunch', 'product', 'day', 'today', 'though'], ['watch', 'snl', 'love', 'life', 'host'], ['thee', 'ladi', 'get', 'retard'], ['wear', 'quot', 'purpl', 'passion', 'quot', 'opi', 'absolut', 'love'], ['outta', 'shower', 'bad', 'justin', 'could', 'not', 'spend', 'night', 'haha'], ['crack', 'amp', 'phootoboothingisfunforbunni', 'volumen', 'ein'], ['dad', 'gave', 'old', 'blackberri', 'not', 'old', 'not', 'even', 'scroll', 'ball', 'want', 'bold'], ['today', 'fun', 'lt', 'meet', 'boardi', 'acoust', 'set', 'soo', 'phenomen'], ['watch', 'snl', 'gahh', 'fort', 'soo', 'funti'], ['thank', 'tri', 'behav'], ['cooki', 'good'], ['time', 'bed', 'hope', 'saturday', 'love', 'mine'], ['enough', 'today', 'good', 'night'], ['watch', 'snl', 'yay', 'host', 'love'], ['jona', 'rock', 'tonight', 'go', 'bed', 'write', 'lil', 'bit', 'night', 'bless'], ['feel', 'pretti', 'good', 'check', 'say'], ['watch', 'bodi', 'film'], ['fam', 'well', 'hope'], ['love', 'sex', 'tragedi', 'high', 'interest', 'influenc', 'classic', 'modern', 'world'], ['think', 'snapshot', 'befoor', 'vid', 'record', 'seesmic', 'ladi', 'not', 'look', 'like', 'freak', 'sayin'], ['yay', 'fun'], ['love', 'ladi', 'progress', 'commerci', 'funni'], ['yay', 'hit', 'subscrib', 'youtub', 'go', 'lol'], ['okay', 'new', 'jona', 'episod', 'awesom'], ['got', 'lot', 'shop', 'done', 'excit', 'bout', 'new', 'travel', 'journal', 'go', 'go', 'sleep', 'watch', 'movi', 'cousin'], ['whoop', 'not', 'last', 'tweet'], ['haha', 'kid', 'listen', 'day', 'long', 'bud'], ['happi', 'mother', 'day', 'minut', 'everyon'], ['mani', 'thank', 'mate'], ['aww', 'wish', 'younger', 'sis', 'older', 'one', 'bet', 'younger', 'sis', 'love', 'much'], ['love', 'breakfast', 'pancak'], ['way', 'home', 'see', 'rodney', 'atkin', 'love', 'thank', 'bob'], ['want', 'trip', 'boston', 'next', 'month', 'need', 'addit', 'l', 'motiv', 'save', 'belov', 'daughter', 'want', 'go'], ['love', 'new', 'twitter', 'two', 'kraussey', 'haha'], ['bone', 'show', 'check', 'pb', 'amp', 'check', 'write', 'play', 'check', 'simpl', 'joy', 'still', 'even', 'greatest', 'gone'], ['happi', 'birthday', 'happi', 'birthday', 'happi', 'birthday', 'happi', 'birthday', 'happi', 'birthday', 'mani'], ['love', 'youu', 'nick', 'santino', 'thirteen', 'dayss'], ['found', 'exit', 'take', 'thank'], ['saw', 'confess', 'fell', 'love', 'hugh', 'danci', 'accent', 'need', 'tomorrow', 'new', 'top', 'want'], ['great', 'night', 'nice', 'meet', 'last', 'night', 'sweetheart', 'xoxoxo', 'bye'], ['omg', 'found', 'thnx'], ['voic', 'smile', 'eye', 'laugh', 'hes', 'great', 'rolemodel'], ['start', 'great', 'mother', 'day', 'season'], ['alway', 'good', 'see', 'even', 'cyberspac'], ['blink', 'fast', 'better', 'lol', 'thank'], ['shoutz', 'mix', 'site', 'go', 'b', 'nervvoouuss'], ['hehe', 'nz', 'magic', 'place', 'earth'], ['jump', 'shower', 'long', 'day', 'work', 'shall', 'feel', 'ahmaz', 'math'], ['thanx', 'sis', 'b', 'sure', 'let', 'know', 'mani', 'peopl', 'r', 'pray'], ['great'], ['omj', 'episod', 'jona', 'great', 'funni', 'wish', 'pizza', 'girll', 'lol', 'lt'], ['wife', 'love'], ['lmao', 'glad', 'guy', 'like'], ['exact', 'one', 'think', 'bestt'], ['final', 'black', 'disney', 'princess'], ['yeah', 'ranga', 'make', 'sens'], ['watch', 'babi', 'snl', 'babi', 'look', 'greaat'], ['hahah', 'thank', 'tradewind', 'odyssey', 'bump'], ['well', 'one', 'thing', 'lay', 'floor', 'could', 'not', 'shape'], ['sti', 'fine', 'bout'], ['almost', 'got', 'sharpi', 'face', 'fall', 'asleep', 'sick', 'suck'], ['not', 'realli', 'trust', 'judgement', 'vouch', 'jk', 'think', 'becom', 'friend'], ['youtub', 'channel', 'demilynnmus', 'haha', 'love', 'sing', 'amp', 'stuff', 'yea'], ['haha', 'okay', 'fun', 'haha'], ['awesom', 'saw', 'ad', 'myspac', 'could', 'pleas', 'gt', 'not', 'lt', 'tag', 'photo', 'thank'], ['hawk', 'lost', 'good', 'time'], ['pass', 'earli', 'river', 'sound', 'amaz', 'cozi', 'bed', 'cozi', 'dog'], ['peter', 'follow', 'oh', 'fun', 'europ'], ['joke', 'puppi', 'maddi', 'look', 'exact', 'like', 'maui', 'cute'], ['great'], ['state', 'chees', 'yum', 'green', 'pastur', 'everywher', 'super', 'friend', 'lutheran'], ['go', 'inlaw', 'tonight', 'hope', 'new', 'niec', 'need', 'kid', 'inlaw'], ['fiinaallyy', 'home', 'drive', 'day', 'speed', 'ticket', 'torenti', 'fun', 'time'], ['hi', 'jenna', 'hope', 'well', 'think', 'wish', 'best', 'lot', 'love', 'new', 'york'], ['take', 'dog', 'weather', 'perfect', 'rite', 'suck', 'becuz', 'not', 'come', 'hahaha'], ['retweet', 'other', 'good', 'tweet', 'least', 'day', 'get', 'involv', 'thing', 'twitter'], ['greek', 'season', 'two', 'love', 'show'], ['happi', 'mother', 'dayi', 'love', 'mummyy'], ['love', 'lubbock', 'strip', 'run'], ['tell', 'truth', 'know', 'skill'], ['sweet', 'deal', 'want', 'see', 'movi', 'methink', 'may', 'star', 'trek', 'movi', 'night', 'time', 'hmm'], ['awesom', 'day'], ['hehe', 'true', 'wonder', 'come'], ['live', 'long', 'prosper', 'fb'], ['love', 'love', 'love', 'silverstein', 'work', 'tomorrow', 'boo'], ['love', 'boyfriend', 'love', 'mac', 'n', 'chees', 'even', 'took', 'work'], ['uqh', 'soo', 'boredd', 'supposedd', 'asleep', 'cuzz', 'wakk', 'upp', 'earlyy', 'juss', 'cantt', 'sleepp', 'omq', 'tomorroww', 'iss', 'mother', 'dayi'], ['made', 'mani', 'new', 'friend', 'twitter', 'around', 'usa', 'anoth', 'bike', 'across', 'usa', 'trip', 'would', 'amaz', 'see', 'peopl'], ['gave', 'mommi', 'mother', 'day', 'purpl', 'ipod'], ['notic', 'wellwood', 'teeth', 'tonight', 'nice'], ['want', 'say', 'happi', 'mother', 'day', 'mommi'], ['aww', 'sweet', 'glad', 'home', 'happi', 'mother', 'day'], ['look', 'not', 'see', 'heck'], ['omg', 'fold', 'laundri', 'match', 'sock', 'perfect', 'pair', 'good', 'laundri', 'fold', 'day'], ['everyon', 'go', 'hometown', 'show', 'excit', 'get', 'go', 'thame', 'street', 'go', 'see', 'origin', 'thame', 'river', 'bitch', 'ohh'], ['want', 'join', 'twit', 'club'], ['wish', 'everyon', 'good', 'night'], ['still', 'wait', 'beer', 'moldovan', 'least', 'happi', 'came'], ['yao', 'rest', 'season', 'home', 'saturday', 'phone', 'fix'], ['go', 'bed', 'goodnight', 'x'], ['curious', 'case', 'benjamin', 'button', 'excit', 'fuck', 'movi'], ['sleep', 'rest', 'day', 'busi', 'howev', 'got', 'spend', 'last', 'favorit', 'babysitte', 'kid', 'great'], ['realli', 'glad', 'abl', 'watch', 'game'], ['bow', 'hard'], ['deserv'], ['lol', 'tweet', 'funni', 'met', 'calgari', 'awesom', 'not', 'wait', 'next', 'hp', 'movi'], ['dog', 'pic', 'rolf', 'one', 'snow', 'stuck', 'quot', 'look', 'could', 'kill', 'look', 'quot', 'way', 'funni'], ['aww', 'boog', 'not', 'ya', 'enjoy', 'ya', 'selv', 'especi', 'lil', 'cousin'], ['oppos', 'twitter', 'talk', 'peopl', 'sl', 'fun', 'alreadi', 'way', 'mani', 'way', 'distract'], ['pleeas', 'pleeas', 'make', 'dj', 'drop'], ['good', 'morn'], ['hey', 'steve', 'think', 'awesom', 'actor', 'love', 'everi', 'movi', 'love', 'offic'], ['sean', 'watch', 'hous', 'thousand', 'corp'], ['luh'], ['fever', 'gone', 'thank', 'jen'], ['let', 'us', 'make', 'last', 'forev'], ['awe', 'thank'], ['yay', 'get', 'see', 'ddub', 'men', 'alway', 'keep', 'happi', 'amp', 'motiv'], ['ultim', 'shirt', 'fold', 'tool', 'saw', 'use', 'one', 'big', 'bang', 'theori', 'episod'], ['k', 'fiasco', 'wrap', 'good', 'go', 'back', 'studi', 'midterm'], ['pretti', 'cute'], ['shout'], ['best', 'bestfriend', 'whole', 'world', 'mother', 'day', 'present', 'ambien', 'klonopin', 'quarter', 'woohoo', 'smh'], ['ah', 'thank', 'appreci'], ['cool', 'glad', 'everyon', 'nice', 'date', 'night', 'mayb', 'one', 'day', 'ill', 'get', 'one'], ['excit', 'r', 'r', 'mother', 'day'], ['afraid', 'def', 'product', 'nri', 'karan', 'johar', 'watch', 'lot', 'classic', 'semest'], ['good', 'luck', 'want', 'see', 'wait', 'outsid', 'buse', 'see', 'autograph', 'though'], ['loser', 'baha', 'dude', 'go', 'come', 'amp', 'put', 'pictur', 'myspac', 'realli', 'quick'], ['fuze', 'give', 'away', 'cape', 'komen', 'race', 'cure', 'today', 'would', 'alway', 'love', 'hug', 'hun'], ['definit', 'usual', 'found', 'critic', 'know', 'virtual', 'noth', 'constitut', 'good', 'movi', 'rare', 'wrong'], ['baaha', 'amp', 'healthi', 'choic', 'friend'], ['wow', 'tiz', 'almost', 'midnit', 'bedtim', 'ha', 'gnite', 'gorgeous', 'peopl', 'hadthebestdayev'], ['matter', 'bet', 'would', 'great', 'love', 'right', 'not', 'go'], ['aww', 'still', 'awesom', 'fun', 'though', 'assum'], ['happi', 'hs', 'haha', 'know', 'would'], ['krys', 'run', 'mud', 'bath', 'nice', 'french', 'food', 'napa', 'jim'], ['not', 'sad', 'make', 'proud'], ['moveout', 'fun', 'thank', 'vt', 'student', 'work', 'make', 'vt', 'best', 'possibl'], ['appar', 'left', 'front', 'door', 'wide', 'open', 'go', 'show', 'mom', 'laptop', 'coffe', 'tabl', 'love', 'area'], ['sound', 'awesom'], ['sorri', 'not', 'twitter', 'ap', 'phone', 'text', 'repli', 'internet'], ['gorgeous', 'day', 'work', 'master', 'garden', 'plant', 'sale', 'trim', 'smoke', 'bush', 'write'], ['danc', 'around', 'clean', 'hous', 'love', 'sunday', 'far'], ['facebook', 'page', 'not', 'email', 'pictur', 'bang', 'not', 'like', 'blame', 'kitti'], ['sorri', 'run', 'uncl', 'terri', 'not', 'live', 'potenti', 'expect', 'next', 'return'], ['say', 'past', 'week', 'miss', 'play', 'spade', 'drinkin', 'chillin', 'good', 'old', 'day', 'let', 'know', 'babi'], ['take', 'big', 'man', 'type', 'sad', 'tweet', 'like'], ['soo', 'spent', 'day', 'sit', 'home', 'front', 'comput', 'love', 'day'], ['amaz', 'concert', 'got', 'realli', 'good', 'video', 'pictur'], ['like', 'crazi', 'witti', 'humor'], ['thank', 'babe', 'doin', 'even'], ['thank', 'work'], ['thank', 'tomorrow', 'teas', 'mom', 'tell', 'mother', 'day', 'gift'], ['nice', 'elis', 'roll', 'thas', 'wassup', 'fun', 'ladi'], ['cool', 'qik', 'stuff', 'newsroom', 'sometim', 'lol'], ['awesom', 'congrat', 'complet', 'not', 'believ', 'cycl', 'distanc', 'cottag', 'though', 'day'], ['not', 'put', 'behind', 'wheel', 'lmfao', 'today', 'fun'], ['good', 'luck', 'c', 'funn'], ['ok', 'clear', 'cach', 'everyth', 'fine'], ['comput', 'geek', 'entertain', 'think'], ['thank', 'concern', 'guy', 'stitch', 'later', 'well', 'whew'], ['accept', 'maid', 'applic', 'would', 'nice', 'would', 'start', 'first', 'thing', 'tomorrow', 'would', 'make', 'wonder', 'mother', 'day', 'present'], ['paramor', 'song', 'one', 'best', 'current', 'listen', 'quot', 'emerg', 'quot'], ['lesson', 'final', 'done', 'tomorrow', 'morn', 'look', 'forward', 'speak', 'high', 'schooler', 'date'], ['total', 'plain', 'simpl', 'hate', 'thoe', 'bridezilla', 'show', 'groom', 'would', 'run', 'far', 'far', 'away'], ['love', 'da', 'movi', 'say', 'anyth'], ['haha', 'know', 'sorri', 'typo', 'last', 'ps', 'said', 'sucha', 'cute', 'movi', 'aww'], ['join', 'facebeek', 'loser', 'friend', 'ami'], ['may', 'new', 'fav', 'number'], ['gone', 'miss', 'ya', 'laugh', 'bittersweet', 'lookin', 'forward', 'home', 'not', 'wait', 'till', 'nx', 'semest'], ['go', 'eat', 'rice', 'fri', 'chicken', 'sederhana', 'padang', 'restaur', 'yummi'], ['fantast'], ['yeayi', 'good'], ['thank', 'share', 'appreci', 'honesti', 'not', 'tweet', 'odd', 'hour', 'got', 'littl', 'tweet', 'happi'], ['mm', 'thank', 'get', 'stone', 'eat', 'cool'], ['love', 'also', 'like', 'new', 'profil', 'pic'], ['vancouv', 'classi', 'canuck'], ['day', 'look', 'better', 'better', 'betterr'], ['long', 'day', 'much', 'fun', 'though', 'tomorrow', 'much'], ['quit', 'peacock', 'oceanograph', 'choic', 'new', 'favorit', 'play'], ['yay', 'tell', 'said', 'congrat'], ['look', 'forward', 'see', 'share'], ['happi', 'mother', 'day', 'mum'], ['pictur', 'pretti', 'day', 'fb'], ['hey', 'girl', 'yeah', 'allergi', 'kick', 'random', 'time', 'hmph'], ['know', 'guess', 'hope', 'would', 'revit', 'plot', 'line', 'well', 'instead', 'revert', 'old', 'clich'], ['think', 'steph', 'enjoy', 'first', 'mother', 'day', 'tomorrow'], ['eat', 'ice', 'cream', 'cake', 'bomb'], ['left', 'quot', 'quot'], ['dude', 'tri', 'vegetarian', 'thing', 'last', 'month', 'good', 'luck', 'go', 'vegan', 'intens', 'good', 'move', 'though'], ['tri', 'learn', 'tweet', 'good', 'hope'], ['know', 'say', 'noth', 'love', 'dude'], ['hope', 'fun', 'tonight'], ['happi', 'mother', 'day'], ['thank', 'greet'], ['oh', 'yeah', 'right', 'thank', 'remind'], ['saw', 'lil', 'girl', 'big', 'eye', 'hair', 'like', 'dora', 'explor', 'cute'], ['saw', 'star', 'trek', 'amaz', 'serious', 'good', 'entir', 'cast', 'excel', 'spock', 'kirk', 'especi', 'want', 'see'], ['lol', 'sound', 'fun'], ['hey', 'sorri', 'late', 'plan', 'post', 'facebook', 'twitpic'], ['fantast', 'saturday'], ['nice', 'time', 'littl', 'grown'], ['happi', 'mother', 'day', 'sent', 'messag', 'mom', 'got', 'phone', 'call', 'wish', 'one', 'day', 'live', 'citi', 'take', 'care'], ['learn', 'lot', 'anoth', 'person', 'not', 'tri', 'better', 'oneself', 'love', 'happi', 'goodnight'], ['fun', 'time', 'concert', 'almost', 'got', 'pictur', 'taylor', 'momsen', 'freakin', 'next', 'line', 'left'], ['miley', 'cyrus', 'great', 'actress'], ['thank', 'elain', 'clip', 'review', 'scrapbook'], ['thank'], ['watch', 'yes', 'man', 'bahaha', 'movi', 'mess'], ['haha', 'ya', 'friend', 'total', 'kick', 'parti', 'occas'], ['ad', 'name', 'twitter', 'account', 'learn', 'use', 'amaz', 'thing'], ['saw', 'today', 'beauti', 'look', 'good', 'glad', 'see', 'wonder', 'turnout'], ['pshh', 'thank'], ['hello', 'gorgeous', 'girl', 'nice', 'new', 'pic', 'today'], ['ooh', 'sorri', 'late', 'smash'], ['horoscop', 'websit', 'use', 'chang', 'around', 'like'], ['lucki', 'day', 'gone', 'larg', 'amount', 'littl', 'stress', 'detali', 'get', 'bit', 'gruesom'], ['thank', 'share', 'friend'], ['iknoww', 'not', 'mani', 'peopl', 'know', 'though', 'like', 'keep', 'littl', 'secret'], ['go', 'wow', 'bit', 'later', 'twitter', 'lt'], ['interview', 'view', 'away', 'thanx', 'read', 'peopl', 'mattmccoy'], ['hit', 'hay', 'came', 'goodnight', 'world', 'inhabit'], ['jbeauti', 'gud', 'enuh', 'jus', 'sayin', 'hi', 'n', 'hopin', 'avin', 'gud', 'nite', 'ladi', 'day', 'dat', 'better'], ['sew', 'shirt', 'fail', 'scream', 'quesadilla', 'quesadiaa', 'bombb', 'lt', 'tri', 'scream', 'anoth', 'day'], ['today', 'bore', 'lot', 'homework', 'tomorrow', 'amaz', 'not', 'wait'], ['head', 'downtown', 'drink', 'danc'], ['curs', 'igloo', 'dweller'], ['thank', 'ad', 'glad'], ['festiv', 'not', 'hehe'], ['updat', 'woow', 'haha'], ['margarita', 'great', 'combo'], ['wow', 'text', 'would', 'get', 'tire'], ['trend', 'topic', 'ahh', 'happi', 'birthday', 'pierr', 'bouvier'], ['awesom', 'spent', 'day', 'studyin', 'chillin', 'lil', 'goin', 'bed', 'slowli', 'gettin', 'colder', 'paraguay', 'winter', 'comin'], ['wednesday', 'mom', 'make', 'huge', 'special', 'dinner', 'amp', 'whatnot', 'celebr', 'new', 'singl', 'ya', 'knoww'], ['not', 'worri', 'ava', 'distract', 'flight'], ['recov', 'sick', 'anyon', 'want', 'bring', 'soup'], ['need', 'vent'], ['spent', 'even', 'gala', 'high', 'school', 'drama', 'compani', 'anniversari', 'lot', 'memori'], ['anytim', 'aim', 'pleas'], ['hey', 'babe', 'follow', 'love', 'da', 'show'], ['rock', 'world', 'soo', 'funni', 'lt'], ['good', 'night', 'peep', 'give', 'mom', 'greatest', 'love', 'xx'], ['pop', 'see', 'samson', 'delilah', 'arvo', 'hear', 'good'], ['see', 'not', 'shave', 'head', 'love', 'cut', 'glad', 'not', 'shave', 'hair', 'pretti'], ['hopin', 'sydney', 'less', 'week', 'got', 'visa', 'thursday', 'whoot', 'whoot'], ['worri', 'go', 'abp', 'right', 'want', 'someth'], ['great', 'talk', 'grace', 'awesom', 'god', 'somehow', 'start', 'remot', 'control', 'work'], ['thank', 'much', 'neitherr'], ['yay', 'get', 'errand', 'done', 'oh', 'assort', 'thing', 'top', 'crap', 'race', 'haha'], ['happi', 'mother', 'day', 'well'], ['oh', 'yeah', 'know', 'met', 'take', 'trash', 'hhaha'], ['sorri', 'darl', 'place', 'tonight', 'not', 'mean', 'neglect'], ['popular'], ['sure', 'let', 'mom', 'know', 'fabul', 'think', 'almost', 'mother', 'day'], ['wish', 'leigh', 'happi', 'mother', 'day', 'midnight', 'ny'], ['bottl', 'reisl', 'time', 'favorit'], ['oh', 'man', 'suck', 'price', 'pay', 'org', 'chart', 'respons', 'stuff'], ['goodnight'], ['thank', 'much'], ['two', 'word', 'hot', 'pocket', 'delcious', 'food', 'ever', 'creat'], ['happi', 'birthday', 'not', 'get', 'anyth', 'best', 'wish'], ['long', 'weekend', 'thank', 'god', 'sleep', 'monday'], ['justin', 'timberlak', 'andi', 'samberg', 'mother', 'lover', 'skit', 'snl', 'great'], ['super', 'excit'], ['ok', 'mother', 'fuck', 'duet', 'hyster', 'lol'], ['lucki', 'e', 'went', 'jealous'], ['tell', 'zach', 'amp', 'jer', 'said', 'happi', 'birthday', 'seem', 'like', 'cool', 'brother', 'lucki', 'haha'], ['thank', 'much', 'definit', 'pass', 'along', 'amaz', 'mother'], ['would', 'never', 'believ', 'five', 'year', 'later', 'would', 'femal', 'engin', 'make', 'track'], ['yay', 'block', 'parti', 'bomb', 'blockhead', 'lt', 'dave', 'thank', 'support', 'nkotb'], ['esta', 'perdonada', 'porqu', 'sigu', 'tom', 'conrad', 'know', 'made', 'awesom'], ['greet', 'advanc', 'haha'], ['amaz', 'unproduct', 'day', 'love', 'time', 'go', 'catch', 'sleep'], ['wed', 'recept', 'fun', 'thought'], ['send', 'love', 'amp', 'respect', 'mommi', 'twittervers', 'inspir'], ['sleep', 'beauti', 'love', 'grad'], ['not', 'think', 'ever', 'tierd', 'sleep', 'tomorrow'], ['midnight', 'outta', 'happi', 'mother', 'day', 'fellow', 'mommi', 'may', 'everyon', 'special', 'day'], ['good', 'night', 'happi', 'mother', 'day'], ['welcom', 'book', 'good', 'remind', 'escap', 'cube'], ['happi', 'mother', 'day', 'mom', 'awesom', 'mom', 'help', 'savechuck'], ['lol', 'thank', 'like', 'top', 'go', 'enjoy', 'long'], ['dislik', 'rumor', 'cyndi', 'made', 'look', 'like', 'not', 'like'], ['like', 'bride', 'sens', 'humor', 'wore', 'wed', 'gown', 'accid'], ['want', 'greet', 'mom', 'happi', 'mother', 'day', 'may', 'enjoy', 'day'], ['miss', 'lol'], ['edward', 'hope'], ['happi', 'mother', 'day', 'gunna', 'crawl', 'ball', 'act', 'like', 'not', 'exist', 'lmfaoo'], ['happi', 'mother', 'day', 'wonder', 'mom'], ['get', 'night', 'great', 'mood'], ['hate', 'hate', 'hate', 'hate', 'hate', 'hate', 'mother', 'day'], ['happi', 'mother', 'day', 'well', 'good', 'one'], ['happi', 'mother', 'day', 'mom', 'mom'], ['heh', 'send', 'dem', 'get', 'dem', 'jen', 'shock', 'found', 'mani', 'last', 'day', 'earlier', 'week', 'noth'], ['hope', 'mom', 'enjoy', 'mother', 'day', 'gift'], ['well', 'keep', 'post', 'come', 'fulli', 'thank'], ['scream', 'like', 'maniac', 'thing', 'could', 'not', 'scream', 'ride', 'suck', 'fun', 'everyth'], ['good', 'luck', 'tomorrow'], ['happi', 'mother', 'day'], ['nice', 'captur'], ['happi', 'mother', 'day', 'mother', 'mom', 'get', 'special', 'gift', 'today'], ['lol', 'look', 'youtub', 'later', 'thank'], ['doin', 'fine', 'relaxin', 'work', 'hard', 'work'], ['good', 'lord', 'man', 'recommend', 'dark', 'amp', 'stormi', 'casablanca'], ['haha', 'wish', 'bfa', 'photographi'], ['hope', 'get', 'see', 'htb', 'next', 'week', 'la', 'realli', 'soon', 'not', 'wait'], ['sweet', 'not', 'livin', 'saturday', 'night'], ['quot', 'quot', 'offici', 'one', 'say', 'happi', 'mother', 'day', 'love'], ['an', 'dog', 'ass'], ['chillin', 'waitin', 'hunni', 'babi', 'get', 'work', 'get', 'drink', 'finishin', 'da', 'song'], ['agre', 'complet', 'attitud', 'amp', 'chutzpah'], ['enjoy', 'whole', 'relax', 'thing'], ['saw', 'new', 'star', 'trek', 'movi', 'day', 'strong', 'recommend'], ['guess', 'true'], ['watch', 'said', 'happi', 'mother', 'day'], ['aw', 'honey', 'relaxin', 'probabl', 'best'], ['thank'], ['honor', 'hear', 'name', 'breezi', 'track', 'hope', 'like', 'shit'], ['pretti', 'tire', 'nice', 'full', 'day'], ['noth', 'like', 'lost', 'marathon', 'long', 'day', 'work'], ['oh', 'guess', 'offici', 'big', 'nerd', 'heard', 'movi', 'great', 'even', 'not', 'like', 'trek'], ['thank', 'love'], ['stellar', 'look', 'great'], ['work', 'mother', 'day', 'slideshow', 'cake', 'card', 'balloon', 'deserv', 'best'], ['lol', 'glad', 'like'], ['hug', 'hug', 'hug', 'glad', 'feel', 'better'], ['awesom', 'bless'], ['thank', 'much'], ['good', 'know'], ['yes', 'would', 'love', 'cowbel'], ['wish', 'mom', 'happi', 'amp', 'bless', 'mother', 'day'], ['yeah', 'scoreless', 'tonight'], ['happi', 'mother', 'dayi'], ['realli', 'nice', 'smoothi', 'baulko', 'shop'], ['happi', 'mother', 'day', 'mother', 'twittervill'], ['kind', 'figur', 'would', 'probabl', 'unabl', 'reason', 'lot', 'thing', 'manga', 'happen', 'way', 'happen'], ['go', 'town', 'friend', 'long', 'time', 'not', 'seen', 'feel', 'fresh'], ['got', 'caught', 'rain', 'sand', 'monsoon', 'way', 'home', 'even', 'though', 'look', 'like', 'complet', 'idiot'], ['go', 'profil', 'ill', 'help', 'right', 'next'], ['dr', 'hook', 'awesom'], ['moon', 'soo', 'pretti'], ['downtown', 'drink', 'celebr', 'cav', 'victori'], ['sunburn', 'venic', 'watch', 'fred', 'excit'], ['dad', 'retel', 'saskatoon', 'amp', 'g', 'stori', 'love', 'hear', 'guy', 'said', 'never', 'heard'], ['justin', 'funni', 'snl', 'ciara', 'fix', 'perform'], ['word', 'liana', 'corber', 'moreov', 'wiaih', 'humbl', 'experi', 'surpris', 'decent', 'night'], ['lovesick', 'give', 'call', 'go', 'bowl', 'complain', 'love'], ['seem', 'happi'], ['want', 'wish', 'mommi', 'happi', 'mother', 'day'], ['not', 'wait', 'get', 'doll', 'go', 'tonight'], ['hey', 'oprah', 'watch', 'show', 'hugh', 'jackman', 'love', 'sexi'], ['thelma', 'amp', 'louis', 'good', 'movi'], ['not', 'want', 'complet', 'hypocrit', 'attend', 'event', 'time', 'iron'], ['baiterss', 'hope', 'tonight', 'fun'], ['congratul', 'maricar', 'chu', 'wish', 'best', 'world'], ['twitter', 'know', 'photographi', 'run', 'also', 'popular', 'photographi', 'blog'], ['night', 'ya', 'tomorrow'], ['well', 'gracia', 'haha', 'play'], ['oh', 'jordan', 'readi', 'next', 'contest', 'babi', 'wait', 'kiss', 'brazil', 'love'], ['aww', 'hope', 'fli', 'jt', 'episod', 'usual', 'realli', 'good', 'earli', 'far', 'ep', 'hass', 'disappoint'], ['keep', 'crown', 'shut', 'mouth', 'know', 'mean'], ['happi', 'mother', 'day', 'mother'], ['home', 'maddi', 'tire', 'go', 'bed', 'afterward'], ['like', 'clarifi', 'unabl', 'acc', 'review', 'vibrat', 'not', 'testrun', 'not', 'invitaiton', 'freebi'], ['movi', 'sleep', 'today', 'good', 'day', 'h'], ['swipe', 'last', 'packag', 'fruit', 'snack', 'hell', 'yeah', 'finish', 'shall', 'read', 'next', 'nerd'], ['fixin', 'clean', 'hous', 'mom', 'mother', 'day'], ['thank', 'let', 'know', 'print', 'galleri', 'would', 'like', 'work', 'detail'], ['happi', 'mother', 'dayi', 'mother', 'especi', 'mine'], ['nice', 'hear', 'love', 'best', 'friend', 'sister', 'hug'], ['love', 'big', 'brother', 'much'], ['hope', 'enjoy', 'wisdom'], ['not', 'bad', 'made', 'card', 'mom', 'nice', 'nap', 'finish', 'work', 'wrote', 'bill', 'surpris'], ['realli', 'drunk', 'realli', 'happi'], ['well', 'go', 'sleep', 'peopl', 'night', 'twitter', 'love', 'ya', 'welcom', 'home'], ['nice', 'meet', 'mike', 'video', 'produc', 'cf', 'miami'], ['dad', 'know', 'got', 'drunk', 'today', 'not', 'get', 'troubl'], ['seen', 'coupl', 'time', 'like'], ['seen', 'coupl', 'time', 'like'], ['worth', 'wait', 'bust', 'gut'], ['gahh', 'freak', 'lip', 'ring', 'go', 'death', 'never', 'cooraper', 'jack', 'haha'], ['famili', 'girl', 'love', 'guy', 'smile'], ['happi', 'mother', 'day', 'mommi'], ['hey', 'kelvin', 'day', 'fantast', 'far', 'get', 'readi', 'famili', 'mother', 'day', 'function', 'short'], ['ee', 'came'], ['wait', 'recip', 'simpli', 'recip', 'sorri'], ['happi', 'mother', 'day', 'ekin', 'sayang', 'mak'], ['lilash', 'guess', 'right', 'oh', 'camera', 'use', 'insan', 'qualiti'], ['bev', 'sometim', 'kind', 'day', 'need', 'relax'], ['talk', 'babe', 'amaz'], ['fuzzbal', 'fun', 'mother', 'day'], ['oh', 'tonight', 'look', 'forward'], ['fantast', 'jj', 'question', 'alreadi', 'teacher', 'pet'], ['definit', 'true', 'beauti'], ['best', 'art', 'attack', 'thank', 'follow'], ['night', 'cute', 'k', 'love', 'frog'], ['got', 'bunch', 'present', 'mail', 'mama', 'excit', 'open', 'birthday', 'day'], ['thank', 'one', 'day', 'time', 'right'], ['ooh', 'love', 'sweet', 'potato', 'fri', 'definit', 'go'], ['happi', 'mother', 'day', 'love', 'mami'], ['oh', 'yeah', 'happi', 'mother', 'day', 'everi', 'mom', 'friend', 'mom'], ['love', 'chocol', 'must', 'pms'], ['met', 'sarah', 'kelli', 'wow', 'amaz', 'woman', 'god', 'gave', 'free', 'got', 'love', 'free', 'merch'], ['sign', 'spend', 'time', 'hubbi', 'goodnight', 'day', 'tweepl', 'happi', 'mother', 'day'], ['littl', 'happi', 'wine', 'jeje', 'ok', 'free', 'time', 'care', 'jaja', 'love', 'day'], ['glad', 'like'], ['would', 'not', 'tweet', 'without', 'thank', 'share', 'tonight'], ['yes', 'love', 'manchest', 'orchestra', 'sigur', 'ross', 'band', 'never', 'heard', 'ill', 'give', 'listen', 'thank'], ['hi', 'dale', 'welcom', 'man', 'hope', 'weekend', 'go', 'well', 'think', 'would', 'enjoy', 'desert', 'paradis', 'fun', 'fun', 'fun'], ['okay', 'happi', 'watch', 'second', 'episod', 'jona', 'youtub', 'think', 'tomorrow', 'famili', 'go', 'oliv', 'garden', 'mother', 'day'], ['love', 'perform', 'snl', 'tonight', 'damn', 'funni'], ['oh', 'hilari', 'comment', 'fact', 'much'], ['good', 'day', 'bed', 'nite', 'tweep'], ['took', 'amaz', 'power', 'nap', 'ever', 'starbuck', 'time'], ['ahh', 'would', 'good', 'reason', 'heh', 'hope', 'goe', 'well', 'hun'], ['cute', 'thank', 'share', 'pleas', 'direct', 'messag', 'go', 'bed', 'jame', 'know', 'want'], ['roxi', 'right', 'palmad', 'stuff', 'pretti', 'cool'], ['sli', 'parti', 'enjoy', 'life', 'parti'], ['hi', 'hope', 'everybodi', 'safe', 'amp', 'fun', 'weekend'], ['sound', 'fun'], ['thank', 'synn'], ['long', 'fun', 'day', 'relax', 'tv', 'mom', 'sleep'], ['readi', 'tomorrow', 'mommi', 'get', 'gift', 'mother', 'day', 'hope', 'love'], ['thank', 'freakin', 'ball', 'great', 'compani', 'awesom', 'could', 'girl', 'want', 'love', 'ya'], ['omg', 'sorri', 'hear', 'keep', 'finger', 'cross', 'find', 'someth'], ['saw', 'ghost', 'girlfriend', 'past', 'bf', 'movi', 'predict', 'funni', 'love'], ['happi', 'mother', 'day', 'mother', 'goodnight', 'everyon', 'els'], ['one', 'watch', 'justin', 'timberlak', 'snl', 'greatt', 'hilari'], ['fun', 'webcam', 'caroo'], ['dream', 'last', 'night', 'sing', 'first', 'avid', 'dream', 'croon', 'away'], ['yeah', 'knew', 'link', 'complet', 'amaz', 'sing', 'phantom'], ['soo', 'happi', 'thank', 'babi', 'best', 'day', 'life'], ['possibl', 'nyquil', 'get', 'tonight', 'though', 'doctor', 'monday', 'hope', 'swine', 'googl', 'map'], ['nope', 'not', 'worri', 'possibl', 'worri', 'goog', 'design', 'person', 'tast', 'actual'], ['saw', 'tour', 'month', 'ago', 'boston', 'good', 'glad', 'final', 'got', 'see'], ['gave', 'mommi', 'mother', 'day', 'present', 'ticket', 'aerosmith', 'favorit', 'band', 'everr', 'yay', 'good', 'reaction'], ['thank', 'blast'], ['tiir', 'go', 'bed', 'drink', 'lead', 'make', 'boy', 'later', 'forget', 'name', 'not', 'drink', 'kid', 'goodnight'], ['happi', 'mother', 'day'], ['aww', 'thank', 'jon', 'old', 'told', 'sleep', 'clean', 'hous', 'best', 'mom', 'day', 'present', 'ever'], ['thank', 'jonathan', 'proud', 'mommi', 'yr', 'old', 'girl', 'yr', 'old', 'boy'], ['love', 'jona', 'brother', 'trend', 'topic', 'mayb', 'taylor', 'turn', 'next'], ['hi', 'deni', 'grab', 'coffe', 'would', 'love', 'catch', 'jordan'], ['leme', 'put', 'bottl', 'ciroc', 'make', 'popular'], ['welcom', 'xuxu'], ['would', 'not', 'happen', 'ravit', 'not', 'ask', 'met', 'thru', 'twitter', 'friend', 'love', 'social', 'media', 'way'], ['drink', 'smoke', 'grown', 'though'], ['happi', 'mother', 'day', 'mi', 'mother', 'thank', 'whatev'], ['aww', 'thank', 'jon', 'appreci'], ['imagin', 'would', 'say', 'quot', 'bitch', 'quot', 'lol', 'haha', 'not', 'cuz', 'cool'], ['love', 'love', 'love', 'pot', 'psycolog', 'friday', 'night', 'treat'], ['tire', 'even', 'though', 'not', 'much', 'today', 'glad', 'got', 'catch', 'second', 'half', 'cav', 'game'], ['account', 'homework', 'nice', 'got', 'project', 'lt'], ['jona', 'brother', 'concert', 'greaatt'], ['veronica', 'go', 'rock', 'stage', 'tomorrow', 'happi', 'mother', 'day', 'everyon'], ['hear', 'piss', 'haha'], ['love', 'name'], ['happi', 'mother', 'day', 'mom'], ['aww', 'cute'], ['incred', 'great', 'day', 'hahaha'], ['finish', 'giraff', 'get', 'sleep', 'super', 'excit', 'tomorrow'], ['hey', 'beauti'], ['thank', 'enjoy', 'dinner', 'tomorrow'], ['great', 'hear', 'saw', 'slumdog', 'millionair', 'yes', 'bollywood', 'thing', 'end'], ['good', 'show'], ['listen', 'maylen', 'wonder', 'not', 'pull', 'mani', 'cool', 'southern', 'metal', 'lick'], ['tomorrow', 'mother', 'day', 'get', 'mom', 'not', 'gift', 'tell', 'love'], ['new', 'motorcycl', 'pop', 'cabl', 'alreadi', 'ride', 'hard'], ['rare', 'treat', 'rare', 'ap', 'earli', 'may', 'make', 'open', 'bell', 'pdx', 'farmer', 'mkt', 'new', 'goal'], ['soo', 'excit', 'see', 'also', 'crazi', 'begin', 'dayss', 'yahoo'], ['sit', 'kaust', 'offic', 'sun', 'shine', 'surround', 'busi', 'peopl', 'ace'], ['went', 'friend', 'hous', 'watch', 'good', 'old', 'season', 'episod', 'supernatur', 'lt', 'damn', 'love', 'show', 'soo', 'fuck', 'much'], ['yes', 'though', 'perhap', 'not', 'think', 'like', 'vagu', 'seem', 'popper', 'term'], ['coldston', 'kayla', 'fat', 'guy', 'matter'], ['hope', 'not', 'go', 'far', 'sometim', 'feel', 'like', 'renounc', 'root'], ['fri', 'oreo', 'downtown', 'vega', 'went', 'park', 'cousin', 'best', 'day', 'everr', 'happi', 'mommi', 'day'], ['hey', 'guy', 'not', 'know', 'rememb', 'want', 'say', 'excit', 'see', 'guy', 'go', 'far'], ['sleepi', 'time', 'happi', 'mother', 'day', 'current', 'futur', 'mom', 'around', 'globe'], ['goodknight', 'twitterland', 'happi', 'mother', 'day', 'blockhead', 'momma', 'wonder', 'day'], ['live', 'dat', 'glamor', 'life'], ['tonight', 'snl', 'not', 'dissapoint', 'lol'], ['sure', 'upload', 'could', 'wait', 'got', 'home', 'enjoy', 'parti'], ['snoop', 'uncl', 'coolest', 'dancer', 'ever'], ['gt', 'gt', 'blond', 'keep', 'fail', 'driver', 'licens', 'test', 'gt', 'gt', 'gt', 'gt', 'gt', 'everytim', 'stop', 'jump', 'back', 'seat'], ['wow', 'tweet', 'night', 'look', 'like', 'total', 'made', 'day'], ['boyfriend', 'better', 'mine', 'hell'], ['know', 'not', 'one', 'harder'], ['realli', 'laugh', 'loud', 'see', 'limo', 'front', 'macdonald', 'funni'], ['absolut', 'love', 'thank'], ['holla', 'happi', 'earli', 'mother', 'day'], ['watch', 'rescuer', 'dru', 'ate', 'mickey', 'disney', 'sequel', 'done'], ['way', 'backstreet', 'boy', 'rememb', 'gasp', 'use', 'song', 'chuck', 'like', 'omfg', 'way'], ['okay', 'well', 'thank', 'beauti'], ['thank', 'tell', 'friend', 'twitter', 'say'], ['awesom', 'rachel', 'n', 'birthday', 'parti', 'today', 'fun', 'way', 'seen', 'sam', 'prom', 'pix', 'gorgeous'], ['never', 'realiz', 'good', 'techmem', 'actual', 'read', 'duh', 'avid', 'tech', 'crunch', 'reader', 'much', 'better'], ['haha', 'cute', 'ps', 'thank', 'repli', 'made', 'day', 'haha'], ['star', 'trek', 'soo', 'awesom', 'spock', 'kirk', 'hillari', 'see', 'soon'], ['tri', 'figur', 'twitter', 'thing', 'quit', 'excit'], ['thank', 'sweeti', 'not', 'wait', 'set', 'sail', 'next', 'week'], ['must', 'adwancrd', 'sens', 'humor', 'funni'], ['aww', 'wish', 'brew', 'b'], ['barack', 'obama', 'legend', 'watch', 'dinner', 'speach', 'pretti', 'funni'], ['sound', 'interest'], ['minut', 'happi', 'mother', 'day', 'amaz', 'mom', 'go', 'bed'], ['thank', 'come', 'tonight', 'made', 'happi'], ['nice', 'not', 'see', 'firework', 'sure', 'heard'], ['look', 'forward', 'orang', 'juic', 'fri', 'egg', 'cinnamon', 'roll', 'tomorrow', 'morn'], ['yes', 'right', 'church'], ['great', 'night', 'friend'], ['star', 'trek', 'pure', 'awesom', 'love', 'lt', 'great', 'see'], ['word', 'yayi', 'twitter', 'dark', 'lol'], ['aww', 'lovi', 'yes', 'love', 'total', 'finish', 'buffalo', 'sammich', 'hit', 'new', 'bongi', 'lt'], ['bake', 'experi', 'result', 'delici', 'sweet', 'rich', 'almost', 'sweet'], ['aww', 'sweeti', 'hope', 'mom', 'wonder', 'mother', 'day'], ['v', 'ever', 'come', 'back', 'kind', 'comfi'], ['great', 'seein', 'guy', 'today', 'look', 'happi', 'love', 'let', 'us', 'hang', 'soon', 'love'], ['ty', 'sweetheart'], ['good', 'night', 'everybodi', 'love', 'phillip', 'xo'], ['yes', 'must', 'much', 'fun', 'sxsw', 'guy', 'pj', 'parti', 'room'], ['hi', 'barb', 'frm', 'ia', 'new', 'tweetin', 'enjoy', 'read', 'tweet', 'seem', 'like', 'wonder', 'know', 'wonder', 'actress'], ['yea', 'way', 'go', 'super', 'excit', 'great', 'midwest', 'resourc', 'midwest', 'pride'], ['okay', 'thank'], ['today', 'better', 'panda', 'ealli', 'cheer', 'not', 'know', 'happi', 'like', 'legit', 'happi'], ['yo', 'mom', 'day', 'today', 'big', 'mom', 'duke', 'behav'], ['ok', 'hit', 'point', 'relax', 'head', 'bed', 'sleep', 'well', 'happi', 'mother', 'day', 'mom', 'night'], ['alway', 'thought', 'scuba', 'dive', 'would', 'give', 'entir', 'new', 'perspect', 'world', 'chicken', 'help'], ['happi', 'mother', 'day'], ['thank'], ['oh', 'not', 'ya', 'lol', 'enjoy'], ['thank', 'much', 'mom', 'sweet', 'think', 'us'], ['watch', 'scariest', 'place', 'earth', 'love', 'stuff'], ['happi', 'mother', 'day', 'mother', 'entir', 'world', 'deserv', 'day', 'us', 'right'], ['also', 'wish', 'two', 'love', 'mother', 'amp', 'special', 'mother', 'day', 'enjoy'], ['quot', 'organ', 'forget', 'peopl', 'fail', 'quot', 'preach', 'convert', 'peopl'], ['fun'], ['think', 'would', 'good', 'radio', 'like', 'awesom', 'music', 'great', 'person'], ['weird', 'need', 'lay', 'smoke', 'talk'], ['aww', 'got', 'photo', 'cute', 'bunni'], ['make', 'german', 'appl', 'slice', 'nom', 'nom', 'nom'], ['thank'], ['got', 'see', 'favorit', 'guy', 'back', 'long', 'island', 'head', 'back', 'citi', 'tomorrow', 'monday', 'boyfriend', 'lt'], ['back', 'bingo', 'fun', 'night'], ['thank', 'god', 'starbuck'], ['thank', 'ladi'], ['hug', 'back'], ['fun'], ['happi', 'mother', 'day', 'ladi', 'moment', 'cherish', 'children', 'today', 'let', 'moment', 'cherish', 'return'], ['happi', 'mother', 'day', 'mother'], ['woke', 'happi', 'mommi', 'day', 'everyon', 'mom', 'grandma'], ['not', 'know', 'blog', 'awesom'], ['deserv', 'much', 'better', 'hang', 'good', 'thing', 'come', 'wait'], ['thai', 'food', 'natali', 'love', 'stuff', 'make', 'smile'], ['gudluck'], ['total', 'best', 'part', 'day', 'studi', 'haha', 'ok', 'realli', 'leav', 'holli', 'short', 'peac'], ['oh', 'ps', 'sinc', 'alreadi', 'probabl', 'say', 'quot', 'happi', 'mother', 'day', 'quot', 'mom', 'mother'], ['chicken', 'beer', 'good', 'compani', 'make', 'good', 'night'], ['thank', 'havin', 'us', 'overr'], ['much', 'fun', 'tonight', 'soo', 'excit', 'get', 'home', 'go', 'sleep'], ['happi', 'mother', 'day', 'fabul', 'mom', 'world', 'would', 'not', 'run', 'without', 'us', 'keep', 'good', 'work', 'enjoy', 'day'], ['absolut', 'love', 'r', 'mani', 'thing'], ['realli', 'want', 'llike', 'realli', 'start', 'hate', 'way', 'messag', 'great', 'one', 'known', 'dylan'], ['mayb', 'get', 'statu', 'sainthood', 'seek', 'not', 'victim', 'like', 'peopl'], ['well', 'enough', 'mushi', 'famili', 'talk', 'bed', 'stubborn', 'go'], ['not', 'get', 'fast', 'enough'], ['choir', 'banquet', 'could', 'ever', 'dream', 'happi', 'parti', 'lauren'], ['fan', 'year', 'inspir', 'truli', 'idol', 'best', 'wish'], ['sheboygan', 'teekay', 'kid', 'fight', 'angus', 'ryan', 'mall', 'mcdonald', 'high', 'parti', 'beer', 'pong', 'drink', 'drive', 'home', 'fun', 'night'], ['firework', 'kboom', 'concert', 'second', 'best', 'ever', 'last', 'year', 'show', 'lt', 'sigh', 'gt'], ['tyler', 'perri', 'hilari', 'think', 'bed', 'though', 'tweet', 'ya', 'morn', 'goodnight'], ['dude', 'new', 'star', 'trek', 'burger', 'king', 'commerci', 'bud', 'light', 'burger', 'king', 'proud', 'man'], ['parti', 'awesom', 'soo', 'tire', 'bye', 'ps', 'happi', 'momma', 'day'], ['happi', 'birthday'], ['mm', 'love', 'app', 'guess', 'real', 'thing', 'help', 'work', 'effici'], ['hope', 'take', 'offer', 'one', 'day'], ['happi', 'mommi', 'day'], ['may', 'still', 'not', 'like', 'hear', 'name', 'much', 'blackhawk', 'canuck'], ['feel', 'like', 'need', 'catch', 'twitter', 'not', 'done', 'much', 'weekend'], ['kickass', 'day', 'full', 'seaworld', 'retard', 'year', 'old', 'guy', 'origin', 'win', 'day'], ['ok', 'star', 'trek', 'fan', 'given', 'new', 'movi', 'good', 'review', 'get', 'excit'], ['thank'], ['need', 'watch', 'white', 'hous', 'correspond', 'dinner', 'would', 'cheer'], ['list', 'music', 'put', 'finish', 'touch', 'mother', 'day', 'present', 'cool', 'part', 'not', 'cost', 'thing'], ['orrall', 'fun'], ['aww', 'yeah', 'love', 'one', 'rememb', 'see', 'great', 'america', 'tassi', 'great', 'memori'], ['mhmm', 'not', 'know', 'thought', 'show', 'freak', 'peopl', 'yeah', 'total', 'understand', 'guy', 'vn', 'sound', 'cool'], ['wonder', 'weekend', 'love', 'famili', 'amp', 'friend', 'awesom', 'happi', 'mother', 'day', 'mommi', 'lt'], ['granni', 'linda', 'happi'], ['happi', 'mother', 'day'], ['think', 'castl', 'fun'], ['thank', 'ami', 'full', 'hot'], ['luck', 'done'], ['welcom', 'aboard', 'new', 'follow', 'thank', 'honor'], ['not', 'stop', 'play', 'fallout', 'game', 'addict', 'like', 'crack', 'bad', 'dream', 'repair', 'gun', 'sleep'], ['awsom', 'salad', 'recommend', 'get', 'spicey', 'buffalo', 'chicken', 'salad'], ['happi', 'mother', 'day', 'motherss', 'lt'], ['not', 'mom', 'dad', 'hmm', 'well', 'forward', 'link', 'mom', 'embarrass'], ['hii', 'miss'], ['well', 'fun', 'even'], ['omgood', 'final', 'back', 'dinner', 'fam', 'bam'], ['absolut', 'incred', 'offici', 'favorit', 'jona', 'franki', 'man'], ['yeah', 'jimmi', 'fallon', 'back', 'skit', 'yay'], ['need', 'date', 'wed', 'realli', 'not', 'want', 'go', 'alon', 'may', 'chanc'], ['hey', 'look', 'twitter', 'kewl'], ['anoth', 'fun', 'night', 'chill', 'wit', 'homi', 'green', 'turtl', 'n', 'time'], ['amaz', 'beer', 'pong', 'brother'], ['amaz', 'due', 'time', 'constraint', 'could', 'visit', 'meadow', 'pine', 'forest', 'shall', 'post', 'imag', 'later'], ['goodnight', 'goodby'], ['sweet', 'jayce', 'think'], ['quot', 'graverobb', 'graverobb', 'sometim', 'wonder', 'even', 'quot', 'fun', 'tonight'], ['love'], ['weird', 'oh', 'draw'], ['ohh', 'kayi', 'fasho', 'go', 'tonight', 'fun'], ['love', 'mindi', 'favorit', 'employe'], ['sowwi', 'work', 'idiot', 'call', 'want', 'break', 'day'], ['goin', 'ta', 'bed', 'goodnit', 'jessica'], ['happi', 'mother', 'day', 'mom'], ['fun', 'flashi', 'fed', 'sure', 'import', 'cheeto', 'eat', 'ass', 'fit', 'lol'], ['thank', 'joeman'], ['ashotn', 'look', 'great', 'look', 'fantast', 'alway', 'two', 'still', 'newlyw', 'glow', 'forev', 'true', 'love'], ['like', 'hr', 'shirt', 'inspir', 'think', 'say', 'would', 'never', 'actual', 'wear'], ['wonder', 'marri', 'night', 'love', 'lt'], ['hey', 'everyon', 'mix', 'first', 'singl', 'quot', 'r', 'quot', 'soo', 'excit'], ['go', 'bed', 'cuz', 'get', 'like', 'seven', 'thirti', 'someth', 'tomorrow', 'today', 'actual', 'not', 'bad', 'day'], ['make', 'sure', 'call', 'yur', 'mother', 'amp', 'tell', 'much', 'love', 'tell', 'love', 'bringin', 'world'], ['go', 'bed', 'today', 'anoth', 'good', 'unev', 'day'], ['sound', 'good', 'taylor', 'kelli', 'tour', 'togeth', 'pure', 'genious'], ['determin', 'slarm', 'around', 'hous', 'eat', 'egg', 'sandwich', 'smoke', 'bowl', 'sound', 'like', 'splendid', 'even'], ['haha', 'love', 'dnt', 'regret', 'tyga', 'lt', 'random', 'deleon', 'sing', 'tifanni', 'blew', 'haha', 'like', 'one', 'line', 'xd'], ['love', 'album', 'guy', 'not', 'wait', 'offici', 'releas', 'curious', 'top', 'use'], ['thing', 'know', 'star', 'trek', 'joke', 'tina', 'fey', 'twitter', 'quot', 'may', 'quot'], ['great', 'night'], ['greeaatt', 'babe', 'amaz'], ['beach', 'phenomen'], ['haha', 'yup', 'still', 'terribl', 'headach', 'super', 'swollen', 'puffi', 'eye', 'not', 'think', 'go'], ['fun'], ['gotten', 'better', 'keep'], ['not', 'test', 'find', 'cancer', 'stuff', 'regard', 'case', 'posit', 'result', 'would', 'good', 'thing'], ['bed', 'famili', 'wonder', 'day', 'plan', 'today', 'happi', 'mother', 'day'], ['happi', 'mother', 'day', 'mama', 'great', 'appreci', 'mama'], ['thank', 'head', 'ethan', 'watch'], ['go', 'bed', 'goodnight'], ['love', 'mom', 'yo', 'amo', 'mi', 'thank', 'mommi', 'ti', 'amo', 'con', 'tutto', 'il', 'mio', 'cuor', 'happi', 'mother', 'day'], ['smore', 'plus', 'jacuzzi', 'equal', 'amaz'], ['go', 'get', 'comp', 'go', 'back', 'parti', 'safe', 'amp', 'fun'], ['hot', 'cuppa', 'coffe', 'made', 'milk', 'amp', 'fortifi', 'monin', 'irish', 'coffe', 'syrup', 'bliss'], ['juss', 'boredd'], ['happi', 'birthday', 'chip', 'sister'], ['lol', 'trash', 'kitchen'], ['lool', 'chip', 'ketchup', 'ya', 'waili', 'let', 'us', 'fish', 'finger', 'not', 'sure', 'bake', 'bean', 'though'], ['hahaha', 'thaank', 'brazil'], ['aww', 'cuti'], ['thank', 'hour', 'ahead'], ['saw', 'piec'], ['aww', 'thank', 'amp', 'welcom', 'lol'], ['go', 'bed', 'busi', 'day', 'mother', 'day', 'madr', 'te', 'amo'], ['notic', 'yesterday', 'actual', 'realli', 'happi', 'startrek'], ['home', 'last', 'happi', 'mother', 'mother', 'special', 'thank', 'father', 'bought', 'tulip', 'princess', 'adult', 'swim', 'time', 'anim'], ['lol', 'great', 'episod'], ['hmm', 'miracl', 'use', 'twitter', 'fun', 'tweet'], ['potter', 'also', 'categori', 'hehe', 'lt', 'love', 'much'], ['funni', 'love', 'almost', 'fell', 'haha'], ['happi', 'mom', 'day', 'mom'], ['nice', 'way', 'fall', 'asleep'], ['brief', 'brb', 'goodnight', 'not', 'catch', 'later', 'got', 'ck', 'someth'], ['not', 'get', 'treatment', 'go', 'hang', 'pool', 'hot', 'tub'], ['follow', 'cool'], ['rescu', 'two', 'ador', 'pit', 'mix', 'pup', 'today', 'lc', 'brodi', 'look', 'adopt', 'info', 'pic'], ['sound', 'cool', 'post', 'video'], ['happi', 'mother', 'day', 'grown', 'n', 'happi', 'amp', 'lil', 'prego', 'smut', 'lol', 'play', 'everyon', 'love', 'happi', 'mother', 'day', 'amp', 'god', 'bless'], ['love', 'twitter'], ['love', 'ice', 'cream', 'love', 'cake', 'cooki', 'cream', 'ice', 'cream', 'cake', 'top'], ['juss', 'drop', 'wife', 'love'], ['good', 'morn', 'good', 'luck', 'beliv'], ['sorri', 'miss', 'farm', 'today', 'dm', 'would', 'like', 'photo', 'today'], ['thank'], ['happi', 'mother', 'day', 'mom', 'tough', 'job', 'total', 'worth'], ['may', 'need', 'think', 'take', 'mine'], ['happi', 'mother', 'day', 'mom'], ['subway', 'alway', 'tast', 'better', 'els', 'pay'], ['aw', 'thas', 'good', 'glad', 'happi', 'jus', 'chillin'], ['love', 'tweet', 'sweet'], ['not', 'know', 'supervillian', 'fail', 'saw', 'januari', 'warfield', 'sf', 'legit', 'show', 'sure'], ['thank', 'jon', 'sweet'], ['elain', 'onlin', 'mommi', 'give', 'good', 'advic'], ['back', 'best', 'parti', 'ever'], ['beauti', 'bride', 'go', 'love', 'marri', 'life', 'absolut', 'rock', 'congrat'], ['yeah', 'not', 'buy', 'one', 'hot', 'minut'], ['say', 'quot', 'happi', 'mother', 'day', 'quot'], ['sister', 'graduat', 'today', 'amaz', 'super', 'emot', 'wow'], ['sorri', 'sweetpea', 'almost'], ['yeah', 'love', 'cali', 'much'], ['happi', 'mother', 'day'], ['nah', 'not', 'twiter', 'follow', 'fabul'], ['would', 'love', 'slice', 'summer', 'piper', 'lemonad', 'stand', 'think', 'could', 'jump', 'trampolin'], ['ooh', 'good', 'thank', 'head', 'bro'], ['love', 'wit', 'fool', 'colleg', 'hill'], ['not', 'meet', 'rosi', 'donnel', 'still', 'fun', 'night'], ['soo', 'win', 'powerbal', 'jackpot', 'impos', 'formid', 'upon', 'weather'], ['want', 'say', 'lt', 'music', 'scene', 'aesthet', 'n', 'danger', 'radio', 'hope', 'get', 'see', 'guy', 'day'], ['incas', 'forget', 'happi', 'mother', 'day', 'mom', 'mommi', 'best', 'one', 'world'], ['happi', 'mother', 'day'], ['hey', 'everyon', 'mix', 'first', 'singl', 'quot', 'r', 'quot', 'soo', 'excit'], ['eh', 'better', 'excit', 'see', 'ryan', 'hurley', 'tomorrow'], ['would', 'still', 'rather', 'shoe', 'instead', 'bed', 'work', 'tommorow', 'love', 'cold', 'weather'], ['haha', 'phew', 'never', 'said'], ['yup', 'pretti', 'sure', 'summer', 'could', 'not', 'start', 'better', 'one', 'year'], ['leav', 'fight', 'tire', 'voic', 'hurt'], ['want', 'come', 'back', 'onlin', 'talk', 'gossip', 'horribl', 'thing', 'transpir', 'today'], ['tire', 'think', 'go', 'go', 'bed'], ['way', 'saw', 'ellen', 'yesterday', 'late', 'compar', 'usa', 'awesom'], ['not', 'want', 'tell', 'think', 'bodi', 'odour'], ['love', 'boy'], ['awesom', 'pedicur', 'today'], ['go', 'alley', 'birthday', 'prima'], ['dream'], ['welcom'], ['got', 'pool', 'go', 'watch', 'tv', 'stuff', 'comput'], ['know', 'booski', 'everywher', 'amp', 'thank', 'reassur', 'love'], ['happi', 'mama', 'day', 'mama'], ['happi', 'mother', 'day', 'woman', 'men', 'made', 'mother'], ['goodnight'], ['way', 'ear', 'get', 'better', 'time', 'final', 'say', 'goodnight', 'twitter', 'world', 'even', 'though', 'alreadi', 'asleep', 'xoxo'], ['congratul', 'phil', 'packer', 'complet', 'london', 'marathon', 'x', 'shine', 'exampl', 'us', 'x'], ['thank', 'dear', 'wish', 'best'], ['ador'], ['would', 'panic', 'littl', 'mayb', 'read', 'orbitron', 'gym', 'like', 'els', 'fail'], ['happi', 'mother', 'day', 'mommii', 'owt', 'theaa', 'amp', 'ii', 'think', 'ii', 'got', 'thaa', 'hang', 'thii', 'thi', 'yay'], ['live', 'long', 'prosper', 'lol', 'star', 'trek', 'best'], ['quot', 'never', 'give', 'someth', 'not', 'go', 'day', 'without', 'think', 'quot', 'like', 'quot'], ['saw', 'perform', 'love', 'thank', 'mc', 'mong'], ['tonight', 'art', 'show', 'success'], ['happi', 'happi', 'joy', 'joy', 'good', 'enough'], ['tire', 'goodnight', 'twitter', 'mother', 'day', 'happi', 'mother', 'day', 'lov', 'moomi', 'lt', 'yayi', 'god', 'bless'], ['may', 'pc', 'love', 'anyway', 'mayb', 'someday', 'becom', 'mac'], ['wish', 'good', 'night', 'everybodi'], ['good', 'morn'], ['happi', 'mother', 'day', 'mom', 'sure', 'heart', 'mankind'], ['feel', 'nice', 'got', 'big', 'ass', 'smile', 'face', 'reason', 'take', 'ass', 'sleep', 'right', 'lol'], ['goodnight', 'actual', 'great', 'night', 'see', 'daniel', 'tomorrow'], ['seem', 'grandmoth', 'found', 'way', 'break', 'pipe', 'hous', 'go', 'go', 'fix', 'blur', 'woman'], ['goodnight'], ['stick', 'alright', 'whole', 'sketchi', 'world', 'wait', 'taken', 'advantag'], ['thank', 'dude'], ['thank'], ['happi', 'mother', 'day'], ['much', 'excit', 'go', 'back', 'school'], ['happi', 'motherss', 'dayi', 'sister', 'decid', 'make', 'decor', 'hous', 'andd', 'danc', 'sang', 'hahaa'], ['happi', 'mother', 'day', 'gift', 'mother', 'ever', 'equal', 'gift', 'life'], ['happi', 'mother', 'day', 'hahaha'], ['aw', 'glad', 'would', 'one'], ['not', 'go', 'lie', 'love', 'ace', 'cake', 'woop', 'lost'], ['love', 'mom'], ['good', 'luck', 'pump'], ['ahh', 'love', 'hes', 'thee', 'best'], ['happi', 'mother', 'day'], ['rest', 'well'], ['go', 'soon', 'hope', 'hear', 'late', 'nite', 'humor'], ['man', 'sweep', 'worri'], ['ohh', 'awesom', 'probabl', 'coulda', 'gotten', 'gift', 'ticket', 'outta', 'foil', 'queen', 'lol'], ['aww', 'sweet', 'tt', 'sure', 'love', 'good', 'son'], ['final', 'holiday'], ['lol', 'great', 'movi'], ['time', 'go', 'sleep', 'almost', 'night', 'everyon', 'happi', 'mother', 'day', 'mom'], ['hope', 'get', 'better', 'know', 'best', 'medic', 'attent', 'not', 'let', 'know', 'right'], ['thank'], ['glad', 'def', 'need', 'pick', 'drama', 'free'], ['twittervers', 'much', 'twitter', 'love'], ['hahaha', 'use', 'phone', 'everywher', 'use'], ['hah', 'knock', 'wood', 'pc', 'never', 'crash', 'laptop', 'care', 'stuff', 'mayb'], ['pack', 'leav', 'inlaw', 'hous', 'head', 'home', 'sweet', 'home', 'nice', 'weekend', 'back', 'work', 'hour'], ['well', 'thank', 'phone'], ['thank', 'appreci'], ['aw', 'not', 'sad', 'give', 'ginger', 'littl', 'pat', 'head', 'mwah'], ['ah', 'found', 'weird', 'screen', 'name', 'name', 'war', 'jazz'], ['cont', 'told', 'love', 'bean', 'toast', 'cute'], ['home', 'chelsea', 'jam', 'session', 'lt', 'chelsea', 'abbi', 'luh'], ['high', 'five', 'fan', 'final', 'write', 'fanci', 'news', 'post', 'short', 'want', 'get', 'mod', 'soon', 'possibl'], ['great', 'dinner', 'great', 'friend', 'follow', 'cupcak'], ['happi', 'mother', 'day', 'mom'], ['test', 'theori', 'right', 'arm', 'strum', 'got', 'feelin', 'hum', 'new', 'tune'], ['check', 'thank', 'good', 'luck', 'book', 'bella'], ['happi', 'mother', 'day', 'mother'], ['hi', 'nice', 'meet'], ['great', 'patio', 'perfect', 'busi', 'bed', 'ahh'], ['happi', 'mother', 'day', 'mommi', 'exspeci', 'mine', 'love', 'mommi'], ['super', 'massiv', 'sandwich', 'mom', 'made', 'last', 'night', 'ohh', 'yummi', 'way', 'happi', 'mother', 'day', 'mom'], ['hey', 'hey', 'problem'], ['yippe', 'darl', 'girl', 'love', 'soo', 'much', 'thrill', 'found'], ['hour', 'min', 'pressur', 'need', 'hurri'], ['ili', 'babe', 'sweet', 'dream'], ['sweeni', 'todd', 'awesom', 'movi', 'best'], ['yess', 'talk', 'hott', 'guy', 'happi', 'ass', 'fuk'], ['thank', 'gut', 'follow', 'mean', 'lot'], ['nah', 'not', 'tell', 'diego', 'donminican', 'spot', 'get', 'fuck'], ['aww', 'thank', 'honey', 'didja', 'get', 'mommi', 'daddi'], ['whenev', 'mama', 'let', 'us'], ['jaw', 'drop', 'gasp', 'whatev', 'mean', 'sweet', 'pie', 'allow', 'coach', 'amp', 'cancer', 'amp'], ['finish', 'watch', 'star', 'trek', 'imax', 'could', 'watch', 'night', 'live', 'long', 'prosper'], ['taco', 'bell', 'tramp', 'yessir'], ['watch', 'snl', 'guess', 'justin', 'funni', 'hahahah'], ['glad', 'make', 'sumon', 'smile'], ['haha', 'lol', 'one', 'ef', 'cool', 'got', 'gorgeous', 'repres', 'time'], ['tire', 'go', 'sleep', 'night', 'everyon'], ['drink', 'hot', 'chocol', 'yummi'], ['thing', 'look', 'better', 'better', 'think', 'might', 'quit', 'happi'], ['think', 'fall', 'love', 'xx', 'iloveyou'], ['big', 'man', 'embrac', 'tear'], ['well', 'someth', 'thaz', 'quick', 'pleas'], ['happi', 'mother', 'day'], ['delici', 'sushi', 'niko', 'niko', 'vermont', 'hollywood', 'mm'], ['aww', 'happi', 'mother', 'day'], ['tomorrow', 'mother', 'day', 'good', 'food', 'amp', 'present', 'mom', 'good', 'back', 'amp', 'go', 'junction', 'coolest', 'peopl', 'olli'], ['nice', 'momma', 'day'], ['awesom'], ['yeah', 'told', 'stanley', 'time', 'want', 'slap', 'girl', 'icki', 'bitch', 'encorag', 'bad', 'behavior'], ['hahhahah', 'realli', 'made', 'laugh', 'loudd', 'ahahahahahahahahah', 'fuunni'], ['thank', 'cheer', 'back'], ['happi', 'mother', 'day', 'mom', 'everi', 'mom', 'everywher', 'stroll', 'beach', 'later', 'hope'], ['love', 'could', 'not', 'stop', 'one', 'pictur', 'first', 'one', 'priceless', 'speedo', 'great', 'kudo', 'mom'], ['great', 'dinner', 'wonder', 'girlfriend'], ['lol', 'nice', 'love', 'concert', 'aha', 'go', 'post', 'pic'], ['suffic', 'breath', 'okay', 'invit', 'mine', 'not', 'promis', 'fun', 'time', 'jinx'], ['thank'], ['thank', 'name', 'strike', 'everi', 'time', 'see', 'friend', 'mine', 'use', 'belofsouthi', 'email'], ['cool', 'thank', 'much', 'love'], ['see', 'birthday', 'visit', 'haha', 'wack', 'saturday'], ['love', 'mine', 'happi', 'day', 'mom', 'john', 'taylor', 'much', 'love'], ['not', 'bad', 'not', 'combin', 'fx', 'nice', 'like', 'window', 'better', 'vista', 'far', 'vista', 'win', 'reborn'], ['watch', 'quot', 'marley', 'amp', 'quot', 'cute', 'movi', 'go', 'watch', 'quot', 'twilight', 'quot', 'soon', 'love'], ['happi', 'mother', 'day', 'go', 'cook', 'someth', 'thank', 'good', 'tablespot'], ['john', 'ohh', 'like', 'like', 'best', 'show', 'ever', 'lt', 'main'], ['play', 'puppi'], ['got', 'prom', 'fun', 'prom', 'text'], ['not', 'wait', 'watch', 'next', 'season', 'hero'], ['plus', 'happi', 'mother', 'day', 'sweeti'], ['tri', 'look', 'iowa', 'state', 'fair', 'art', 'entri', 'inform', 'hope', 'get', 'piec', 'year', 'mayb', 'win', 'someth', 'get', 'notic'], ['send', 'happi', 'mama', 'day', 'shout', 'greatest', 'ever', 'kick', 'ass', 'day', 'everyday', 'love', 'son'], ['happi', 'mother', 'day', 'kadi'], ['want', 'cooki', 'breakfast', 'luckili', 'adult'], ['hous', 'muse', 'page', 'live'], ['sit', 'nathan', 'eddi', 'amp', 'brenden', 'chill', 'haha', 'great', 'day', 'love', 'life'], ['quot', 'hear', 'wonder', 'quot'], ['well', 'happi', 'mother', 'day', 'ahahahahahaha'], ['better', 'not', 'one', 'better', 'summari'], ['happi', 'go', 'sleep', 'lolz'], ['love', 'moorre'], ['enjoy', 'star', 'trek', 'pleas'], ['lol', 'omg', 'repli', 'back', 'peopl', 'thank'], ['poor', 'thing', 'come', 'watch', 'tv', 'hous', 'lol'], ['happi', 'mother', 'day', 'everyon'], ['ha', 'total', 'post', 'updat', 'lightn', 'outsid', 'pretti'], ['saw', 'snl', 'must', 'overjoy', 'final', 'go'], ['goonight', 'twitter', 'hope', 'better', 'tomorrow'], ['happi', 'mother', 'day', 'mama', 'bear'], ['final', 'abl', 'get', 'flight', 'control', 'ipod', 'best', 'game', 'app', 'damn', 'chopper', 'lol'], ['yes', 'yes', 'yes', 'lotsa', 'fun', 'not', 'wait', 'not', 'like', 'make', 'shaun', 'much', 'front', 'though', 'cos', 'ill', 'get', 'awkard', 'haha'], ['teas'], ['recommend', 'guess', 'sinc', 'bought', 'someth', 'featur', 'hope', 'bring', 'busi'], ['danica', 'team', 'not', 'end', 'world', 'hope', 'great', 'race'], ['ugh', 'hate', 'photobucket', 'amaz', 'place', 'edit', 'pictur', 'use', 'time'], ['not', 'total', 'awesom', 'see', 'reboot', 'crew', 'nice'], ['watch', 'star', 'trek', 'well', 'done', 'think', 'see', 'want', 'join'], ['sweeni', 'todd', 'deadset', 'one', 'best', 'movi', 'time'], ['yus', 'realli', 'nice'], ['listen', 'new', 'demo', 'song', 'go', 'fantast', 'done'], ['understand', 'comput', 'fun'], ['bed', 'hot', 'date', 'sudoku', 'mayb', 'chapter', 'two', 'read', 'stay', 'awak', 'long', 'great', 'night', 'tweep'], ['teehe', 'glad', 'entertain', 'ye'], ['tonight', 'hilariouss', 'love', 'everyon', 'there'], ['love', 'attempt', 'poetri'], ['love', 'friend', 'wish', 'came', 'true', 'lt', 'addit', 'gray', 'matter', 'one', 'cutest', 'movi', 'ever'], ['sunday', 'last', 'day', 'appl', 'not', 'come', 'kick', 'el', 'farolito', 'mission', 'street'], ['glad', 'littl', 'prissi', 'well', 'obvious', 'much', 'love', 'treatment', 'get'], ['ha', 'think', 'got', 'like', 'two', 'hour', 'sleep', 'last', 'night', 'earli', 'start', 'tomorrow', 'chillin', 'sleep', 'need'], ['not', 'care', 'get', 'mad', 'like', 'speak', 'mind', 'alreadt', 'crazi', 'help', 'not', 'go', 'da', 'deep', 'edg', 'fuck'], ['thank'], ['goodnight', 'love'], ['not', 'wait', 'go', 'bed'], ['thank', 'soo', 'much', 'need', 'day', 'five', 'kid', 'lol'], ['wow', 'pretti', 'much', 'amaz', 'love', 'wolverin'], ['got', 'nail', 'done', 'day', 'sweet'], ['lmao', 'yeaa', 'iight', 'n', 'shuld', 'put', 'tha', 'flick', 'panti', 'head', 'juss', 'joke'], ['fan', 'dream', 'littl', 'dream', 'kiss', 'appear', 'like', 'dawson', 'creek', 'make', 'flick'], ['great', 'time', 'parti', 'mackenzi'], ['sweet', 'dream'], ['play', 'ethan', 'love', 'babi'], ['sure', 'intent', 'turn', 'thought', 'process', 'silli'], ['dad', 'drunk', 'ass', 'today', 'success'], ['rey', 'mysterio', 'awesom'], ['happi', 'mother', 'day', 'amaz', 'women', 'put', 'us', 'crazi', 'demand', 'children', 'thank', 'much'], ['awesom', 'feel', 'fulfil', 'not', 'go', 'work', 'soo', 'mani', 'peopl', 'summer', 'total', 'excit'], ['woke', 'coffe', 'listen', 'music', 'read', 'feel', 'great'], ['socksi', 'plucki', 'independ', 'caspar', 'lazi', 'attent', 'seek'], ['awesom', 'girl', 'scout', 'day', 'dodger', 'stadium', 'two', 'awesom', 'olymp', 'athlet', 'joanna', 'hay', 'heather', 'bown'], ['yeah', 'want', 'love', 'quot', 'fall', 'slowli', 'quot', 'song', 'keep', 'play', 'head'], ['happi', 'mother', 'day'], ['not', 'want', 'hurt'], ['steak', 'catch', 'day'], ['law', 'power', 'robert', 'green', 'littl', 'bit', 'much', 'anyon', 'interest', 'copi', 'dm'], ['mom', 'wear', 'shrug', 'bought', 'not', 'wait', 'c', 'n'], ['think', 'go', 'go', 'outsid', 'john', 'cage', 'moment', 'music', 'major', 'rejoic'], ['love', 'memori', 'almost', 'like', 'favourit', 'book'], ['not', 'go', 'cruis', 'wish', 'go', 'vacat', 'thank', 'though'], ['not', 'fuckin', 'wait', 'mate', 'goin', 'fantast', 'made', 'week'], ['sure', 'tell', 'mom', 'love', 'thank', 'put'], ['thank', 'hope', 'turn', 'top', 'week'], ['come', 'vancouv', 'throw', 'stuff', 'onto', 'ice', 'thought', 'canuck', 'suppos', 'polit', 'stuff'], ['make', 'margarita', 'watch', 'milk', 'good', 'time'], ['download', 'music', 'hour', 'love', 'happen'], ['thank', 'ami', 'video', 'awesom', 'see', 'tmh', 'amaz', 'bounci', 'bounci', 'bounci'], ['overcom', 'whatev', 'dart', 'enemi', 'may', 'tri', 'stop', 'got', 'stay', 'focus', 'tweetz', 'god', 'bless'], ['het', 'r', 'finish', 'clean', 'pond', 'not', 'stay', 'long', 'get', 'wrinkl', 'kid'], ['busi', 'talk', 'mom', 'bhabhi', 'like', 'card', 'bro', 'made', 'wait', 'sis', 'get', 'back', 'church'], ['yay', 'not', 'wait', 'come', 'bookstor', 'get', 'new', 'book'], ['movi', 'pretti', 'good', 'kind', 'predict', 'point', 'good', 'action', 'sequenc'], ['drink', 'yay'], ['good', 'hear', 'allah', 'aapko', 'sehat', 'de'], ['say', 'much', 'like', 'new', 'twitteriff'], ['jayce', 'debat', 'team', 'rock', 'hous', 'opportun', 'repres', 'us', 'tunsia', 'africa', 'go', 'jayce'], ['thank', 'nice', 'appreci'], ['nope', 'tomorrow', 'tire', 'need', 'bed'], ['ah', 'rememb', 'hope', 'good', 'news', 'come', 'hope', 'soon', 'someon', 'know', 'may', 'happyd', 'commenc'], ['love', 'time', 'low'], ['hmm', 'bu', 'tour', 'cool', 'say'], ['truli', 'prais', 'god', 'greatest', 'mother', 'world', 'happi', 'mother', 'day', 'mother', 'read', 'enjoy', 'day'], ['happi', 'mother', 'day'], ['woop', 'meant', 'agre', 'repli', 'lol', 'happi', 'mother', 'day', 'well', 'tti', 'soon'], ['ugh', 'amaz', 'night', 'time', 'bed', 'know', 'go', 'sleep', 'well', 'get', 'earli', 'good', 'night'], ['omg', 'amaz', 'twist', 'crazi', 'awesom', 'movi'], ['yw', 'get', 'realli', 'hot', 'middl', 'summer', 'like', 'right', 'perfect', 'less', 'hour', 'away'], ['good', 'night', 'erin', 'would', 'not', 'say', 'earli', 'old'], ['thankyou', 'yes', 'parti'], ['clean', 'laundri', 'nail', 'paint', 'product', 'saturday', 'night'], ['realli', 'good'], ['spend', 'qt', 'hubbi'], ['put', 'quot', 'quot', 'usernam', 'wow'], ['ok', 'offici', 'quot', 'old', 'least', 'feel', 'likewis', 'old', 'amp', 'tiredd', 'amp', 'wast'], ['write', 'mother', 'day', 'card', 'mom', 'gran', 'hurray'], ['go', 'bed', 'plan', 'tomorrow', 'hang', 'around', 'good', 'night', 'peopl', 'lt'], ['amazingg', 'replyy', 'dream', 'come', 'true', 'would', 'repli'], ['lauren', 'see', 'hill', 'lol', 'seem', 'like', 'great', 'friend'], ['good', 'littl', 'saturday', 'not', 'includ', 'bed', 'bath', 'beyond', 'border', 'list', 'not', 'wait', 'tomorrow', 'good', 'day', 'plan'], ['yay'], ['awesom', 'night', 'citi'], ['final', 'hit', 'friend', 'thank'], ['thank', 'ff', 'followfriday'], ['happi', 'mother', 'day', 'mom', 'love'], ['omg', 'patron', 'fav', 'jealous', 'icant', 'make', 'serious', 'alabama', 'visitin', 'fam'], ['time', 'reissu', 'album', 'vinyl', 'yess', 'would', 'fab', 'fab', 'fab'], ['hang', 'kevin', 'tomorrow', 'goe', 'product'], ['enjoy', 'cool', 'breez', 'beach', 'help', 'relax', 'unwind'], ['awesom', 'saw', 'thursday', 'night', 'great', 'perfect', 'cast'], ['watch', 'twilight', 'lt', 'watch', 'audio', 'commentari', 'soo', 'funni'], ['write', 'mother', 'day', 'card', 'mom', 'aunt', 'amyy', 'not', 'wait', 'mommi'], ['want', 'sleep', 'xd', 'song', 'head', 'make', 'crazi', 'not', 'know', 'write', 'song', 'not', 'hahhaha'], ['thank', 'friend', 'went', 'watch', 'movi', 'ate', 'chocol', 'chip', 'pancak', 'one', 'friend', 'hous', 'fabul'], ['awesom', 'fruit', 'veget', 'juic', 'open', 'lam', 'noodl'], ['coz', 'love'], ['aww', 'happi', 'mother', 'day', 'girli', 'kingston', 'lucki', 'great', 'mommi'], ['love', 'friend', 'drew', 'fun', 'tonight'], ['celebr', 'play', 'dez', 'moin', 'tdwp'], ['friend', 'gone', 'sushi', 'movi', 'laughter', 'need', 'fun'], ['need', 'b', 'get', 'sleep', 'night', 'good', 'sunday'], ['hug', 'kathi', 'though', 'mom', 'heaven', 'know', 'smile', 'accomplish', 'amp', 'peopl', 'keep', 'posit'], ['nope', 'san', 'leandro', 'marina', 'hope', 'well'], ['receiv', 'excel', 'birthday', 'present', 'parti', 'usual', 'success'], ['first', 'happi', 'mother', 'day', 'second', 'make', 'us', 'think', 'way', 'feel', 'way', 'feel', 'not', 'know', 'wish'], ['go', 'drink', 'mojito', 'lay', 'watch', 'movi', 'hubbi', 'goodnight', 'fellow', 'tweeter'], ['satisfi', 'review'], ['happi', 'frickin', 'birthday', 'tri', 'not', 'bitter', 'share', 'day', 'love', 'wife', 'mother'], ['happi', 'mother', 'day', 'mother'], ['immens', 'pleasur', 'entertain', 'pride', 'amp', 'prejudic', 'time', 'must', 'say', 'find', 'much', 'agreeabl'], ['cont', 'right', 'fake', 'btches', 'not', 'mess', 'real', 'one', 'ahh', 'love', 'real', 'btches', 'excit'], ['happi', 'mother', 'day', 'hug', 'love', 'zoe'], ['thank', 'ok', 'tweet', 'road'], ['omg', 'wango', 'tango', 'fuck', 'awsom', 'love', 'babi', 'take'], ['ay', 'uu', 'happi', 'mother', 'day'], ['not', 'sound', 'appet'], ['miss'], ['nice', 'meet', 'tonight', 'amp', 'thank'], ['pheasant', 'dream', 'kaotic', 'one'], ['not', 'earli', 'say', 'run', 'eastern', 'time', 'hope', 'fun', 'audit', 'canada', 'ftw'], ['yoko', 'ono', 'ben', 'lee', 'easi'], ['yes', 'see', 'tonight', 'delici', 'dinner', 'chef', 'geoff', 'chez', 'hope', 'see'], ['explor', 'site', 'find', 'cool', 'stuff'], ['glad', 'vent', 'thank', 'bestfriend'], ['marri', 'year', 'wonder', 'man'], ['awesom', 'tell', 'good', 'might', 'watch'], ['sorri', 'loss', 'know', 'feel', 'lucki', 'cat'], ['woo', 'twitter', 'kind', 'suck', 'without'], ['yay', 'mother', 'day', 'love', 'mi', 'madr'], ['watch', 'season', 'episod', 'hous', 'bed', 'great', 'bedtim', 'stori'], ['look', 'forward', 'dinner', 'famili', 'friendss', 'happi', 'mother', 'day', 'mom'], ['mother', 'day', 'happi', 'mother', 'day', 'mom'], ['fun', 'late', 'night', 'talk', 'good', 'night', 'world'], ['ahh', 'soo', 'smart', 'thank', 'school', 'thought'], ['aww', 'thank'], ['keep', 'prayer', 'welcom', 'back', 'tx', 'hope', 'good', 'safe', 'flight'], ['great', 'meet', 'thank', 'use', 'hope', 'ate', 'got', 'sleep'], ['good', 'old', 'friend', 'new', 'job', 'anoth', 'good', 'day', 'work', 'paycheck', 'day', 'even', 'better'], ['watch', 'quot', 'take', 'two', 'quot', 'classic', 'lol'], ['thank', 'one', 'hit', 'patron', 'sinc'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['wine', 'saginaki', 'friend', 'good', 'time'], ['would', 'rather', 'end', 'heart', 'broken', 'regret', 'not', 'take', 'chanc'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['ate', 'much', 'vegetarian', 'pizza', 'dinner', 'good'], ['awesom', 'fruit', 'veget', 'juic', 'open', 'lam', 'noodl', 'fb'], ['got', 'la', 'miss', 'hawaii', 'alreadi', 'dang'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['yeah', 'yeah', 'gd', 'night'], ['pick', 'boston', 'legal', 'season', 'enjoy', 'matter', 'offens', 'denni', 'love', 'denni', 'crane', 'riot'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['whoa', 'twilight', 'board', 'game', 'aahaha'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['whole', 'food', 'barton', 'spring', 'yogurt', 'spot', 'amp', 'oasi', 'perfect', 'day', 'austin'], ['watch', 'episod', 'love', 'throwback', 'first', 'episod', 'use', 'sprinkler', 'theori'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['post', 'late', 'got', 'back', 'see', 'star', 'trek', 'awesom'], ['love', 'want', 'share', 'wish', 'would', 'made'], ['watch', 'youtub', 'vid', 'sing', 'paranoid', 'live', 'cute', 'sing', 'lol'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['wait', 'go', 'bed', 'great', 'weekend'], ['live', 'empir', 'bottl', 'servic', 'rock', 'connect'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['delet', 'lott', 'facebook', 'friend', 'ask', 'friend', 'want', 'not', 'idgaf'], ['ahh', 'soo', 'smart', 'thank', 'school', 'thought', 'taught'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['home', 'bed', 'super', 'duper', 'excit', 'tomorrow'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['agre', 'spongebob', 'better'], ['watch', 'quot', 'say', 'anyth', 'quot', 'great', 'movi', 'start', 'point', 'love', 'john', 'cusack'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['thank'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['fun', 'wango', 'tangoo'], ['free', 'unlimit', 'rington', 'usa', 'awesom', 'iphon'], ['sound', 'good', 'say', 'hi', 'run', 'alway', 'alway', 'coffe'], ['fun', 'day', 'theatr', 'glad', 'back', 'town'], ['good'], ['sound', 'like', 'got', 'fan', 'danstorc'], ['thank'], ['realli', 'ought', 'pay', 'attent', 'phone', 'tweet', 'sure', 'moiv', 'better'], ['know', 'thank', 'ok'], ['go', 'dear', 'love', 'janell'], ['wow', 'nice', 'laptop'], ['like', 'goo', 'goo', 'doll', 'heard', 'quot', 'iri', 'quot', 'absolut', 'love'], ['joe', 'photograph', 'famili', 'rehears', 'alway', 'fun', 'first', 'coupl', 'day', 'least'], ['noth', 'much', 'juss', 'realli', 'bore', 'hbu'], ['lol', 'thank', 'penni', 'tri', 'believ'], ['one', 'good', 'friend', 'state', 'cover', 'thank'], ['yeah', 'twitter', 'lot', 'fun', 'babe', 'especi', 'got', 'peopl', 'talk', 'lol', 'amp', 'sound', 'good', 'lol'], ['fun', 'show', 'grab', 'bite', 'eat'], ['not', 'know', 'right', 'bore', 'refus', 'studi', 'suggest'], ['love', 'hot', 'policemen', 'come', 'work'], ['also', 'certain', 'cd', 'camp', 'certain', 'somebodi', 'gave', 'yeah', 'guy', 'video', 'realli', 'frickin', 'hot'], ['like'], ['happi', 'mother', 'day'], ['not', 'stop', 'smile', 'best', 'mood', 'right'], ['mother', 'happi', 'mother', 'day', 'happi', 'sunday', 'may'], ['thank', 'incred', 'support', 'mean', 'much', 'constant', 'bless', 'amp', 'thank'], ['enjoy', 'time', 'rest', 'drive', 'mother', 'day'], ['ahahaha', 'funni'], ['wow', 'tager', 'rock', 'awesom', 'perform'], ['dinner', 'parti', 'great', 'happi', 'full', 'client', 'like', 'end', 'day'], ['good', 'nite', 'everybodi', 'lt', 'babi', 'boy', 'gt'], ['oh', 'tonight', 'good', 'night'], ['omg', 'famous', 'amanda', 'woman', 'person', 'thingi', 'hug', 'around'], ['thank'], ['basic', 'want', 'world', 'kno', 'best', 'best', 'friend', 'love', 'lt'], ['quot', 'nappi', 'quot', 'da', 'new', 'quot', 'n', 'quot', 'da', 'way', 'ilov', 'quot', 'nappi', 'quot', 'braid', 'igot', 'quot', 'quot', 'homi', 'lol'], ['happi', 'mother', 'day', 'love', 'mommi'], ['chang', 'default', 'pic', 'sinc', 'show', 'much', 'love'], ['got', 'vast', 'show', 'amp', 'kick', 'ass', 'mindblow', 'live', 'cd', 'sang', 'fave', 'song', 'n', 'awe'], ['aww', 'problem', 'sorri', 'tha', 'loss'], ['hey', 'kathi', 'happi', 'mother', 'day'], ['cute', 'kitti'], ['excit', 'tonight', 'parti', 'ron'], ['aww', 'son', 'gave', 'purpl', 'g', 'shock', 'mother', 'day'], ['happi', 'mother', 'day', 'mother', 'world'], ['quot', 'dream', 'better', 'world', 'come', 'quot', 'could', 'live', 'word', 'dude'], ['cool', 'hi', 'sam'], ['aww', 'love', 'daddi', 'work', 'day', 'week', 'almost', 'day', 'still', 'tri', 'go', 'sf', 'us'], [], ['happi', 'mother', 'day', 'everyon', 'mother', 'grandmoth', 'great', 'women', 'salut'], ['oh', 'kimmi', 'realli', 'give', 'one', 'week', 'get', 'home', 'hangout', 'better', 'get', 'see', 'lt'], ['thank'], ['watch', 'bronco', 'vs', 'chief', 'montana', 'vs', 'elway', 'nfl', 'network', 'still', 'nightmar', 'game', 'fu', 'kc'], ['good', 'thank', 'hope', 'enjoy', 'weekend'], ['happymothersday', 'mom'], ['enjoy', 'ride'], ['good', 'day', 'ya', 'happi', 'mom', 'day'], ['happi', 'mother', 'day', 'mommi', 'love'], ['special', 'happi', 'mother', 'day', 'mommi'], ['hug', 'okay', 'make', 'sure'], ['ofici', 'mother', 'day', 'hug', 'amp', 'kissa', 'mom', 'today', 'everyday', 'cook', 'good', 'idea', 'make', 'enchilada', 'suiza'], ['yeah', 'brain', 'rock', 'happi', 'share', 'knowledg', 'carri'], ['goodnight', 'tweep'], ['much', 'not', 'unless', 'one', 'pillow', 'end', 'suffoc', 'one', 'sleep', 'next'], ['amazinq', 'quess', 'alway', 'qreat', 'excus', 'wear', 'tini', 'dress', 'amp', 'heel'], ['woo', 'cav', 'happi', 'mother', 'day'], ['done', 'ew'], ['bout', 'go', 'bed', 'happi', 'mother', 'day', 'ladi', 'especi', 'th', 'takin', 'care', 'thier', 'kid', 'love', 'momma'], ['thank', 'kelli', 'mean', 'lot', 'figur', 'apt', 'thing', 'yet'], ['take', 'lot', 'pic', 'realli', 'pretti', 'lot', 'palm', 'tree'], ['not', 'mani', 'thing', 'better', 'sleep', 'window', 'open'], ['sam', 'go', 'shoot', 'self'], ['incred', 'happi', 'person', 'energi', 'love', 'danc', 'amp', 'thing', 'one', 'earth', 'peopl'], ['love', 'daddi', 'dad', 'appreci', 'daughter', 'day', 'not', 'mine'], ['thank', 'isay', 'kamusta', 'ang', 'bulacan', 'histor', 'gimmick', 'ang', 'gilmor', 'shop', 'trip'], ['not', 'bad', 'good', 'luck'], ['today', 'best', 'lt', 'eff', 'yeah', 'lt'], ['jane', 'austen', 'book', 'pride', 'prejudic', 'amp', 'emma', 'great', 'also', 'northang', 'abbey'], ['never', 'ceas', 'amaz'], ['hey', 'sam', 'happi', 'mother', 'day'], ['amaz', 'tonight', 'glad', 'could', 'share', 'babi', 'sunshin'], ['lol', 'hubbi', 'think', 'wive', 'nut'], ['pretti', 'soon', 'go', 'unfollow', 'cut', 'quick', 'grow', 'quot', 'habit', 'quot', 'love', 'challeng'], ['true', 'would', 'hahaha', 'love'], ['loll', 'colleg', 'love', 'blog', 'funni'], ['not', 'mother', 'day', 'west', 'coast', 'tyvm'], ['hey', 'kevin', 'yeah', 'one', 'go', 'toughi', 'sure', 'not', 'much', 'sleep', 'oh', 'well', 'hour', 'go'], ['aw', 'cute'], ['rofl', 'love', 'trina'], ['twitter', 'reunion', 'would', 'awesom', 'meet', 'lol', 'iwond', 'iget', 'pull'], ['enjoy', 'weekend', 'sis', 'xx'], ['drive', 'make', 'ahh', 'margarita', 'best'], ['cheif', 'beat', 'top', 'tabl', 'woo', 'go', 'sky', 'sport', 'virtual', 'rugbi', 'point'], ['plain', 'white', 'sara', 'life', 'get', 'amaz'], ['energi', 'sweeti'], ['cool'], ['tiger', 'woo', 'babi', 'omfg', 'cleveland', 'blast', 'sleep'], [], ['classic', 'snl', 'digit', 'short', 'tonight', 'mother', 'lover', 'ha', 'ha', 'good'], ['ooh', 'kno', 'eekk', 'rock', 'gt'], ['welcom', 'famili', 'new', 'pillow', 'go', 'lay', 'head', 'tonight'], ['ha', 'look', 'twitter', 'game', 'harmless', 'fun', 'despit', 'author', 'twitter', 'book', 'tri', 'talk', 'stuff'], ['down', 'live', 'abalon', 'sashimi', 'bottl', 'sake', 'happi'], ['yup', 'us', 'spend', 'time', 'mom', 'sis', 'aunt', 'great', 'mother', 'day'], ['happi', 'mother', 'dayi'], ['leg', 'fuck', 'sore', 'feet', 'hurt', 'walk', 'whataday'], ['bed', 'church', 'morn', 'happi', 'mother', 'day'], ['close', 'tri', 'yummi'], ['think', 'super', 'cute'], ['yeah', 'georg', 'say', 'someth', 'word', 'otherwis', 'jiberish', 'junk', 'love', 'joy', 'happi', 'ahh', 'see', 'nice'], ['new', 'song', 'cobra', 'starship', 'amaz'], ['got', 'home', 'stacey', 'love', 'wed'], ['happi', 'mother', 'day', 'mom', 'take', 'load', 'least', 'day'], ['yeah', 'basic', 'awesom'], ['make', 'egg', 'tart', 'amp', 'chines', 'egg', 'pud', 'yum'], ['thank', 'sweet', 'dream'], ['happi', 'mother', 'day'], ['say', 'late', 'goodnight', 'peopl'], ['life', 'exhiler', 'famili', 'kingdom', 'good', 'summer', 'sport', 'swim', 'ocean', 'night', 'kristin'], ['love', 'summer', 'not', 'forget', 'peopl', 'tomorrow', 'mother', 'day'], ['lol', 'not', 'twitter', 'hate', 'song', 'way'], ['one', 'fake', 'quot', 'quot', 'follow', 'haha', 'wish', 'would', 'instead'], ['great', 'day'], ['like'], ['ah', 'sorri', 'hear', 'saw', 'pic', 'chi', 'look', 'cool', 'got', 'beagl'], ['ps', 'love', 'new', 'profil', 'pic'], ['like'], ['ok', 'repli', 'happi', 'mother', 'day', 'inde'], ['hey', 'thank', 'anoth', 'great', 'day', 'go', 'sleep', 'chat', 'tomorrow', 'sweet', 'dream'], ['got', 'nashvill', 'ihop', 'staff', 'hit', 'dougi', 'mayn', 'fuck', 'night'], ['late', 'alreadi', 'pop', 'bridg', 'sinc', 'miss', 'tv', 'lt', 'blair', 'amp', 'jo'], ['pleas', 'snl', 'everi', 'week', 'could', 'not', 'quit', 'laugh', 'nite', 'ever'], ['love', 'show', 'would', 'total', 'go', 'time', 'bandit', 'deadliestcatch', 'tpg', 'quot', 'love', 'ocean', 'crab', 'leg', 'suspens', 'quot'], ['errbodi', 'pleas', 'check', 'id', 'appreci', 'bunch'], ['probabl', 'one', 'best', 'surpris', 'realli', 'amaz'], ['someth', 'like', 'happen', 'close', 'side', 'door', 'hard', 'engin', 'lock'], ['haha', 'aww', 'hun', 'bet', 'creativ'], ['thanx', 'mang', 'due', 'june', 'yezzir', 'first', 'babi', 'boi'], ['oh', 'like', 'idea'], ['thank'], ['candl', 'wax', 'enjoy'], ['would', 'like', 'thank', 'normal', 'random', 'work', 'internet', 'actual', 'stay', 'moment', 'saw', 'tweet'], ['thanx', 'birthday', 'wish', 'ray'], ['goodnight', 'everyon', 'happi', 'mother', 'day', 'mother'], ['kind', 'feel', 'ignor', 'anyway', 'sunday', 'arvo', 'go', 'lunch', 'amp', 'wine'], ['welcom', 'back', 'see', 'tomorrow', 'come', 'pick', 'gift'], ['thank', 'god', 'final', 'found'], ['window', 'happi', 'got', 'sum', 'wick', 'new', 'featur'], ['happi', 'mother', 'day', 'mom', 'soon', 'mom'], ['thank', 'much', 'discount', 'code', 'look', 'forward', 'tri', 'pad'], ['thank', 'follow'], ['twitter', 'reunion', 'would', 'awesom', 'meet', 'lol', 'iwond', 'iget', 'pull'], ['happi', 'mother', 'day', 'mumm', 'xoxo'], ['diamond', 'yaayi', 'tomorow', 'diamond', 'danc', 'best', 'still'], ['happi', 'mother', 'day', 'wonder', 'mother', 'world', 'includ'], ['keep', 'suggest', 'love', 'classic'], ['hundreth', 'updat', 'happi', 'mother', 'day', 'love', 'mum', 'even', 'fuss', 'fight', 'still', 'one'], ['happi', 'mother', 'day', 'justin', 'timberlak', 'version', 'mother', 'day', 'gift', 'funni'], ['realli', 'ultra', 'sweet'], ['evryon', 'come', 'spam', 'much', 'blogtv', 'glitch', 'might', 'work'], ['wish', 'happi', 'mother', 'day'], ['live', 'danni', 'noriega', 'stickam', 'said', 'hey', 'love'], ['good', 'time', 'prom', 'play', 'jona', 'brother', 'pretti', 'much', 'made', 'night'], ['sober', 'brittney', 'becki', 'brit', 'lt'], ['jeff', 'amp', 'look', 'long', 'last', 'love', 'not', 'like', 'men'], ['yes', 'acquir', 'master', 'art', 'christian', 'loong', 'journey', 'complet', 'thank'], ['twitter', 'reunion', 'would', 'awesom', 'meet', 'lol', 'iwond', 'iget', 'pull'], ['made', 'tonight', 'watch', 'littl', 'kid', 'swim', 'watch', 'movi', 'haha', 'love', 'babysit', 'haha'], ['proud', 'hous', 'detox', 'amber', 'hallucin', 'evil'], ['jon'], ['wish', 'happi', 'fabul', 'mother', 'day'], ['goodnight'], ['thank', 'take', 'compliment', 'may'], ['feel', 'realli', 'bless', 'super', 'awesom', 'best', 'friend'], ['thank', 'happi', 'mother', 'day', 'mother', 'also', 'snl', 'tonight'], ['happi', 'mother', 'day', 'mom'], ['twitter', 'reunion', 'would', 'awesom', 'meet', 'lol', 'iwond', 'iget', 'pull'], ['one', 'greatest', 'day', 'ever', 'spent', 'whole', 'day', 'besti', 'amp', 'celebr', 'instal', 'friend', 'love', 'oh', 'much', 'lt'], ['got', 'kansa', 'citi', 'excit', 'fun', 'weekend', 'famili', 'sis', 'parker', 'josh'], ['happi', 'mama', 'day', 'ladi', 'good', 'day'], ['mother', 'even', 'soon', 'mother', 'gt', 'happi', 'mother', 'day'], ['envi', 'love', 'best', 'club', 'ever'], ['good', 'night', 'mile', 'trail', 'peek', 'climb', 'morn', 'fun', 'time', 'ahead'], ['thank', 'jk', 'love', 'ya', 'death'], ['night', 'night', 'everyon', 'happi', 'mother', 'day', 'mother'], ['twitter', 'reunion', 'would', 'awesom', 'meet', 'lol', 'iwond', 'iget', 'pull'], ['ahaha', 'okay', 'thank'], ['relax', 'daughter', 'watch', 'friend'], ['stun', 'weather', 'could', 'not', 'ask', 'better'], ['think', 'amaz', 'present', 'whole', 'quot', 'keep', 'review', 'item', 'quot', 'tax', 'thing', 'blogher', 'awesom'], ['thank', 'follow', 'thing', 'join', 'interest'], ['enjoy', 'sunday', 'much', 'parent', 'revis', 'like', 'sunday'], ['twitter', 'reunion', 'would', 'awesom', 'meet', 'lol', 'iwond', 'iget', 'pull'], ['although', 'drama', 'move', 'forward', 'smile', 'count', 'bless', 'everyday', 'action', 'speak', 'volum', 'soo', 'inspir'], ['friend', 'umm', 'thank', 'follow', 'enjoy', 'ride', 'make', 'mani', 'trip', 'got', 'go', 'get'], ['happi', 'like', 'pee', 'see', 'feel', 'warm', 'sensat'], ['via', 'thank', 'tiff'], ['must', 'truli', 'amaz', 'woman', 'phenomen', 'son'], ['next', 'wk', 'c', 'drs', 'mayb', 'would', 'love', 'go', 'mac', 'grill', 'john', 'not', 'thought'], ['thank', 'well'], ['happi', 'mother', 'day'], ['pick', 'stuff', 'miss', 'time', 'think', 'miss', 'joke'], ['kind', 'want', 'smack', 'darn', 'skeleton', 'though'], ['night', 'twitter', 'love', 'happi', 'yo', 'momma', 'day', 'luff', 'mummi'], ['sweetest', 'love', 'cuz'], ['happi', 'mother', 'day'], ['smoothi', 'long', 'hard', 'day', 'heaven'], ['wish', 'mama', 'organ', 'happi', 'mother', 'day'], ['haha', 'awesom', 'good', 'job'], ['boo', 'life', 'wine', 'lucki', 'eight', 'ball', 'tonight'], ['thank'], ['spirit', 'week', 'tuesday', 'make', 'eight', 'die', 'later', 'school', 'wednesday', 'thursday', 'final', 'sleep', 'friday'], ['hell', 'yeah', 'belgian', 'beer', 'bomb', 'p'], ['nice', 'go', 'bathroom', 'not', 'hear', 'sound', 'gentl', 'run', 'water'], ['ooc', 'goodnight'], ['like', 'tweet', 'deck', 'tri', 'one', 'recomend', 'thank'], ['friday', 'favorit', 'peopl', 'ever', 'made', 'reserv', 'like', 'peopl', 'hahah'], ['great'], ['honey', 'great', 'health'], ['cool', 'think', 'del', 'go', 'korea', 'time', 'fun'], ['noth', 'excit', 'new', 'toy', 'play', 'though', 'happi', 'mother', 'day', 'ladi'], ['mind', 'tell', 'book', 'cuz', 'barn', 'nobl', 'today', 'found', 'book', 'look', 'promis'], ['happi', 'mother', 'day', 'mummi', 'love', 'xo'], ['mother', 'day', 'good'], ['get', 'readi', 'bed', 'happi', 'mother', 'day', 'mother'], ['today', 'someth', 'amaz', 'fell', 'love', 'coupon'], ['wish', 'mother', 'happi', 'mother', 'day'], ['welcom', 'network', 'buddi'], ['hey', 'pinki', 'order', 'stuff', 'site', 'gave', 'got', 'yesterday', 'mail', 'pretti', 'thank'], ['love', 'chicago', 'tonight', 'amaz'], ['excit', 'mother', 'day', 'big', 'year', 'amp', 'olivia', 'final', 'old', 'enough', 'excit', 'amp', 'understand'], ['love', 'da', 'sexi', 'ladiez', 'ya', 'beauti', 'uniqu', 'sexi', 'smart', 'not', 'let', 'nigga', 'call', 'bitch', 'cuz', 'ladi', 'ya', 'worth', 'dat', 'mean'], ['happi', 'mother', 'day', 'mother', 'not', 'one', 'call', 'someth', 'along', 'line'], ['not', 'yet', 'would', 'like', 'know', 'okay', 'mum', 'ask', 'mumm', 'hopefuli', 'go', 'tell', 'us', 'soon'], ['omg', 'kim', 'possibl', 'disney', 'channel', 'right', 'glu', 'screen'], ['alway', 'welcom', 'hun'], ['fun', 'night', 'need', 'break', 'love', 'man', 'ef', 'hilari', 'good', 'night', 'twitter', 'world', 'sweet', 'dream'], ['love', 'babi', 'see', 'cool'], ['happi', 'mother', 'day', 'vicki', 'mother', 'read'], ['yeahh', 'haha', 'mine', 'mariel', 'love', 'ur', 'fav', 'mcr', 'song'], ['make', 'momma', 'happi', 'mother', 'day', 'card', 'lt', 'love', 'mommi'], ['make', 'nice', 'cup', 'tea', 'pop', 'posit'], ['film', 'carniv', 'music', 'video', 'remind', 'cherri', 'festiv', 'use', 'go', 'back', 'home', 'ahh', 'memori'], ['feel', 'like', 'nine', 'not', 'one', 'guess', 'love', 'make', 'money'], ['found', 'liquor', 'come'], ['tire', 'go', 'go', 'bed'], ['wish', 'could', 'seen', 'girl', 'today', 'well', 'besid', 'across', 'crowd', 'haah', 'hope', 'fun'], ['believ', 'bed', 'time', 'knighti', 'knight'], ['love', 'mum', 'much', 'happi', 'mother', 'day', 'wonder', 'mother'], ['belat', 'kay', 'tita', 'wow', 'prize', 'day', 'congrat'], ['go', 'fold', 'laundri', 'hit', 'sack', 'bore', 'saturday', 'even'], ['cook', 'meatbal', 'lunch', 'yaayi'], ['reason', 'even', 'go', 'haha', 'shaun', 'dead', 'epic', 'haha'], ['plan', 'goodnight'], ['bep', 'kill', 'oh', 'leighton', 'meester', 'wave', 'us'], ['lol', 'sure', 'love', 'sushi', 'tweet', 'mani', 'pictur'], ['page', 'betray', 'cast', 'realli', 'start', 'enjoy', 'seri'], ['final', 'back', 'dinner', 'parti', 'fun', 'alic', 'wine', 'get', 'marri', 'next', 'week', 'may'], ['mom', 'world', 'congratul'], ['wowi', 'wooie', 'someon', 'updat', 'twitter', 'without', 'remind', 'not', 'even', 'mad', 'impress', 'lasagna'], ['kind', 'jim', 'kind', 'brother'], ['aww', 'awesom', 'good', 'guy'], ['happi', 'mother', 'day', 'ladi', 'coolest', 'love'], ['total', 'got', 'golden', 'girl', 'show'], ['make', 'everyth', 'fabul', 'tonight'], ['happi', 'birthday', 'justin', 'lof', 'fun', 'god', 'bless'], ['happi', 'mother', 'day', 'spend', 'day', 'famili'], ['someon', 'famili', 'die', 'would', 'heard'], ['thank', 'enjoy', 'movi', 'hope', 'well', 'te'], ['go', 'woodland', 'hill', 'gna', 'swim', 'drink', 'makin', 'best', 'good', 'day', 'yee'], ['doubt', 'darlin', 'wish', 'could', 'find', 'boy', 'worthi', 'good', 'peopl'], ['next', 'youtub', 'video', 'go', 'love', 'video'], ['good', 'girl', 'whitney'], ['great', 'show'], ['got', 'get', 'creativ', 'mother', 'day', 'gift', 'go', 'win', 'love'], ['awesom', 'ocean', 'beach', 'know', 'way', 'quot', 'yourbiggestfan', 'quot', 'big', 'fan'], ['ohh', 'coffe', 'break', 'fave', 'rock', 'lol'], ['safe', 'flight', 'good', 'meet'], ['adam', 'lambert', 'rock', 'must', 'win', 'american', 'idol'], ['got', 'home', 'work', 'tire'], ['thank', 'fr', 'yr', 'congratulatori', 'gweetin'], ['birthday', 'sex', 'great', 'song', 'man', 'someth', 'differ', 'peopl', 'want'], ['lazi', 'sunday', 'love', 'lazi', 'day'], ['yay', 'get', 'togeth', 'soon', 'someth'], ['cute'], ['final', 'gave', 'twitter', 'tri', 'find', 'soo', 'popular', 'hope', 'not', 'hook'], ['funni', 'discuss', 'bela', 'lugosi', 'dinner', 'apear', 'plan', 'b', 'outer', 'space', 'quot', 'best', 'quot', 'movi', 'ever'], ['good', 'thank', 'miami', 'say', 'come', 'wrote'], ['thank', 'brad', 'look', 'forward', 'chat', 'way', 'like', 'new', 'pix'], ['see', 'cri', 'lol'], ['everi', 'day', 'mother', 'day', 'not', 'wait', 'day', 'come', 'around', 'show', 'mom', 'much', 'appreci', 'love'], ['great', 'photoshoot', 'today', 'chris', 'ryan', 'roll', 'stone', 'keegan', 'smith', 'amp', 'fam', 'may', 'open', 'dave', 'matthew', 'band', 'summer', 'eek'], ['happi', 'mother', 'day', 'love', 'guy'], ['wish', 'happi', 'mother', 'day'], ['thank', 'best', 'tomorrow', 'hope', 'love', 'day', 'togeth'], ['oh', 'last', 'tweet', 'spent', 'half', 'hour', 'brush', 'teeth', 'new', 'electr', 'toothbrush', 'feel', 'great'], ['aww', 'nice', 'make', 'realli', 'beauti', 'coupl', 'balanc'], ['mm', 'pizza', 'help', 'make', 'cheesecak', 'eat', 'soon', 'amp', 'famili', 'nice', 'day', 'mother', 'amp', 'nanna'], ['love', 'night', 'guy', 'full', 'moon', 'think', 'go', 'onto', 'roof', 'lol'], ['enjoy', 'weekend', 'kid'], ['widescreen', 'laptop', 'rotat', 'comic', 'awesom'], ['rememb', 'put', 'phone', 'silent', 'lol', 'night', 'love'], ['new', 'phone', 'zero', 'contact', 'poo', 'send', 'messag', 'name', 'save', 'number', 'thank'], ['got', 'call', 'chimp', 'buddi', 'want', 'join', 'parti', 'load', 'prepar', 'wow', 'great', 'cup', 'tea', 'first', 'think', 'erm'], ['worst', 'stuffi', 'nose', 'ever', 'lauren', 'spend', 'night', 'took', 'much', 'sudaf'], ['news', 'like', 'band', 'quot', 'lydia', 'quot', 'song', 'good', 'listen'], ['psalm', 'said', 'god', 'children', 'high', 'happi', 'mother', 'day', 'momma'], ['chocol', 'peanut', 'butter', 'one', 'favorit', 'combon'], ['chill', 'colton', 'redesign', 'cocktail', 'hacker', 'card', 'back'], ['right', 'jealous', 'wish', 'gangsterr', 'pant', 'like', 'grandma'], ['congrat', 'hey'], ['thank', 'g', 'actual', 'birthday', 'tuesday'], ['love', 'famili', 'feud', 'episod', 'kardashian', 'tonight'], ['happi', 'mother', 'day'], ['yes', 'fascin', 'love', 'bedroom', 'oh', 'god', 'book'], ['would', 'take', 'photo', 'stuf', 'anim', 'pretti', 'funni'], ['long', 'day', 'work', 'stood', 'home', 'sleep', 'anoth', 'long', 'day', 'work', 'tomorrow', 'amp', 'happi', 'mother', 'day', 'mother'], ['happi', 'mother', 'day', 'mom', 'hope', 'wonder', 'day'], ['bwahah', 'love', 'jackass', 'movi', 'chocolate'], ['awesom', 'fortun', 'cooki', 'think', 'realli', 'go', 'exot', 'place', 'hope', 'well'], ['thank', 'advic', 'work', 'not', 'work'], ['saw', 'kim', 'kardashian', 'robertson', 'today', 'ate', 'hella', 'good', 'sandwich', 'bay', 'citi', 'santa', 'monica', 'download', 'lot', 'new', 'song'], ['thank', 'recommend', 'not', 'follow'], ['arrog', 'bastard', 'tap', 'oregon'], ['happi', 'mother', 'day', 'beauti'], ['yeahh', 'thank', 'figur'], ['thank', 'test', 'stuff', 'lol'], ['justin', 'timberlak', 'snl', 'awesom', 'dude', 'becom', 'regular'], ['syke', 'lose', 'gig', 'gain', 'better', 'one', 'frank', 'best', 'thing', 'rightard', 'scream'], ['welcom', 'tila', 'love', 'wish', 'could', 'heard'], ['quot', 'see', 'yeah', 'quot', 'quot', 'quot', 'quot', 'guarante', 'not', 'want', 'wait', 'long', 'not', 'see', 'quot', 'fuckin', 'fruit', 'basket', 'hahaha'], ['love', 'proper', 'inet', 'back'], ['sure', 'love', 'work', 'x'], ['good', 'luck', 'keep', 'rockin'], ['like', 'hear', 'not', 'unfollow', 'us', 'littl', 'peopl', 'twitter', 'make', 'big'], ['well', 'least', 'not', 'bad', 'thought', 'found', 'new', 'websit', 'watch', 'movi', 'got', 'not', 'bad', 'not', 'bad'], ['giv', 'ya', 'mom', 'n', 'gman', 'happi', 'mother', 'day'], ['happi', 'mom', 'get', 'rule', 'kid', 'take', 'day'], ['fantast', 'friend'], ['use', 'definit', 'cheaper', 'may', 'get', 'later', 'one', 'way', 'new', 'ok'], ['go', 'sausag', 'yum', 'yum'], ['know', 'ahh', 'fun'], ['still', 'not', 'gone', 'sleep', 'yet', 'earli', 'hit', 'beach', 'shop', 'yay'], ['got', 'home', 'church', 'servic', 'good'], ['omg', 'soo', 'excit', 'wait', 'ever', 'sinc', 'saw', 'one', 'midnight', 'night'], ['great', 'day', 'beach', 'bbq', 'old', 'friend', 'crazi', 'old', 'enough', 'friend', 'amp', 'learn', 'play', 'texa', 'holdem'], ['whole', 'immedi', 'citi', 'point', 'tomorrow', 'afternoon', 'monument'], ['wow', 'great', 'list', 'need', 'shop'], ['ahaha', 'album', 'stuff', 'music', 'beauti', 'love'], ['think', 'destini', 'offici', 'gone', 'crazi', 'hahahaha'], ['suck', 'horribl', 'world', 'even', 'balanc'], ['pretti', 'pictur'], ['sweeti', 'lucki', 'liberti'], ['would', 'love', 'not', 'think', 'easi', 'think', 'enthusiast'], ['love', 'life', 'ni', 'night', 'twitter', 'lt'], ['thank', 'follow', 'famili', 'photo', 'beauti', 'happi', 'mother', 'day', 'wife'], ['okay'], ['excit', 'see', 'cousin', 'week'], ['love', 'soup'], ['got', 'buy', 'onesi', 'besti', 'lol', 'ah', 'yea', 'club', 'grand', 'old', 'time'], ['glad', 'got', 'twitter', 'love', 'babi'], ['hey', 'thanx', 'follow', 'follow'], ['sign', 'twitter', 'yay'], ['thank', 'dinno', 'appreci'], ['oh', 'oh', 'oh', 'offer', 'send', 'duck', 'love', 'love', 'love', 'confit', 'duck'], ['haha', 'sorri', 'past', 'bedtim'], ['gabl', 'apart', 'corpor', 'nice'], ['prom', 'chao', 'began'], ['sell', 'risk', 'game', 'need', 'good', 'day'], ['georg', 'lopez', 'bed', 'mommi', 'day', 'tomorrow', 'wish', 'hous', 'hugh', 'lauri', 'sexay', 'sometim', 'like', 'way', 'older', 'guy'], ['sure', 'hope', 'worth', 'loveu'], ['boy', 'not', 'finish', 'taco', 'eat', 'happili'], ['well', 'hope', 'feel', 'better', 'soon', 'babe', 'go', 'bed', 'long', 'day', 'tomorrow'], ['tri', 'thank'], ['not', 'krystal', 'spent', 'night', 'last', 'dnt', 'think', 'post', 'ya', 'laugh', 'lot', 'squirrel', 'amp', 'hous', 'new', 'insid', 'joke'], ['congrat', 'photo', 'dre'], ['ashli', 'thank', 'made', 'feel', 'littl', 'better'], ['get', 'emili', 'half', 'hour', 'get', 'nice', 'day', 'talk', 'later', 'hope'], ['offic', 'mother', 'day', 'happi', 'mom', 'day'], ['fun', 'though'], ['whoo', 'babi', 'good', 'luck'], ['saw', 'star', 'word', 'bombtast', 'go', 'see', 'not', 'alreadi', 'love', 'jon', 'cho', 'haha'], ['instrumentalist', 'like', 'give', 'singer', 'hard', 'time', 'vocalist', 'job', 'toughest', 'sick'], ['excit', 'enfest', 'yaay'], ['yay', 'found', 'great', 'time', 'tonight'], ['cool', 'well', 'need', 'help', 'regard', 'googl', 'friend', 'plenti', 'info'], ['rematch', 'sound', 'better', 'not', 'think', 'lol'], ['god', 'earli', 'hayley', 'still', 'asleep', 'today', 'parti', 'day', 'get', 'stuff', 'readi', 'x'], ['coast', 'mani', 'peopl', 'know', 'love', 'nicci'], ['leg', 'soft', 'watch', 'move', 'momm', 'short', 'day', 'workk'], ['bed', 'head', 'not', 'stop', 'give', 'pain', 'ahgg', 'let', 'sinus', 'allergi', 'whatev', 'tomorrow', 'sogni'], ['one', 'thing', 'good', 'enough', 'friendship', 'retain'], ['also', 'dens', 'treatment', 'cps', 'continu', 'base', 'interpret', 'design', 'not', 'sicp', 'good'], ['definit', 'easier', 'way', 'say', 'yes'], ['clue', 'wtf'], ['say', 'new', 'layout', 'cute', 'x', 'see', 'cuti', 'hahahah'], ['thought', 'yes', 'man', 'good', 'blast', 'old', 'friend', 'tonight', 'heard', 'great', 'music'], ['anytim', 'giggl'], ['think', 'end', 'rememb', 'poetri', 'feel', 'behind', 'someth', 'far', 'import', 'name'], ['neither', 'got', 'go', 'thru', 'somethin', 'first', 'get', 'almost', 'burnt', 'hous', 'set'], ['shower', 'taken', 'room', 'right', 'bed', 'yeasterday', 'shower', 'balconi', 'sea', 'wiew', 'bit', 'nicer'], ['beauti', 'twitter', 'tell', 'mother', 'happi', 'mother', 'day'], ['oh', 'okay', 'cool', 'love', 'fast', 'furious', 'not', 'wait', 'see', 'new', 'one'], ['studi', 'like', 'crazi', 'hope', 'ace', 'exam'], ['yep', 'finish', 'chock', 'full', 'spell', 'grammat', 'error', 'clean', 'tomorrow', 'pop', 'hehe'], ['good', 'metaphor', 'democrat', 'process', 'truth', 'better', 'serv', 'not', 'transpar', 'opaqu', 'privat'], ['lol', 'l', 'love', 'tweet', 'keep', 'come'], ['norwood', 'hous', 'parti', 'haa', 'yaay', 'smile'], ['happi', 'mother', 'day', 'mom'], ['watch', 'men', 'n', 'blk', 'wishin', 'mum', 'happi', 'mother', 'day'], ['finish', 'dinner', 'yummi'], ['oh', 'love', 'text', 'drunk', 'friend', 'hahahaha'], ['pretti', 'sure', 'hero', 'status', 'rock', 'sock', 'ms', 'mccain'], ['butterfli', 'fli', 'miley', 'ray', 'oh', 'amp', 'happi', 'mother', 'day', 'lt', 'love', 'mami'], ['industri', 'repierc', 'made', 'cute', 'littl', 'friend'], ['crush', 'guy', 'job', 'name', 'tyler', 'eye', 'blue', 'mesmer', 'cool', 'nite'], ['hahaha', 'yay', 'emili', 'cool'], ['find', 'tune', 'sexi', 'smooth', 'love', 'day'], ['welcom'], ['sweet', 'spice', 'girl', 'sing', 'along', 'w', 'good', 'friend'], ['not', 'argu', 'actual', 'zero', 'thing', 'complain', 'make', 'stuff'], ['goodnight', 'peopl'], ['tri', 'sleep', 'not', 'bout', 'call', 'tisha'], ['oh', 'see'], ['went', 'ride', 'tortilla', 'flat', 'morn', 'littl', 'warm', 'nice', 'ride', 'none', 'less'], ['sleepyhead', 'look', 'forward', 'tomorrow', 'love', 'famili'], ['hahah', 'know', 'love', 'hannah', 'montana', 'movi', 'aweesom'], ['happi', 'mother', 'day', 'mom', 'love'], ['nj', 'nativ', 'thank'], ['twitter', 'use', 'remind', 'peopl', 'forgot', 'ask', 'given', 'day', 'also', 'excel', 'inspir'], ['want', 'say', 'posit', 'doin', 'good', 'chang', 'not', 'regret', 'forsur'], ['aww', 'thank', 'love', 'girl', 'lt'], ['ice', 'coffe', 'vanilla', 'ice', 'cream', 'uber', 'sick', 'mix'], ['happi', 'mother', 'day', 'mommi', 'grandma', 'haha', 'ili'], ['done', 'disneyland', 'kid', 'knock', 'stop', 'hotel', 'bar', 'grab', 'grey', 'goos', 'amp', 'tonic', 'way'], ['happi', 'mother', 'day', 'mom', 'hope', 'never', 'join', 'crowd'], ['emerg', 'radio', 'iphon', 'awesom', 'listen', 'johnson', 'counti', 'sheriff', 'live', 'scanner', 'stream'], ['goin', 'bed', 'final', 'sleepi', 'happi', 'mother', 'day'], ['problem', 'look', 'forward', 'next', 'tweet'], ['nice', 'song', 'come'], ['thank', 'bb'], ['happi', 'mother', 'day'], ['wow', 'two', 'hour', 'convers', 'someon', 'omegl', 'amaz'], ['es', 'impos', 'amar', 'starbuck'], ['look', 'haz', 'smal', 'pie', 'pleess'], ['dilf', 'oh', 'wait', 'wrong', 'mother', 'day'], ['go', 'home', 'hope', 'one', 'saw', 'play'], ['yes', 'man', 'good'], ['omg', 'awesom', 'first', 'time', 'ever', 'not', 'see', 'day', 'come', 'demi', 'take', 'day', 'haha'], ['happi', 'mother', 'day', 'night'], ['not', 'sleep', 'super', 'duper', 'duper', 'excit', 'pour', 'la', 'pari', 'love', 'citi'], ['sound', 'good', 'clean', 'cynic', 'order', 'haha', 'good', 'night', 'talk', 'tomorrow'], ['aww', 'thank', 'jon', 'know', 'make', 'ladi', 'feel', 'special'], ['get', 'wonder', 'toy'], ['break', 'pack', 'watch', 'offic', 'pam', 'quot', 'woken', 'not', 'look', 'cute', 'knew', 'meant', 'quot'], ['thank', 'good', 'tv', 'simpl', 'dollhous'], ['definit', 'write', 'look', 'forward', 'articl', 'write', 'fun'], ['great', 'babe', 'congrat'], ['one', 'mo', 'time', 'becuz', 'not', 'seen', 'yet', 'soo', 'damn', 'cool', 'ill', 'post'], ['love', 'maitu', 'n', 'love', 'happi', 'mother', 'day', 'mama'], ['bed', 'great', 'mom', 'day', 'mom'], ['aww', 'scifi', 'geek', 'starwar', 'ten', 'command', 'us', 'geek'], ['blush', 'blush', 'amp', 'blush'], ['feelin', 'right', 'rite'], ['pull', 'breakfast', 'sausag', 'mother', 'day', 'hope', 'babi', 'sleep'], ['happi', 'mother', 'day'], ['got', 'home', 'love', 'stake', 'shake', 'milkshak'], ['good', 'day', 'good', 'friend', 'make', 'not', 'regret', 'live'], ['still', 'plenti', 'food', 'left', 'thank', 'come', 'not', 'wait', 'see', 'pictur', 'came'], ['absolut', 'good', 'backup', 'romo', 'decemb'], ['ooh', 'pretti', 'jen', 'sure', 'love'], ['mom', 'ever', 'happi', 'mother', 'day'], ['good', 'night'], ['watch', 'adapt', 'interior', 'women', 'good', 'movi', 'night', 'breakfast', 'dad', 'kelley', 'morn'], ['star', 'trek', 'imax', 'not', 'huge', 'screen', 'still', 'worth', 'watch'], ['crap'], ['thank', 'much', 'phaoloo'], ['haha', 'somerset', 'theatr', 'ottawa', 'rememb', 'well', 'thing', 'chang', 'stay'], ['great', 'find'], ['life', 'good'], ['thought', 'star', 'trek', 'person', 'not', 'crazi', 'new', 'movi'], ['happi', 'birthday', 'david'], ['love', 'background', 'might', 'copi'], ['today', 'soo', 'fun', 'happi', 'birthday', 'chrissi', 'lt'], ['vote', 'sad', 'vote', 'log', 'yet', 'go', 'vote'], ['haha', 'agre', 'test', 'dummi', 'go', 'say', 'quot', 'whatev', 'want', 'quot', 'alway', 'love', 'magic'], ['presid'], ['soo', 'think'], ['welcom', 'cours'], ['visit', 'grandpar', 'later', 'way', 'heard', 'kati', 'perri', 'hook', 'whew', 'cool', 'love', 'version'], ['happi', 'mum', 'day', 'kinduhh', 'major', 'crush', 'alex', 'johnson', 'cab'], ['better', 'way', 'spoil', 'mum', 'let', 'kick', 'back', 'relax', 'nice', 'meal', 'bottl', 'favorit', 'wine', 'wine', 'red'], ['got', 'home', 'went', 'totoro', 'cafe', 'final', 'first', 'time', 'ever', 'like', 'color', 'place', 'happi', 'atmospher'], ['give', 'oh', 'well', 'not', 'count', 'math', 'weight', 'lack', 'not', 'make', 'sens'], ['ahh', 'whatchu', 'babi', 'hahaha', 'believ', 'youu', 'heh', 'actual', 'life', 'worth', 'take', 'risk'], ['love', 'show', 'subscrib', 'follow', 'tweet', 'not', 'wait', 'see'], ['yay', 'mark', 'issu', 'find', 'lot', 'issu', 'lmao'], ['two', 'fantast', 'show', 'row'], ['nice', 'sound', 'great', 'let', 'know'], ['go', 'sleep', 'earli', 'good', 'night'], ['cool', 'could', 'help', 'make', 'happen', 'amp', 'make', 'sure', 'happen', 'least', 'houston', 'would', 'great', 'k', 'thank'], ['might', 'middl', 'perfect', 'weekend'], ['wish', 'everyon', 'happi', 'mother', 'day', 'xoxo'], ['one', 'tough', 'momma', 'put', 'togeth', 'swing', 'set', 'tammi', 'today', 'hubbi', 'would', 'proud'], ['dang', 'want', 'beach', 'late', 'night', 'best', 'sound', 'wave', 'breez', 'hope', 'well'], ['listen', 'mcr', 'watch', 'dvd', 'chocol', 'hehe', 'awesom'], ['happi', 'mother', 'day', 'love', 'mom'], ['sight', 'made', 'afternoon'], ['omg', 'one', 'yess', 'love', 'danni', 'song'], ['mum', 'love', 'camp', 'rock', 'mother', 'day', 'card', 'gave', 'knew', 'would', 'happi', 'mother', 'day', 'new', 'zealand', 'haha', 'ili', 'lot', 'xx'], ['not', 'quot', 'picki', 'quot', 'might', 'not', 'find', 'interest', 'talk'], ['go', 'campo', 'missendon', 'road', 'newtown', 'ask', 'ben', 'discov', 'great', 'coffe'], ['keep', 'tri', 'get', 'right', 'last', 'time'], ['oh', 'gosh', 'love'], ['lol', 'wow', 'good', 'haha', 'still', 'not', 'believ', 'mother', 'day'], ['damn', 'nig', 'not', 'get', 'quot', 'not', 'without', 'check', 'quot', 'lmfao'], ['great'], ['well', 'goodnight', 'twitter', 'bug', 'sleep', 'well'], ['oh', 'ok', 'good', 'jump', 'joy', 'made', 'day'], ['happi', 'mother', 'day', 'breakfast', 'fam', 'lt'], ['juss', 'came', 'backk', 'berkeleyi', 'omg', 'madd', 'fun', 'not', 'minut', 'whassqoodd'], ['thank', 'shir', 'got', 'caught', 'commiss', 'get', 'gift', 'certif', 'not', 'take', 'one'], ['not', 'wait', 'see', 'shia', 'yippie'], ['agre', 'guy', 'rock'], ['ugh', 'head', 'headach', 'stop', 'anyway', 'love', 'life', 'right', 'could', 'not', 'ask', 'anyth', 'love', 'happi'], ['sleep', 'good', 'day', 'nice', 'night', 'comfi', 'bed'], ['ahh', 'keyboard', 'get', 'wors', 'birthday', 'day'], ['head', 'xs', 'nadia', 'yee'], ['start', 'new', 'job', 'today', 'aand', 'stoke', 'may', 'long', 'billi', 'awesom'], ['still', 'eatin', 'readin', 'comment', 'last', 'best', 'comment', 'receiv', 'quot', 'realli', 'brought', 'ann', 'life', 'quot'], ['home', 'not', 'know', 'tomorrow', 'besid', 'whole', 'mommi', 'day', 'thing', 'feel', 'awesom', 'night', 'guy'], ['peac', 'bro', 'thank', 'not', 'music', 'proud', 'repres', 'father', 'happi', 'mother', 'day'], ['fuck', 'love', 'alexand', 'william', 'gaskarth'], ['hahaha', 'blast'], ['go', 'downstair', 'coffe', 'socialis', 'wow', 'give', 'time', 'french', 'later'], ['hulk', 'great', 'movi', 'might', 'recogn', 'toronto', 'young', 'street', 'fight', 'scene'], ['made', 'parent', 'add', 'guy', 'famili', 'impress', 'song'], ['know', 'block', 'parti', 'would', 'love', 'hear', 'dh', 'origin', 'get', 'chanc'], ['yay', 'friend', 'glen', 'like'], ['start', 'love', 'twitter', 'diet', 'work', 'great'], ['wish', 'mommi', 'happi', 'mother', 'day'], ['say', 'feel', 'mama', 'tuck', 'night', 'lone', 'get', 'tomorrow', 'tough'], ['yay', 'give', 'lesson', 'tomorrow', 'church'], ['nice', 'mother', 'day', 'mum', 'like', 'present', 'wonder', 'ever', 'see', 'one', 'talk', 'sisa'], ['yep', 'convert', 'blip', 'great', 'hear', 'lot', 'other', 'suggest', 'pretti', 'great', 'stuff'], ['wed', 'anniversari', 'today', 'lucki', 'gorgeous', 'wife'], ['huge', 'test', 'parent', 'hous', 'food', 'good', 'stuck', 'one', 'help', 'second', 'feel', 'good'], ['love', 'new', 'bracelet', 'proud', 'rock', 'gir'], ['gorgeous', 'mom', 'happi', 'mom', 'daay'], ['yeah', 'fun', 'regret', 'not', 'take', 'cup', 'must', 'find', 'one', 'like'], ['funtim', 'not', 'lot', 'fun', 'final', 'done'], ['damn', 'charm', 'skater', 'look', 'kind', 'hot', 'mess', 'catherin', 'pls', 'not', 'hate', 'hit', 'friend', 'tnx'], ['hey', 'sorri', 'got', 'last', 'night'], ['haha', 'thank', 'listen', 'rant', 'noth', 'good', 'night'], ['aw', 'anytim', 'boo', 'realiz', 'need', 'fun', 'guy', 'chang', 'pic', 'poofi', 'hair', 'one'], ['haha', 'follow', 'john', 'pretti', 'funni', 'guy', 'want', 'move', 'much', 'fun'], ['forgot', 'twitter', 'account', 'happi', 'mother', 'day'], ['mm', 'comfort', 'junk', 'food', 'sound', 'good', 'alway', 'prefer', 'wingstop'], ['believ', 'see'], ['like', 'mean', 'random', 'person', 'obvious', 'not', 'know', 'think', 'alik'], ['happi', 'mother', 'day'], ['not', 'mind', 'not', 'pay', 'rent', 'moon', 'idea', 'move', 'least', 'year', 'earli'], ['anyon', 'els', 'seen', 'dm', 'notif', 'email', 'say', 'quot', 'repli', 'quot', 'cool', 'accent', 'weird', 'onlin'], ['wow', 'impress', 'pastor', 'luca', 'great', 'work'], ['made', 'earli', 'night', 'think', 'bout', 'take', 'shower', 'chill', 'witcha', 'miss', 'anyth'], ['god', 'bless', 'rahul', 'pictur'], ['lol', 'fave', 'driver', 'martin', 'happi'], ['sigh', 'come', 'sac', 'pleas', 'miami', 'central', 'valley'], ['hi', 'eunic', 'kyna', 'huge', 'fan', 'not', 'wait', 'next', 'album'], ['thank', 'kirst', 'post', 'run', 'inspir'], ['next', 'show', 'upcom', 'one', 'realli', 'want', 'see', 'guy'], ['gorgeous'], ['pic', 'nice', 'look'], ['love', 'duud', 'need', 'make', 'shirt', 'say', 'someth', 'cool', 'say'], ['haha', 'either', 'like', 'alway', 'love', 'hilari', 'girl', 'id', 'turn', 'gay', 'haha'], ['great', 'person'], ['let', 'us', 'smoke', 'watch', 'daze', 'confus', 'perfect', 'pizza', 'movi'], ['mum', 'day', 'end', 'happi', 'not', 'day', 'anyth'], ['readi', 'day', 'full', 'presenc', 'expect', 'best'], ['good', 'eatin', 'hey', 'follow', 'son'], ['younger', 'mine', 'problem'], ['happi', 'birthday'], ['look', 'js', 'code', 'facebook', 'notic', 'js', 'kid', 'buddi', 'told'], ['say', 'shoutout', 'nikki', 'pleas', 'soulja', 'boy', 'tell', 'live', 'live', 'gt'], ['happi', 'mother', 'day', 'hope', 'awesom', 'good', 'rest', 'night'], ['offici', 'mother', 'day', 'happi', 'mother', 'day', 'mom'], ['bitch', 'miss'], ['happi', 'mother', 'day'], ['hour', 'not', 'sleep', 'time', 'bed', 'far', 'good'], ['happi', 'mother', 'day'], ['blah', 'blah', 'blah', 'kid', 'dude', 'never', 'anyon', 'offer', 'stem', 'cell', 'haha'], ['miss', 'amp', 'hope', 'talk', 'happi', 'mine', 'though', 'lt'], ['not', 'contain', 'excit'], ['chevr', 'pleas', 'follow', 'chevr', 'use', 'public', 'tweet', 'thank'], ['excit', 'home', 'final', 'week', 'weekend', 'peopl', 'know'], ['bryan', 'sweet', 'not', 'think', 'go', 'talk', 'toward', 'end', 'night', 'talk'], ['great', 'home', 'temp', 'chill', 'cat', 'great', 'feel', 'awesom'], ['thank', 'interview', 'mama', 'enjoy', 'night'], ['oo', 'like', 'anywher', 'near', 'mommi', 'good'], ['eminem', 'new', 'song', 'quot', 'beauti', 'quot', 'amaz', 'listen', 'magic', 'right'], ['watch', 'favorit', 'tv', 'show', 'free'], ['cool', 'detail', 'made', 'pleas', 'tell'], ['plenti', 'good', 'trivia', 'wikihow', 'tri', 'help', 'hope', 'got', 'sleep'], ['spoke', 'club', 'fell', 'love', 'tom', 'arnold', 'not', 'rosi', 'ex', 'definit', 'differ', 'lucki', 'moi'], ['yeah', 'still', 'needa', 'hang', 'lol', 'glad', 'super', 'time', 'show'], ['interview', 'tuesday', 'thing', 'turn', 'around', 'think', 'yay', 'not', 'worri', 'japsican', 'rare', 'breed'], ['happi', 'birthday', 'stevi', 'want', 'follow', 'get', 'littl', 'tweeti', 'may', 'babi', 'r', 'best'], ['thank', 'shoutin', 'mom', 'today', 'also', 'say', 'thank'], ['happi', 'mother', 'day', 'mum'], ['watch', 'best', 'movi', 'ever', 'neverend', 'stori', 'wish', 'babbi', 'though'], ['watch', 'origin', 'sabrina', 'teenag', 'witch', 'movi', 'differ', 'seri', 'rad'], ['want', 'wish', 'happi', 'mother', 'day', 'two', 'favorit', 'mom', 'world', 'mom', 'cours', 'sister', 'happi', 'mom', 'day', 'two'], ['pretti', 'perfect', 'eh', 'yes', 'cannabi', 'saw', 'sign', 'global', 'marijuana', 'march'], ['finish', 'church', 'happi', 'mother', 'day'], ['thank'], ['yep', 'hope'], ['good', 'luck', 'final', 'long', 'time', 'panvel', 'tweetup', 'final', 'come', 'true'], ['pleas', 'review', 'sunehr', 'ad', 'placement'], ['lack', 'go', 'hunt', 'lol', 'refresh', 'memori', 'one', 'clue'], ['love', 'new', 'mother', 'day', 'snl', 'digit', 'short', 'mother', 'lover', 'oohh', 'corny'], ['good', 'child'], ['happi', 'mother', 'day', 'hope', 'awesom', 'time', 'bug'], ['hi', 'serena', 'want', 'say', 'good', 'luck', 'madrid', 'pari', 'month'], ['wish', 'mother', 'happi', 'mother', 'day'], ['laugh', 'tire', 'haha', 'mayb', 'go', 'bed', 'night'], ['long', 'lost', 'friend'], ['know', 'laugh', 'stupid', 'right', 'joke', 'wth', 'glad', 'humor'], ['say', 'thank'], ['love', 'googl', 'mother', 'day', 'theme'], ['year', 'ago', 'brother', 'saw', 'bruce', 'walk', 'sidewalk', 'sanibel', 'use', 'live', 'pine', 'great', 'place'], ['wow', 'love', 'thank'], ['catt', 'total', 'love', 'default', 'pictur', 'seem', 'like', 'fun', 'mom'], ['good', 'shit', 'homi', 'hahahahaha', 'talkin'], ['easi', 'happi', 'mother', 'day', 'great', 'mom'], ['not', 'wait', 'see', 'guy', 'hq', 'sunday'], ['quit', 'like', 'worth', 'relax', 'place', 'nice', 'coffe', 'shop', 'fresh', 'air', 'not', 'mani', 'oik'], ['love'], ['love', 'site', 'hoot', 'realli', 'enjoy', 'hair', 'cut', 'thailand', 'alway', 'tri', 'time', 'ir', 'right', 'thank', 'tip'], ['happi', 'mother', 'day', 'everyon'], ['great', 'gpt', 'tp', 'put', 'lyric', 'finsih', 'background', 'go', 'write', 'done'], ['great', 'reason', 'quot', 'quot', 'tri', 'find', 'excus', 'go', 'la', 'show'], ['not', 'say', 'know', 'good', 'like'], ['good', 'night', 'everyon', 'go', 'lay', 'bed', 'watch', 'eras'], ['hahahaha', 'omg', 'win', 'internetz', 'today', 'quot', 'tri', 'turn', 'zac', 'efron', 'quot', 'hahaha'], ['happi', 'mama', 'day', 'mother'], ['yay', 'snl'], ['photo', 'nice'], ['hi', 'get', 'tri', 'new', 'yea', 'fuunn', 'let', 'us', 'dinner', 'get', 'back'], ['happi', 'almost', 'mother', 'day'], ['favourit', 'shirt', 'true', 'lt', 'grumpi', 'cute', 'b', 'huggabl', 'c', 'life', 'parti'], ['best', 'planet'], ['go', 'bed', 'soon', 'happi', 'mother', 'day', 'mother', 'lt', 'ryan', 'less', 'week'], ['whohoo', 'erin', 'got', 'accept', 'ottawa', 'nurs', 'school', 'algonquin', 'pembrok', 'campus', 'may', 'get', 'girl', 'back'], ['happi', 'mother', 'day', 'mother', 'world', 'especi', 'tweeter', 'mom'], ['final', 'learn', 'think', 'speak', 'work', 'wonder'], ['meat', 'product', 'love', 'rehydr', 'warm', 'milk', 'breakfast'], ['welcom'], ['love', 'kind', 'read', 'call', 'would', 'like'], ['thank', 'us', 'mami', 'bringin', 'sexi', 'back'], ['mani', 'mine', 'includ', 'ahem', 'shld', 'known', 'better', 'back', 'wld', 'miss', 'mani', 'opportun', 'haha'], ['goodnight', 'beauti', 'world', 'sweet', 'dream', 'oliv', 'juic'], ['go', 'watch', 'jt', 'snl', 'tonight', 'not', 'fan', 'music', 'think', 'hilari', 'pant', 'way', 'funni'], ['yes', 'mayb', 'dm', 'though', 'not', 'annoy', 'follow', 'thought', 'late', 'good', 'night'], ['step', 'show', 'fantabul', 'hi', 'sis', 'group', 'divis', 'show', 'overal', 'whoo'], ['glad', 'fun', 'babe'], ['gawwdd', 'headshotss', 'inna', 'row', 'fyaahh'], ['mon', 'ami', 'sinc', 'year', 'young', 'love', 'foreverr'], ['thank', 'posit', 'energi', 'contribut'], ['yeah', 'thank', 'back', 'soon', 'see', 'ya', 'got'], ['great', 'night', 'hangin', 'famili', 'mom', 'dad', 'love', 'extra', 'compani', 'tonight', 'not', 'wait', 'frc', 'pcola', 'tomorrow'], ['get', 'readi', 'go', 'sleep', 'grind', 'earli', 'morn', 'yay', 'money'], ['hope', 'havin', 'fun', 'da', 'club'], ['free', 'last', 'tomorrow', 'get', 'rememb', 'sunday', 'look', 'like'], ['battl', 'mina', 'tirith', 'still', 'impress', 'return', 'jedi', 'best', 'lord', 'ring', 'movi', 'go'], ['hour', 'shop', 'good', 'effort', 'best', 'part', 'chocol', 'shop', 'yujm', 'yum', 'even'], ['head', 'today', 'shop', 'mother', 'day', 'gift', 'love', 'b', 'amp', 'bws', 'new', 'scent', 'finish', 'book', 'bought', 'yesterday'], ['cover', 'portfolio', 'send', 'dream', 'job', 'ny', 'send', 'good', 'vibe'], ['back', 'durango', 'chaperon', 'parti', 'interest', 'catch', 'internet', 'surf', 'drink', 'woodchuck', 'ha'], ['hey', 'lonni', 'next', 'weekend', 'not', 'wait'], ['not', 'realli', 'alcohol', 'disappoint', 'serious', 'though', 'got', 'kid'], ['great', 'night'], ['happi', 'mother', 'day'], ['well', 'great', 'appreci', 'comment', 'mean', 'lot', 'work', 'progress', 'know'], ['orgasm', 'sandwich'], ['uh', 'marri', 'haha', 'kid', 'kind', 'hot', 'though', 'know'], ['cong', 'govt', 'rule', 'karnataka', 'cauveri', 'would', 'not', 'found', 'mention', 'truli', 'politician', 'integr'], ['lolz', 'modesti', 'kix', 'rox', 'gal', 'line', 'door'], ['happi', 'mother', 'day', 'mom', 'around', 'hope', 'wonder', 'day'], ['aww', 'thank', 'feel', 'good'], ['good', 'morn', 'everyon'], ['want', 'wish', 'everyond', 'happi', 'mother', 'day', 'hope', 'great', 'one'], ['probabl', 'best', 'birthday', 'ever', 'got', 'spend', 'favorit', 'peopl'], ['happi', 'mother', 'day', 'mommi'], ['great', 'not', 'twitter'], ['thank', 'much'], ['way', 'wors', 'not', 'say', 'hello'], ['love', 'spring', 'definit', 'seem'], ['like', 'feel'], ['cool', 'catch', 'laterz'], ['sigh', 'joe', 'sing', 'purdi', 'make', 'feel', 'better'], ['fantast', 'day', 'az', 'sun'], ['yay', 'think', 'anim', 'not', 'hard'], ['good', 'luck', 'deer', 'next', 'weekend', 'hope', 'not', 'cold', 'snowi'], ['happi', 'sunday', 'work'], ['still', 'not', 'believ', 'matt', 'mccoy', 'interview', 'got', 'view', 'twitter', 'truli'], ['restor', 'new', 'itouch', 'excit', 'use', 'yee', 'goodby', 'itouch'], ['restor', 'new', 'itouch', 'excit', 'use', 'yee', 'goodby', 'itouch'], ['finish', 'bake', 'cinnamon', 'roll', 'soo', 'yummi'], ['goodnight'], ['sleep', 'rock', 'sheet', 'hope', 'smooth', 'endulg', 'not', 'wait', 'blanket'], ['super', 'duber', 'high', 'klondik', 'bar', 'thee', 'busi'], ['want', 'michi', 'moma', 'love', 'mom'], ['stupid', 'liar', 'glad', 'ignor', 'blast'], ['keri', 'slow', 'danc', 'rockin', 'shit', 'playlist', 'right', 'get', 'song', 'pure', 'panti', 'dropper'], ['great', 'show', 'today'], ['happi', 'mother', 'day', 'love', 'mama'], ['welcom', 'twitter', 'realli', 'cool', 'greet', 'vienna', 'austria'], ['travel', 'alon', 'make', 'meet', 'new', 'peopl', 'new', 'circl', 'becom', 'friend'], ['morn', 'everyon', 'hope', 'great', 'sunday'], ['fatigu', 'settl', 'got', 'power', 'awesom', 'seat', 'tonight', 'pretti', 'lucki', 'life', 'not', 'bad'], ['babi', 'drink', 'god', 'love'], ['happi', 'mother', 'day', 'mommi'], ['wait', 'good', 'twenti', 'minut', 'one', 'good', 'night', 'though'], ['good', 'morn', 'sunshin', 'mm', 'go', 'start', 'day', 'wth', 'movi'], ['kill', 'bradi', 'gf', 'bradi'], ['tonight', 'fun', 'love', 'girl', 'tanna'], ['yeah', 'know', 'thank', 'much'], ['yo', 'yo', 'yo', 'like', 'ice', 'cream'], ['happi', 'mother', 'day', 'soon', 'possibl', 'everyday'], ['shaanxi', 'kept', 'boast', 'nativ', 'noodl', 'realli', 'curious', 'shaanxi', 'food'], ['go', 'sleep', 'goodnight', 'xoxo'], ['grr', 'naplan', 'finish', 'commerc', 'amp', 'geo', 'exam', 'good', 'luck'], ['thank', 'teach', 'valu', 'better', 'person', 'day', 'love', 'much', 'best', 'mum', 'world'], ['nice', 'wish', 'could', 'go', 'make', 'sure', 'take', 'ton', 'pictur'], ['make', 'happi', 'whether', 'know', 'not', 'lt'], ['happi', 'mother', 'day', 'beauti'], ['much', 'much', 'much', 'mash', 'pleas'], ['yes', 'want', 'come', 'hang', 'gurl', 'know', 'haha', 'bangin', 'got', 'hang', 'chick'], ['nightlif', 'commando', 'like', 'chant', 'music', 'cool', 'amp', 'listen', 'inx', 'music', 'song', 'amaz', 'bass', 'win'], ['think', 'may', 'broken', 'nose', 'show'], ['find', 'song', 'idea', 'cover', 'actual', 'inde', 'think', 'awesom', 'make', 'day'], ['sound', 'good', 'not', 'wait'], ['go', 'town', 'two', 'dinner', 'roll', 'dark', 'chocol', 'yumm'], ['hey', 'hey', 'andrew', 'haha', 'p', 'well', 'happi', 'mother', 'day', 'mum'], ['happi', 'mother', 'day', 'peopl', 'love', 'mom', 'lot', 'still'], ['awesom'], ['glad', 'fine', 'thank', 'anoth', 'night', 'full'], ['hey', 'saw', 'snl', 'amp', 'love', 'especi', 'crumpin', 'scene', 'quot', 'dub', 'quot', 'wow', 'hilari'], ['read', 'good', 'thing', 'bout', 'not', 'feelin', 'tonight', 'proli', 'finish', 'tomorrow', 'star', 'trek'], ['lol', 'not', 'armi', 'starfleet', 'rule', 'meant', 'broken', 'get', 'job', 'done', 'get', 'medal'], ['soo', 'great', 'love', 'good', 'live', 'haha', 'pour', 'us', 'though', 'make', 'much', 'better'], ['met', 'one', 'nerdiest', 'server', 'chili', 'today', 'lol', 'awesom', 'favorit'], ['product', 'day', 'got', 'spot', 'extra', 'featur', 'film', 'film', 'tomorrow', 'awesom', 'week', 'around'], ['fuck', 'love', 'fuck', 'internet'], ['weird', 'usual', 'like'], ['love'], ['happi', 'mother', 'day', 'mom', 'amp', 'mommi', 'mom', 'qood', 'one', 'ladi'], ['youth', 'group', 'would', 'like', 'go', 'could', 'not', 'afford', 'amp', 'drama', 'love', 'ya', 'though'], ['pleas', 'wear', 'glass', 'next', 'video', 'look', 'amaz'], ['love', 'old', 'school', 'horror', 'movi', 'got', 'elvira', 'tattoo', 'back'], ['awesom', 'lunch', 'famili', 'amp', 'dinner'], ['goodnight', 'babi', 'loll', 'jk', 'night'], ['final', 'got', 'home', 'get', 'sleep', 'great', 'time', 'friend'], ['hahahaha', 'wtf', 'diann', 'twitter', 'guess', 'depend', 'person'], ['aww', 'yur', 'awesom', 'mother', 'keep', 'good', 'work'], ['haha', 'well', 'mayb', 'not', 'weak', 'hehe', 'jks', 'xx'], ['heyi', 'babyy'], ['like', 'smell', 'roast', 'oven', 'mm', 'must', 'dip', 'sakata', 'tide', 'till', 'roast', 'cook'], ['think', 'taylor', 'laughtner', 'selena', 'gomez', 'cutest', 'coupl', 'love', 'read', 'fave', 'mag'], ['grind', 'skyguard', 'less', 'aw', 'anticip', 'yet', 'still', 'aw', 'last', 'tabard', 'need'], ['heyi', 'girl', 'not', 'tweet', 'week', 'hope', 'well'], ['voter', 'paint', 'peel', 'skin', 'mayb', 'skin', 'peel', 'voter', 'paint'], ['hape', 'mother', 'day', 'mother'], ['thanx', 'thee', 'follow'], ['boom', 'boom', 'saw', 'movi', 'last', 'night', 'realli', 'enjoy'], ['meh', 'tri', 'one', 'commerci', 'drive', 'cat'], ['yes'], ['yeah', 'entir', 'time', 'swoon', 'eye', 'swoon', 'think'], ['love', 'get', 'littl', 'peek', 'dimpl'], ['finish', 'yet', 'anoth', 'amaz', 'book', 'susan', 'elizabeth', 'philip', 'god', 'love', 'book', 'much', 'one', 'read', 'next', 'hmm'], ['angrili', 'told', 'extem', 'emot', 'amp', 'physic', 'made', 'day', 'nightss'], ['decid', 'help', 'make', 'first', 'solo', 'album'], ['hey', 'gorgeous', 'day', 'night', 'play', 'sun', 'full', 'moon', 'lit', 'way', 'home', 'life', 'good'], ['oo', 'never', 'play', 'good', 'like', 'play', 'game', 'femal', 'not', 'like'], ['time', 'go', 'bed', 'hope', 'wake', 'better', 'day', 'niight'], ['good', 'go', 'singl', 'shit', 'goe', 'crazi', 'haha', 'fuck', 'like', 'singl', 'much'], ['welcom', 'actual', 'swedish', 'fan', 'tri', 'get', 'mcfli', 'us', 'close'], ['thank', 'get', 'bottl', 'water'], ['love', 'mile', 'run', 'make', 'smile'], ['read', 'twilight', 'new', 'moon', 'keen', 'read', 'eclips', 'break', 'dawn', 'hmm', 'twilight', 'better', 'new', 'moon', 'still', 'awesom'], ['awhh', 'nice', 'see'], ['thank', 'recommend'], ['would', 'like', 'remind', 'peopl', 'kansai', 'scene', 'whatev', 'current', 'issu', 'like', 'noth'], ['want', 'say', 'happi', 'mother', 'day', 'mom', 'includ', 'mine', 'love', 'mama'], ['sinc', 'read', 'twilight', 'seri', 'watch', 'underworld', 'today', 'got', 'pic', 'day'], ['raw', 'day'], ['feelin', 'nice', 'bottl', 'bacardi'], ['well', 'sunday', 'weather', 'look', 'great', 'gone', 'take', 'bike', 'visit', 'mom', 'day'], ['tonight', 'fun'], ['dream', 'awhil', 'thank', 'everyth', 'tweepl', 'mani', 'bless', 'amp', 'much', 'joy', 'peac', 'love', 'amp', 'happi', 'hope', 'dream', 'come', 'tru'], ['much', 'fun', 'banana', 'dessert', 'alon', 'worth', 'trip', 'austin', 'back', 'soon'], ['hour', 'till', 'mother', 'day', 'parti', 'yeah'], ['laundri', 'loud', 'music', 'relax'], ['minut', 'work', 'guess', 'go', 'back', 'work', 'minut', 'slow', 'today', 'thank', 'god', 'one', 'day'], ['congrat', 'high', 'doubt', 'buyer', 'want', 'car'], ['soo', 'hard', 'truck', 'fish', 'pleas'], ['chowder', 'shit'], ['happi', 'mother', 'day'], ['happi', 'mother', 'day'], ['good', 'morn'], ['happi', 'birthday', 'sweeti', 'great', 'day', 'best', 'place', 'word', 'sorri', 'chicago', 'jeje'], ['love', 'true'], ['wonder', 'even', 'love'], ['sidekick', 'awkward', 'flash', 'oh', 'well', 'leav', 'mommi', 'flower', 'stuff'], ['yes', 'peopl', 'skill', 'social', 'manner', 'quit', 'nice', 'billion', 'guess', 'need', 'love', 'gentl', 'guid'], ['love', 'justin', 'timberlak', 'host', 'snl', 'hilari'], ['happi', 'mom', 'day'], ['happi', 'mother', 'day', 'mother', 'love', 'mom', 'goodnight', 'everyone'], ['love', 'import', 'love', 'mom', 'happi', 'mother', 'day'], ['add', 'friendster'], ['amaz', 'time', 'momma', 'tomorrow', 'show', 'much', 'mean', 'whatev', 'love'], ['final', 'leavin', 'tha', 'realli', 'realli', 'good', 'music', 'pleas', 'wit', 'tha', 'turnout'], ['yes', 'blame'], ['would', 'eat', 'away', 'masculin', 'masculin', 'p', 'haha', 'prob', 'beat', 'though', 'haha', 'xo'], ['hate', 'hair', 'long', 'think', 'want', 'super', 'loong', 'hair'], ['haha', 'not', 'lol', 'might', 'miss', 'someth'], ['big', 'fan', 'danni', 'dyer', 'say', 'movi', 'look', 'awesom'], ['welcom', 'sweeti', 'muah', 'xoxox', 'love', 'ya'], ['push', 'amaz'], ['think', 'info', 'sync', 'proper', 'mac', 'mobil', 'iphon', 'yay', 'final'], ['great', 'night'], ['happi', 'mother', 'day', 'everyon'], ['oo', 'love', 'pretti', 'feet'], ['thank', 'know', 'realli', 'love'], ['new', 'day', 'new', 'home', 'happi', 'mom', 'day'], ['happi', 'mother', 'day', 'everybodi'], ['pick', 'chris', 'boston', 'cd', 'listen', 'drive', 'home', 'tonight', 'moon', 'not', 'want', 'end'], ['good', 'afternoon'], ['home', 'wango', 'tango', 'fun', 'realli', 'tire', 'wrap', 'mom', 'present', 'pass', 'lt'], ['tire', 'work', 'till', 'tonight', 'happi', 'mother', 'day', 'everyon'], ['happi', 'mother', 'day', 'mum', 'rememb', 'treat', 'mum', 'well', 'brought', 'life'], ['twitter', 'fail', 'life', 'sometim', 'oh', 'well'], ['hahahaha', 'spooki', 'wish', 'babe', 'lifetim', 'suppli', 'shoe', 'match', 'bag', 'constant', 'weight'], ['gps', 'post', 'prom'], ['day', 'quot', 'caught', 'paramor', 'quot', 'quot', 'good', 'deed', 'music', 'wick', 'quot', 'oh', 'fulli', 'aliv', 'flyleaf'], ['final', 'home', 'night', 'dinner', 'drink', 'friend', 'go', 'sleep', 'hope', 'bed', 'not', 'spin', 'much'], ['happi', 'mother', 'day'], ['welcom', 'new', 'follow', 'amp', 'thank', 'love', 'tweet'], ['nungguin', 'sista', 'law', 'lahiran', 'di', 'rs', 'sih', 'sore', 'ini', 'lahiran', 'yeayi', 'anoth', 'babi', 'girl', 'famili'], ['mother', 'day', 'mami', 'twitter'], ['good', 'hear', 'sever', 'peep', 'work', 'tonight'], ['geez', 'year', 'would', 'think', 'would', 'check', 'year', 'ago'], ['lmao', 'stupid', 'felt', 'like', 'sayin', 'red', 'caf', 'ya'], ['mom', 'everywher', 'stop', 'get', 'good', 'night', 'sleep', 'tomorrow', 'children', 'turn', 'pamper', 'enjoy', 'day'], ['thank', 'dear', 'know', 'appreci', 'valid', 'alway'], ['oh', 'yum', 'rhubarb', 'link', 'fab', 'thank'], ['ty', 'feed', 'nk', 'mean', 'uhh', 'nope', 'yup', 'addict', 'cover'], ['go', 'church', 'god', 'bless'], ['save', 'feel', 'like', 'go', 'crazi'], ['lay', 'bed', 'book', 'amp', 'beauti', 'music', 'thank', 'kaki', 'amp', 'nichola', 'spark'], ['thank', 'hon', 'great', 'happi', 'mother', 'day'], ['go', 'tri', 'get', 'sleep', 'goonight', 'twitter', 'nice', 'mother', 'day'], ['way', 'sleepi', 'ill', 'watch', 'show', 'nite', 'god'], ['send', 'love', 'bless', 'amp', 'heal', 'thought', 'amp', 'famili', 'peac'], ['nice', 'night', 'bed', 'time', 'work', 'tomorrow'], ['hahaha', 'made', 'laugh'], ['thank', 'tri'], ['like', 'tweeti', 'better', 'use', 'time'], ['happi', 'mothersday', 'way', 'look', 'bright', 'side', 'chill', 'day', 'today'], ['happi', 'mother', 'day', 'mommi'], ['still', 'total', 'excit', 'oldest', 'friend', 'twitter', 'luff', 'spencer', 'even', 'though', 'rabi'], ['great', 'song', 'even', 'not', 'understand', 'lol'], ['clear', 'need', 'crack', 'whip'], ['sure', 'tri', 'n', 'keep', 'enjoy', 'studi', 'see', 'ya'], ['back', 'hospit', 'doc', 'say', 'live'], ['happi', 'mother', 'day'], ['total', 'rock', 'onn'], ['email', 'best', 'friend', 'deanna', 'yahoo', 'account', 'email', 'fun', 'lt'], ['bought', 'bouquet', 'flower', 'put', 'togeth', 'arrang', 'pretti', 'momma', 'morn'], ['christin', 'friggin', 'shopahol', 'check', 'new', 'coat', 'promis', 'someon', 'would', 'not', 'spend', 'week', 'buy'], ['quot', 'weather', 'outsid', 'weather', 'quot', 'hahah', 'made', 'feel', 'better'], ['twist', 'cld', 'follow', 'ill', 'love', 'forev'], ['well', 'follow', 'think', 'interest', 'right'], ['use', 'run', 'crazili', 'fast', 'not', 'afford', 'unfortun', 'yet'], ['proud', 'solang'], ['trust', 'good', 'thing', 'self', 'thank'], ['see', 'brother', 'graduat', 'tomorrow', 'fun'], ['thank', 'quot', 'return', 'mack', 'quot', 'jam'], ['hale', 'yeahh', 'coolest', 'part', 'hahaha', 'match', 'grieco'], ['thank', 'hope', 'classi', 'follow'], ['omg', 'not', 'blame', 'hope', 'not', 'hurt', 'bad'], ['go', 'home', 'awesom', 'time', 'peep'], ['actual', 'wiki', 'entri', 'quot', 'million', 'dollar', 'homepag', 'quot', 'made', 'shake', 'head', 'due', 'fact', 'thing', 'work'], ['yeah', 'mom', 'would', 'say', 'appreci', 'wive', 'much', 'averag', 'dad', 'new', 'found', 'respect', 'mother'], ['good', 'morn'], ['random', 'night', 'fun', 'chillin', 'home', 'happi', 'mother', 'day'], ['everi', 'mom', 'mommi', 'mother', 'happi', 'mother', 'day', 'hope', 'someth', 'special', 'fun', 'today'], ['enjoy', 'happi', 'special', 'day', 'anoth', 'day', 'make', 'best', 'one', 'life'], ['scott', 'guy', 'good', 'night', 'lt'], ['good', 'luck', 'monday', 'keep', 'rockin'], ['thank', 'follow'], ['back', 'melli', 'parti', 'fun', 'sleepi'], ['dude', 'realli', 'bachelor', 'point', 'not', 'worri'], ['watch', 'bone', 'nati', 'made', 'fan', 'mission', 'convert', 'nati', 'onto', 'mission', 'convert', 'meagan'], ['way', 'home', 'prom', 'fun'], ['eehh', 'right', 'eye', 'twitch', 'go', 'go', 'watch', 'boystown', 'happi', 'birthday'], ['fun', 'viper', 'room', 'tomorrow', 'night', 'know', 'fam', 'attend', 'support'], ['thank', 'teach', 'play', 'part', 'song'], ['yeah', 'much', 'appreci'], ['hang', 'besti'], ['happi', 'mother', 'day', 'hope', 'tom', 'got', 'someth', 'special', 'enjoy', 'day', 'xo'], ['wow', 'thot', 'would', 'lost', 'ya', 'lol', 'lol'], ['happi', 'mother', 'day'], ['kid', 'awesom', 'today', 'love', 'face', 'paint'], ['awesom', 'cheer', 'man', 'not', 'know', 'much', 'money', 'left', 'today', 'shop', 'spree', 'though'], ['goodnight'], ['thank', 'cici', 'right', 'back', 'ya'], ['happi', 'mother', 'day', 'ang'], ['forgot', 'happi', 'mom', 'day'], ['well', 'andi', 'not', 'think', 'date'], ['rest', 'ahh', 'feel', 'good'], ['ryan', 'stile', 'still', 'funniest', 'man', 'ever', 'got', 'great', 'news', 'not', 'great', 'news', 'tonight', 'happi', 'could', 'burst'], ['oop', 'got', 'taken'], ['not', 'know', 'follow', 'sme', 'peopl', 'e', 'anoy', 'bore', 'note', 'self', 'peep', 'monday', 'morn'], ['hi', 'think', 'tri', 'ph', 'vietnam', 'realli', 'quit', 'delici'], ['happi', 'mommi', 'day'], ['one', 'twitter', 'drive', 'although', 'iphon', 'keypad', 'suck', 'drive', 'type'], ['anytim', 'look', 'beauti', 'next', 'time', 'nyc', 'hope', 'link', 'enjoy', 'even'], ['yum', 'mother', 'day', 'lunch', 'food', 'busi', 'burnsid', 'delici', 'gorgeous', 'day'], ['cold', 'near', 'gone', 'yay', 'grey', 'anatomi', 'tonight', 'yay'], ['realli', 'brave', 'best', 'thing', 'rest', 'get', 'better', 'get', 'well', 'soon', 'alexi'], ['happi', 'birthday', 'hope', 'enjoy', 'us', 'sing', 'wednesday', 'lt'], ['best', 'site', 'hope', 'watch', 'big', 'bang', 'theori', 'pleas', 'hit', 'quot', 'buy', 'quot'], ['heck', 'yeah', 'jandi', 'timsamlak', 'rawesom'], ['daniel', 'dsds', 'voic', 'great'], ['music', 'sooth', 'soul'], ['listen', 'jubey', 'snore', 'phone', 'hehe', 'goodnight'], ['look', 'found', 'gt'], ['love', 'sweet', 'everi', 'night'], ['total', 'bereft', 'fault', 'everi', 'way'], ['make', 'amaz', 'mother', 'happi', 'mother', 'day', 'solo', 'love', 'ya'], ['happi', 'mother', 'day', 'amaz', 'mom', 'hope', 'wonder', 'day', 'love', 'one', 'deserv', 'great', 'job'], ['umm', 'sure', 'miss', 'ya', 'alot', 'think', 'know', 'meant'], ['begin', 'think', 'show', 'sign', 'becom', 'sped', 'haha', 'love', 'ya'], ['may', 'pleas', 'coupl', 'promo', 'code', 'ea', 'app', 'thank', 'much'], ['funni', 'thank'], ['super', 'cool', 'dream', 'last', 'night', 'ask', 'show', 'wooww', 'hope', 'come', 'true'], ['well', 'end', 'everyon', 'happi', 'time'], ['heheheheh', 'lol', 'alway', 'figur', 'would', 'send', 'way', 'got', 'dupe', 'felt', 'bad', 'not', 'send', 'stuff'], ['pleasur', 'not', 'mom', 'mother', 'day', 'spread', 'love'], ['oh', 'mother', 'christina', 'aguilera', 'happi', 'mother', 'day', 'mama', 'ilovemymommi', 'lt'], ['grate', 'daughter', 'happi', 'mother', 'day', 'okasan', 'thank', 'everyth', 'alway'], ['blast', 'weekend', 'sweet', 'girl', 'vancouv', 'watch', 'awesom', 'celtic', 'lad', 'got', 'see', 'alissa', 'home'], ['great', 'studi', 'time', 'follow', 'delici', 'japanes', 'meal', 'arti', 'tri', 'get', 'back', 'studi', 'mood'], ['sweet', 'saw', 'last', 'year', 'kenni', 'amp', 'sugarland', 'kenni', 'year', 'seen', 'love', 'gknight'], ['happi', 'help'], ['hay', 'naku', 'madaya', 'ka', 'talaga', 'ah', 'hehe', 'happi', 'mother', 'day', 'mom', 'nga', 'pala', 'mom', 'also'], ['post', 'let', 'know', 'think', 'realli', 'cute', 'cut', 'back'], ['tri', 'oprah', 'free', 'unfri', 'kfc', 'love', 'went', 'back', 'anoth', 'tri', 'top', 'boba', 'pope', 'dave', 'ben'], ['happi', 'mother', 'day', 'mommi'], ['thank', 'yes', 'lot'], ['nudg', 'partner', 'good', 'want', 'buy', 'someth', 'gift'], ['haha', 'thank', 'shannon', 'boat', 'got', 'first'], ['happi', 'mother', 'day', 'mother'], ['thank', 'oscc', 'chang', 'late', 'like', 'layout', 'lt'], ['thinkin', 'twitter', 'interest'], ['friend', 'awesom', 'non', 'twitter', 'one', 'right'], ['not', 'wait', 'real', 'bed', 'haha'], ['far', 'surpris', 'good', 'respons', 'dad', 'offer', 'airbrush', 'old', 'logo', 'think', 'might', 'overkil'], ['aww', 'thank'], ['tell', 'everybodi', 'said', 'happi', 'mother', 'day', 'love', 'ya', 'fan', 'love', 'miley', 'rock'], ['guy', 'absolut', 'amaz', 'tonight', 'alway', 'thank', 'alway', 'bring', 'danc', 'parti'], ['cute', 'sleepi'], ['addict', 'jona', 'brother', 'new', 'singl', 'awesom', 'not', 'heard', 'alreadi', 'go', 'check'], ['happi', 'mom', 'day', 'spain', 'last', 'sunday', 'hint', 'first', 'singl', 'radio', 'lym', 'mini'], ['thank', 'jt', 'also', 'enjoy', 'r', 'follow', 'ill', 'follow', 'back'], ['seem', 'like', 'everyon', 'us', 'watch', 'feel', 'like', 'start', 'revolut', 'feel', 'nice'], ['happi', 'mother', 'day', 'mom', 'finish', 'lunch', 'relat', 'wuv', 'mommi', 'granni', 'hahaha'], ['whole', 'day', 'plan', 'mom', 'today', 'know', 'love'], ['alright', 'cool', 'see', 'tomorrow', 'thank'], ['happi', 'mother', 'day', 'tweet', 'mother'], ['sweet', 'situat'], ['strang', 'reason', 'sound', 'like', 'love', 'aall', 'good'], ['final', 'home', 'go', 'hit', 'hay', 'n', 'sleep', 'till', 'noon', 'lol'], ['happi', 'mother', 'day', 'mom', 'special', 'shout', 'ya', 'though', 'jehovah', 'wit'], ['miss', 'bkk', 'na'], ['love', 'bodi', 'tell', 'us', 'much', 'sleep', 'need', 'alway', 'good', 'mind', 'mealtim'], ['happi', 'year', 'lt'], ['want', 'greet', 'mom', 'happi', 'mother', 'day'], ['lucki', 'jealous', 'even', 'though', 'not', 'like', 'much'], ['woow', 'not', 'charg', 'ipod', 'touch', 'day', 'today', 'still', 'aliv', 'coolio'], ['get', 'readi', 'awesom', 'servic'], ['thank', 'sister'], ['happi', 'mother', 'mom'], ['fun', 'bacontaco', 'night'], ['saturday', 'littl', 'bit', 'footbal', 'hour', 'nap', 'hour', 'soccer', 'basketbal', 'tsu', 'yogurtland', 'life', 'good'], ['good', 'happi', 'everi', 'mom'], ['happi', 'mum', 'day', 'mum', 'guy'], ['happi', 'mother', 'day'], ['yeah', 'follow', 'hun', 'goodnight'], ['thnx', 'babe', 'call', 'finish'], ['spent', 'littl', 'much', 'wombat', 'cool', 'time', 'take', 'care', 'tamara', 'good', 'yay'], ['not', 'worri', 'noon', 'got', 'one', 'next', 'question', 'start', 'minut', 'get', 'think', 'cap'], ['happi', 'mother', 'day', 'mom'], ['altern', 'name', 'quot', 'bacon', 'mari', 'quot', 'quot', 'bloodi', 'piggi', 'quot', 'give', 'boyfriend', 'credit', 'idea'], ['put', 'brat', 'bed', 'chillin', 'noodl'], ['amaz', 'seen', 'three', 'time', 'hilari', 'fantast'], ['cultur', 'tour', 'loiusa', 'famili', 'kangaroo', 'cemetari', 'love'], ['happi', 'mommi', 'day'], ['nice', 'got', 'index', 'want', 'unload', 'need'], ['happi', 'momi', 'day'], ['thank', 'busi', 'fuck', 'good', 'book'], ['sleepi', 'happi', 'mother', 'day', 'mother', 'mama', 'mommi', 'whatev', 'call', 'lol', 'mie'], ['happi', 'mother', 'day', 'mother', 'thank', 'awesom', 'mother'], ['thank', 'actual', 'first', 'got', 'twitter', 'pictur', 'would', 'not', 'upload', 'either', 'upload', 'take'], ['nice', 'chat', 'old', 'frnd', 'sinc', 'v', 'talk', 'fun'], ['fern', 'n', 'petal', 'help', 'accomplish', 'task'], ['amaz', 'night', 'drive'], ['thank', 'find', 'amus', 'rubik', 'pictur', 'tonight', 'make', 'even', 'via'], ['better', 'idea', 'need', 'coupl', 'hour', 'relax', 'bed', 'time', 'sweet', 'dream', 'everyon', 'love'], ['happi', 'mother', 'day'], ['love', 'dreambear', 'britain', 'got', 'talent'], ['idea', 'good', 'dinner', 'happi', 'munchin'], ['still', 'yay', 'go', 'eat'], ['final', 'go', 'get', 'sum', 'sleep', 'concert', 'crazi', 'god', 'bless', 'minist'], ['bed', 'happi', 'mother', 'day', 'great', 'one'], ['made', 'got', 'home', 'wango', 'tango', 'wonder', 'day'], ['know', 'would', 'success', 'start', 'would', 'great', 'come', 'year', 'good', 'luck'], ['got', 'back', 'parti', 'soo', 'much', 'fun', 'boom', 'boom', 'hahaha', 'ooh', 'told', 'mom', 'happi', 'mother', 'day'], ['sound', 'love', 'hope', 'great', 'day'], ['social', 'fun', 'swam', 'water', 'boxer'], ['man', 'know', 'thing', 'get', 'interest', 'sometim', 'damn', 'good'], ['sound', 'like', 'good', 'compromis'], ['modern', 'liber', 'misconstru', 'bibl', 'quot', 'christ', 'without', 'crucifict', 'quot', 'abstract'], ['yippe', 'happi', 'birthday'], ['playin', 'didgeridoo', 'live', 'room', 'think', 'world', 'go', 'love', 'life', 'fb'], ['feel', 'great'], ['best', 'thing', 'ever', 'done', 'carri', 'birth', 'child'], ['cool', 'van', 'helden'], ['word', 'call', 'mom', 'lot', 'happi', 'mother', 'day', 'love'], ['wish', 'happi', 'mother', 'day', 'carina'], ['not', 'fall', 'celebr', 'worship', 'though', 'write', 'think', 'best', 'rock'], ['fave'], ['dope', 'background'], ['enjoy', 'lazi', 'around', 'eat', 'rose', 'chocol', 'x'], ['heard', 'not', 'illeg', 'unless', 'caught'], ['brought', 'buffalo', 'fastest', 'transfer', 'rate', 'usb', 'benchmark', 'comp'], ['fine', 'not', 'worri', 'good', 'luck'], ['omg', 'hahaha', 'thought', 'joke', 'twitter', 'hahaha', 'awesom', 'good', 'time'], ['free', 'good', 'nite', 'mean', 'good', 'nite', 'wateva'], ['work', 'away', 'hope', 'stay', 'nice', 'afternoon', 'even', 'possibl', 'bbq', 'weather'], ['happi', 'mother', 'day', 'beauti', 'mom', 'kind', 'mom', 'think', 'littl', 'pup', 'count'], ['hey', 'evenlyn', 'happi', 'mother', 'day', 'tomora', 'great', 'day', 'gift', 'ticket', 'see', 'ya', 'ere', 'oz'], ['know', 'lvoe'], ['thank', 'great', 'night', 'dear', 'perfect', 'complet', 'weekend'], ['weird', 'tot', 'usual', 'rain', 'east', 'coast', 'first', 'east', 'coast', 'usual', 'get', 'rain'], ['happi', 'mothersday'], ['thank'], ['feel', 'good', 'kind', 'tire', 'miss', 'not', 'wait', 'grad', 'weekend'], ['haha', 'welcom', 'honest', 'go', 'crazi', 'great', 'night', 'well'], ['bodi', 'power', 'expo', 'thank', 'mike', 'perform', 'network', 'free', 'tix'], ['lmao', 'joey', 'mine', 'not', 'wait', 'meet', 'juli'], ['oh', 'made', 'even', 'forgot', 'merlin', 'tonight', 'toss', 'rove', 'spielburg', 'spielburg', 'choic'], ['love', 'babi'], ['yay', 'happi', 'mother', 'day', 'screw', 'burnt', 'breakfast', 'bed', 'take', 'erniehalt', 'live', 'gt'], ['love', 'music', 'like', 'almost', 'everyth'], ['awesom', 'talk', 'find', 'true', 'watch', 'rubi', 'communiti', 'close'], ['thnx', 'sweeti', 'r', 'even', 'xo'], ['congratul', 'mind', 'run', 'well', 'listen', 'music'], ['alway', 'pretti', 'athlet', 'especi', 'love', 'anyway', 'yeah', 'run'], ['ciara', 'great', 'mention', 'snl', 'realli', 'good', 'also'], ['assum', 'not', 'taboo', 'start', 'email', 'quot', 'lol', 'quot', 'consid', 'repli', 'got', 'start', 'quot', 'rofl', 'quot', 'love', 'internet'], ['great', 'time', 'mpix', 'shootout', 'great', 'thank', 'mpix'], ['thank', 'quiet', 'late'], ['whooa', 'ang', 'ganda', 'ko', 'dito', 'ha', 'thank'], ['still', 'play', 'wii', 'fit', 'lol', 'fun', 'fun', 'fun', 'movi', 'tonight', 'ill', 'upload', 'photo', 'took', 'today', 'right', 'check', 'next', 'tweet'], ['finish', 'shoot', 'believ', 'got', 'job', 'done'], ['hope', 'everyon', 'okay', 'especi', 'american', 'affect', 'fire', 'swine', 'flu', 'okay', 'pray'], ['went', 'parti', 'last', 'night', 'dindin', 'show', 'match', 'outfit', 'great', 'mind', 'think', 'alik', 'anyway', 'happi', 'birthday', 'ate', 'lara'], ['miss', 'mother', 'day', 'happi', 'mother', 'day'], ['almost', 'dere', 'realli', 'tire', 'eye', 'r', 'realli', 'dri'], ['got', 'phone', 'lainey', 'love', 'life', 'taken', 'crap'], ['great', 'night'], ['tri', 'get', 'enjoy', 'weather', 'amp', 'train', 'littl', 'minor', 'beer', 'tast', 'activ', 'took', 'place', 'yesterday', 'etc'], ['start', 'watch', 'rock', 'borrow', 'season', 'dad', 'good'], ['n', 'end', 'anoth', 'wise', 'great', 'nite', 'excus', 'dream', 'littl', 'dream'], ['love', 'leav', 'laptop', 'bed', 'creat', 'nice', 'toasti', 'spot'], ['haha', 'jewish', 'love', 'one'], ['hi', 'good', 'luck', 'mtvaward', 'sure', 'go', 'win', 'hope', 'love', 'work', 'ha', 'speak', 'spanish', 'take', 'care'], ['chop', 'fring', 'last', 'night', 'got', 'tire', 'hang', 'eye', 'made', 'mess'], ['love', 'websit', 'wish', 'live', 'closer', 'sampl', 'cupcakey', 'treat'], ['yep', 'infact', 'popular', 'miss', 'india', 'talent', 'film', 'actress', 'lot'], ['happi', 'mother', 'day', 'boy'], ['fun', 'earli', 'night', 'vega', 'pool', 'tomorrow'], ['happi', 'mother', 'day'], ['love', 'crowd', 'car', 'ayanna'], ['ay', 'beezi', 'final', 'lol', 'time', 'hookah', 'get', 'ya'], ['past', 'alreadi', 'spoil', 'rotton'], ['oh', 'skeptic', 'think', 'best', 'thing', 'could', 'said', 'circumst'], ['good', 'morn', 'guy', 'not', 'forget', 'today', 'mother', 'day', 'mommi', 'love', 'best', 'lt'], ['blast', 'babe', 'thank', 'joe', 'lt', 'love', 'everyon', 'birthday'], ['break', 'news', 'tweet', 'hope', 'welcom', 'twitter'], ['stress', 'test', 'good', 'luck'], ['chang', 'pictur', 'soo', 'screw', 'assign', 'due', 'tomorrow', 'not', 'start', 'not', 'concentr', 'argh'], ['shite', 'night', 'tomorow', 'get', 'hang', 'littl', 'brother', 'neic', 'suffici', 'enough', 'chang', 'mood'], ['tori', 'fun', 'jb', 'movi', 'absolut', 'amaz', 'good', 'day', 'work', 'yay', 'love', 'movi'], ['thank', 'hold', 'mini', 'laser', 'light', 'thingi', 'lol'], ['final', 'got', 'see'], ['warmfuzzi', 'friend'], ['boopboopboop', 'still', 'talk', 'ashley', 'amp', 'brittani', 'talk', 'ashley', 'forev', 'convers', 'still', 'goe', 'place', 'awesom'], ['welcom', 'sweet', 'dream'], ['lol', 'total', 'made', 'laugh', 'made', 'day'], ['cool'], ['morn', 'earli', 'travel', 'today', 'game', 'reli', 'happi', 'bro', 'come', 'watch', 'x'], ['love', 'cobra', 'starship', 'thank', 'suggest'], ['pretti', 'sure', 'kitti', 'miss', 'lay', 'side', 'cute', 'though'], ['realli', 'chose', 'wrong', 'time', 'year', 'not'], ['thank', 'god', 'bless', 'go', 'eaat'], ['youtub', 'realli', 'awesom', 'qualiti', 'actual'], ['first', 'beer', 'day', 'happen', 'miss', 'want', 'get', 'one', 'mother', 'day'], ['dedic', 'mom', 'happi', 'mother', 'day'], ['thnks', 'followin'], ['thank'], ['readi', 'great', 'day', 'fun', 'night', 'could', 'not', 'ask', 'anyth', 'night'], ['omg', 'shannon', 'happi', 'birthday', 'celebr'], ['not', 'check', 'twitter', 'till', 'thank', 'everyon', 'congrat', 'realli', 'realli', 'appreci', 'fb'], ['censor', 'nobodi', 'realli', 'specul', 'thing', 'disagre', 'anyth'], ['relax', 'thank', 'hope', 'get', 'put', 'feet', 'tomorrow', 'enjoy', 'day'], ['final', 'back', 'bed', 'puppi', 'long', 'week', 'jamaica', 'love', 'lve', 'home', 'night'], ['someth', 'strang', 'air', 'late', 'set', 'everyon', 'edg', 'go', 'good', 'smudg', 'hous', 'good', 'anyway'], ['ha', 'let', 'know', 'find', 'though', 'suspect', 'lot', 'complaint', 'peac', 'night', 'friend'], ['bless', 'beyond', 'measur'], ['seem', 'cool'], ['welcom', 'char', 'glad', 'like', 'cake', 'pretti', 'simpl', 'give', 'tri'], ['watch', 'snl', 'ucsd', 'girl', 'laugh', 'joke', 'thought', 'would', 'tweet'], ['also', 'convic', 'happi', 'danc', 'told', 'ador', 'happi', 'danc', 'ever'], ['got', 'jojo', 'free', 'free', 'drink', 'mom', 'kind', 'night'], ['would', 'one', 'awesom', 'sauc'], ['love', 'music', 'video', 'belong', 'taylor'], ['happi', 'mother', 'day', 'allmoth', 'cheer'], ['wow', 'must', 'soo', 'cool'], ['post', 'good'], ['dsl', 'welcom'], ['hi', 'tweet', 'surpris', 'see', 'everyon', 'still', 'full', 'moon'], ['ok', 'oop', 'sorri'], ['ooh', 'thought', 'eggo', 'kind', 'synthet', 'egg', 'egg', 'sustitut', 'someth', 'crazi', 'american'], ['yeah', 'go', 'last', 'month', 'amaaz', 'bring', 'back'], ['tell', 'yo', 'mamma', 'axe', 'durrin', 'said', 'happi', 'mother', 'day'], ['sound', 'bit', 'alan', 'partridg', 'good', 'morn', 'way'], ['not', 'heard', 'titl', 'author', 'must', 'look', 'enjoy'], ['yeaa', 'know', 'smartier', 'plus', 'know', 'real', 'thing', 'better', 'lol'], ['hello', 'friend', 'welcom', 'twitter'], ['got', 'back', 'bore', 'eat', 'nonetheless'], ['good', 'morn', 'happi', 'mother', 'day', 'everyon'], ['haha', 'run', 'suitabl', 'moment'], ['dad', 'superman', 'pull', 'take', 'easi'], ['cours', 'would', 'send', 'not', 'think', 'would', 'surviv', 'trip'], ['end', 'even', 'best', 'note', 'love', 'forev', 'tweet'], ['haha', 'happen', 'lot', 'time', 'know', 'feel', 'happi', 'mum', 'day', 'mom', 'dell'], ['yeah', 'okay', 'ice', 'ace', 'bandag', 'sit', 'twitter', 'lol', 'thank'], ['iya', 'nyokap', 'gue', 'pernah', 'berkata', 'demikian', 'hard', 'share'], ['mama', 'alway', 'bake', 'late', 'get', 'worri', 'mixer', 'go', 'bother', 'peopl'], ['mango', 'medley', 'yummi', 'mango', 'mango', 'ice', 'cream'], ['got', 'get', 'earli', 'spend', 'time', 'mommi', 'go', 'work', 'bed', 'goodnight', 'twitter'], ['good', 'morn', 'went', 'bed', 'feel', 'alreadi', 'fast', 'go', 'gym', 'soon', 'nice', 'day'], ['god', 'love', 'quizz', 'get', 'phone', 'go', 'facebook', 'quizz'], ['get', 'marri', 'vega', 'novemb', 'elvi', 'imperson', 'happi'], ['not', 'sorri', 'race', 'chariti', 'fun', 'one', 'fun'], ['man', 'finish', 'quot', 'oper', 'anchorag', 'quot', 'sure', 'give', 'unfair', 'advantag', 'love', 'stealth', 'field', 'suit', 'gauss', 'rifl'], ['also', 'happi', 'mother', 'day'], ['mocha', 'brave'], ['pearlyn', 'place', 'gran', 'birthday', 'mother', 'day', 'dinner', 'tonight', 'mom', 'went', 'adult', 'svc', 'today', 'l', 'happi', 'mother', 'day', 'mom'], ['morn', 'smile', 'smug', 'oneself', 'anyon', 'join'], ['thank', 'go', 'next', 'man', 'figur', 'speak'], ['hahhahah', 'watch', 'greatest', 'movi', 'ever'], ['go', 'see', 'sweeney', 'todd', 'stage', 'best', 'friend', 'birthday', 'today', 'know', 'go', 'one', 'sing', 'along'], ['lol', 'leav', 'kid', 'internet', 'kid', 'stupid', 'thing'], ['shop', 'smart', 'shop', 'mart'], ['sleepi', 'time', 'room', 'final', 'clean'], ['bless', 'well', 'sweeti', 'hope', 'wonder', 'weekend'], ['happi', 'mother', 'day', 'mum', 'twitter'], ['alright', 'think', 'time', 'though', 'probabl', 'surf', 'net', 'anoth', 'hour', 'go', 'sleep', 'lol', 'goodnight'], ['moomi', 'like', 'pandora', 'buy', 'one', 'next', 'lol'], ['happi', 'mother', 'day'], ['happi', 'mother', 'day'], ['pleas', 'would', 'love', 'egg', 'give', 'birth', 'time', 'year'], ['goodnight'], ['lol', 'birmingham', 'love', 'time', 'move', 'good', 'morn'], ['happi', 'mother', 'day'], ['wish', 'would', 'see', 'not', 'eye', 'heart'], ['lol'], ['twittervers', 'thank', 'keep', 'entertain'], ['happi', 'mother', 'day'], ['morn', 'dude', 'ivi', 'decid', 'want', 'go', 'boat', 'today', 'guy', 'around', 'pm', 'would', 'nice', 'see'], ['happi', 'mother', 'day', 'mom', 'love', 'mom'], ['headin', 'nite', 'grad', 'dinner', 'c', 'boi', 'hehe'], ['not', 'believ', 'drove', 'way', 'back', 'happi', 'mother', 'day', 'mommi', 'precious', 'candi', 'granni'], ['hahahaha', 'yay', 'laker', 'would', 'pleas', 'like', 'dip'], ['happi', 'mother', 'day', 'mom', 'love', 'yew'], ['fuck'], ['resist', 'futil', 'need', 'pretti', 'knit'], ['travel', 'blog', 'run', 'not', 'wait', 'start', 'fill', 'entri'], ['happi', 'mother', 'day'], ['lol', 'like', 'log', 'ride', 'refer', 'think', 'think', 'ride', 'wet', 'get'], ['social', 'saw', 'aww'], ['goodmorn', 'hope', 'everyon', 'beauti', 'day', 'today', 'x'], ['yes', 'definit', 'paid', 'thank', 'advic'], ['cook', 'sumptuous', 'lunch', 'today'], ['go', 'help', 'lancey', 'cook'], ['take', 'back', 'insult'], ['got', 'love', 'skype', 'make', 'sure', 'get', 'new', 'updat'], ['ah', 'ok', 'thank', 'youu'], ['total', 'love', 'lip', 'favorit'], ['heh', 'seem', 'complex', 'iphon', 'jealousi', 'harm', 'let'], ['ember', 'dant', 'much', 'fun', 'smile', 'harder'], ['niqhti', 'niqht', 'niqht', 'toqeth', 'great', 'day', 'ili'], ['morn', 'peopl', 'woke'], ['great', 'night', 'tomorrow', 'mother', 'day'], ['happi', 'mother', 'day', 'take', 'mother', 'special', 'place'], ['sun', 'shine', 'bright', 'day', 'begun', 'store', 'wander', 'around', 'les', 'calanqu', 'mayb', 'vin', 'definit'], ['justin', 'timberlak', 'leonard', 'nimoy', 'dick', 'box', 'sequel', 'priceless'], ['hope', 'record', 'game', 'find', 'not', 'record', 'lucki', 'not', 'leaf', 'would', 'lost'], ['haha', 'good', 'job', 'get', 'close', 'eye', 'set', 'somewher', 'els', 'though'], ['wrestlefest', 'fun', 'tune', 'sunday', 'chat'], ['aww', 'wikid', 'need', 'book', 'myne', 'soon', 'miss', 'love', 'ned', 'brekki', 'speak', 'soon', 'dudd', 'xx'], ['oh', 'yippe', 'way', 'get', 'celebr', 'mother', 'day', 'first', 'time', 'mother'], ['yes', 'love', 'tea', 'make', 'typic', 'english'], ['absolut', 'welcom', 'love', 'happi', 'abl', 'help', 'make', 'moment', 'happen'], ['sleep', 'not', 'come', 'easi', 'sleep', 'pill', 'need', 'mayb', 'mind', 'soo', 'wild', 'late', 'proven', 'fact'], ['not', 'sure', 'mean', 'quot', 'blowin', 'joint', 'quot', 'quot', 'rb', 'ladypn', 'lol', 'lol', 'good', 'one'], ['exact', 'moment', 'decid', 'point', 'life', 'go', 'adopt', 'child'], ['aaw', 'sweet', 'girl', 'friend', 'got', 'drag', 'hubbi', 'quot', 'quot', 'unless', 'beer', 'lol'], ['came', 'bak', 'danc', 'neeww', 'cd', 'haha', 'danc'], ['thank', 'homski', 'like', 'christma'], ['ten', 'updat', 'away', 'whoo', 'hoo', 'budden'], ['long', 'day', 'dancin', 'travelin', 'celebr', 'life', 'happi', 'mother', 'day'], ['luckiest', 'girl', 'world', 'lt'], ['pray', 'love', 'lap', 'danc', 'pay', 'naiveti', 'lt', 'one', 'fav', 'song'], ['take', 'good', 'photo'], ['dang', 'babi', 'love'], ['inde', 'twitter', 'mate', 'happen', 'enjoy', 'hope', 'see', 'arou'], ['goodnight', 'world', 'inhabit'], ['got', 'home', 'pleas', 'star', 'trek'], ['okay', 'work', 'pleas', 'remind'], ['salon', 'mom', 'happi', 'mother', 'day', 'mom'], ['happi', 'mother', 'day', 'everyon', 'lucki', 'enough', 'mommi', 'extra', 'special', 'happi', 'becam', 'mommi'], ['watch', 'moment', 'straighten', 'hair', 'take', 'hour', 'hair', 'cur'], ['cute', 'pretti'], ['dashboard', 'modest', 'mous', 'first', 'modest', 'mous', 'blip', 'oyay', 'not', 'bad'], ['tell', 'mommi', 'said', 'n', 'love', 'mucho', 'mucho'], ['star', 'trek', 'movi', 'amaz', 'omg', 'everyon', 'go', 'see'], ['good', 'topic', 'ciggarett'], ['inde', 'love', 'even', 'far', 'quick', 'got', 'home', 'end', 'coffe', 'bed', 'morn'], ['happi', 'mother', 'day', 'wonder', 'women', 'great', 'relax', 'day'], ['happi', 'mother', 'day', 'mommiess'], ['haha', 'matt'], ['shuld', 'danc', 'like', 'serious', 'best', 'thing', 'haha', 'see', 'yu', 'tomoro'], ['quot', 'camel', 'hill', 'quot', 'quot', 'give', 'plankton', 'quot'], ['lol', 'love', 'kid'], ['happi', 'mother', 'day', 'tweetin', 'mama', 'nite', 'tweepl'], ['tts', 'ridicul', 'sweet'], ['first', 'time', 'felt', 'aliv', 'year', 'super', 'happi'], ['finish', 'iron', 'cloth', 'church', 'go', 'walk', 'dog', 'grab', 'jottonia', 'look', 'good'], ['omgssh', 'ang', 'cute', 'ng', 'bbi'], ['yeah', 'seen', 'review', 'great', 'review', 'surpris', 'get', 'ticket', 'tonight'], ['yes', 'quit', 'rusti', 'hope', 'get', 'back', 'quot', 'tune', 'quot', 'skill', 'tim', 'play', 'guitar', 'threaten', 'duet'], ['hi', 'nice', 'meet'], ['happi', 'mother', 'day', 'mom', 'happen', 'greatest', 'mom', 'world', 'love', 'mom', 'best', 'friend'], ['lol', 'yep', 'tell', 'rhonda', 'said', 'happi', 'mother', 'day'], ['happi', 'mother', 'day', 'happi', 'day'], ['pancak', 'lemon', 'sugar', 'thank'], ['enjoy', 'know'], ['happi', 'mother', 'day', 'mom'], ['today', 'felt', 'much', 'crazi', 'digg', 'new', 'addit', 'famili', 'pretti', 'cool'], ['patienc', 'worth'], ['damn', 'favorit', 'keep', 'stock', 'alot'], ['took', 'yesterday', 'amp', 'treat', 'outfit', 'amp', 'shoe', 'not', 'treat', 'mother', 'day', 'gift'], ['favorit', 'littl', 'cartoon', 'movi', 'world'], ['ate', 'foot', 'long', 'subway', 'like', 'hour', 'ago', 'omg', 'happi', 'full', 'not', 'ate', 'sinc', 'happi', 'lis'], ['love', 'panti'], ['happi', 'mother', 'day', 'mommi', 'love', 'amp', 'amp', 'best'], ['happi', 'mother', 'day', 'lt'], ['happi', 'mother', 'day', 'mum', 'america'], ['wow', 'justin', 'timberlak', 'snl', 'tonight', 'hilari', 'got', 'love', 'dude'], ['least', 'hugh', 'happi', 'trail'], ['happi', 'mother', 'day', 'everi', 'singl', 'mom', 'love', 'mommi'], ['thank', 'follow', 'mean', 'lot', 'love', 'hey', 'monday'], ['way', 'concert', 'freak', 'awesom'], ['quot', 'argu', 'quot', 'thought', 'healthi', 'convers'], ['saw', 'tue', 'last', 'niighht', 'lt', 'amazz', 'not', 'even', 'notic', 'forget', 'worddss'], ['one', 'favorit', 'quot', 'ever'], ['say', 'happi', 'mother', 'day'], ['saw', 'statement', 'mayb', 'receiv', 'unholi', 'aiden', 'fan', 'packag', 'yaay'], ['whoop', 'got', 'twitter', 'dang', 'line', 'communic', 'keep', 'grow'], ['yes', 'thank', 'haha', 'field', 'flower', 'not', 'exist', 'singapor', 'well', 'not', 'one', 'frolick'], ['back', 'later', 'happi', 'mother', 'day', 'mother', 'world', 'god', 'love', 'us'], ['treat', 'mom', 'like', 'queen', 'cuz'], ['true', 'donna', 'wish', 'joyful', 'sunday'], ['exact', 'first', 'time', 'saw', 'repli', 'jon', 'never', 'go', 'oh', 'fun', 'new', 'phone'], ['read', 'coupl', 'week', 'ago', 'work', 'realli', 'well', 'movi'], ['sigh', 'bed', 'tri', 'get', 'crummi', 'hrs', 'sleep', 'horrid', 'hour', 'niterzz', 'not', 'let', 'twitterbugz', 'bite'], ['happi', 'birthday'], ['yay', 'cool', 'aww', 'would', 'sweet', 'worri', 'though', 'glad', 'fun'], ['ow', 'okay', 'good', 'better'], ['relax', 'bed', 'go', 'sleep', 'nice', 'get', 'hous', 'tonight'], ['nice', 'time', 'juno'], ['enjoy', 'hanami', 'picnic', 'cherri', 'tree', 'park', 'hope', 'weather', 'stay', 'nice'], ['would', 'love'], ['fun', 'night', 'tonight', 'hous', 'look', 'purrti', 'tomorrow', 'kid', 'come', 'home'], ['good', 'morn', 'anoth', 'late', 'sleeper', 'one', 'excel', 'design', 'valeri', 'see', 'pictur'], ['thank'], ['trent', 'not', 'get', 'mad', 'keep', 'think', 'pretend', 'engag', 'reason'], ['night', 'alon', 'pro', 'tool', 'session', 'ill', 'take', 'anytim'], ['go', 'watch', 'two', 'david', 'yey'], ['lolol', 'think', 'funni', 'peopl', 'think', 'lie', 'quot', 'real', 'john', 'barrowman', 'quot'], ['photovia', 'dreamt', 'spell', 'harri', 'potter', 'yesterday', 'night', 'lol', 'love'], ['today', 'anoth', 'good', 'day', 'less', 'extrem', 'experi', 'anyon', 'fan', 'watch', 'season'], ['funni', 'n', 'almost', 'right'], ['sweet', 'nk', 'dream', 'love'], ['lovelytrinket', 'like', 'way', 'word', 'rocki', 'road'], ['haha', 'great', 'yeah', 'zachari', 'quinto', 'spock', 'realli', 'awesom', 'inde'], ['romant', 'even', 'papa', 'murphi', 'quot', 'battl', 'quot', 'histori', 'channel'], ['final', 'got', 'bike', 'want'], ['lie', 'bed', 'favorit', 'girl', 'world', 'happi', 'mommi', 'day'], ['yay', 'welcom', 'world'], ['folk', 'thought', 'hilari', 'told', 'stori', 'saw', 'shirt', 'wore', 'tonight', 'laughter', 'night'], ['oh', 'cool', 'not', 'wait', 'awesom'], ['burger', 'found', 'new', 'old', 'camera', 'play', 'though', 'excel'], ['love', 'new', 'shoe', 'thank', 'wine', 'lo'], ['not', 'worri', 'get', 'bore', 'hang', 'not', 'give'], ['hope', 'studyin', 'went', 'well'], ['final', 'home', 'fed', 'readi', 'go', 'bed', 'got', 'record'], ['day', 'late', 'happi', 'birthday', 'hahahaha'], ['happi', 'mother', 'day', 'mom', 'around', 'world', 'love', 'mine', 'anyth', 'world', 'not', 'wait', 'celebr', 'woo'], ['second', 'song', 'come', 'along', 'nicley'], ['love', 'see'], ['look', 'live', 'centr', 'glasgow', 'born', 'bellshil', 'amp', 'grew', 'bothwel', 'miss', 'tunnock', 'pie'], ['knacker', 'awak', 'sinc', 'could', 'not', 'sleep', 'start', 'work', 'coffe', 'toast', 'sound', 'awesom', 'chris', 'busi'], ['bed', 'good', 'last', 'saturday', 'ec', 'go', 'miss', 'place', 'not', 'wait', 'til', 'summer'], ['serious', 'though', 'amaz', 'night'], ['go', 'bed', 'good', 'night', 'everyon', 'love', 'say', 'good', 'morn', 'sweet', 'dream'], ['mean', 'email', 'month', 'parti', 'must', 'come', 'soon', 'realli', 'wish', 'could', 'gt', 'char', 'soon'], ['thank', 'yyoouu'], ['hope', 'not', 'take', 'quot', 'person', 'throw', 'shoulda', 'wait', 'bit'], ['forc', 'watch', 'movi', 'book', 'report', 'lazi', 'read'], ['littl', 'prob', 'twitter', 'happen', 'old', 'pep', 'resteraunt', 'mayb', 'help', 'fix'], ['aww', 'thought', 'would', 'quot', 'yummi', 'quot', 'experi', 'tri', 'next', 'time', 'kapag', 'magkakasama', 'ulet', 'tayo', 'nila', 'mapet'], ['appl', 'ad', 'asid', 'would', 'rather', 'recommend', 'real', 'peopl', 'real', 'experi', 'iphon', 'app', 'seek'], ['happi', 'mother', 'day', 'janey', 'even', 'though', 'not', 'know', 'mommi'], ['ahh', 'birthday', 'not', 'beliv', 'found', 'see', 'yous', 'tonight', 'best', 'present', 'everr', 'lt'], ['happi', 'mother', 'day'], ['realli', 'good', 'distract', 'check', 'right'], ['realli', 'brilliant'], ['phone', 'call', 'yett', 'hrmm', 'mayb', 'call', 'end', 'order', 'wait', 'bit', 'longer', 'prom', 'night', 'often', 'moment'], ['wall', 'like', 'say', 'ban', 'zac', 'efron', 'lol', 'sonni'], ['girl', 'work', 'hope', 'slammer', 'fun', 'moldovan', 'want', 'hear', 'detail'], ['happi', 'mother', 'day', 'wonder', 'mom', 'mom', 'make', 'world', 'stay', 'balanc', 'great', 'mother', 'day'], ['love'], ['monday', 'school', 'gosshh', 'wait'], ['one', 'thing', 'quot', 'shatter', 'quot', 'amaz', 'song'], ['thank', 'link', 'explain', 'lot', 'glad', 'feel', 'good', 'friend', 'come', 'tomorrow', 'fun'], ['ear', 'hurt', 'medicin', 'gum'], ['goodnight', 'good', 'bye', 'hope', 'best', 'dream'], ['love', 'xx'], ['damn', 'felicia', 'freakin', 'cute'], ['come', 'fun', 'part', 'find', 'offer', 'per', 'countri', 'live', 'outsid', 'us', 'chang', 'quit', 'tini'], ['happi', 'mommi', 'day', 'ff'], ['good', 'more', 'go', 'take', 'shower', 'fix', 'hair', 'go'], ['happi', 'mother', 'day', 'mother', 'everi'], ['sway', 'sway', 'babi', 'zommgg', 'love', 'need', 'screamo', 'though', 'boy'], ['hot', 'unknown', 'follow', 'got', 'quit', 'clue', 'follow'], ['final', 'gone', 'beach', 'yeaah'], ['bueno', 'dia', 'sweet', 'thank'], ['beauti'], ['quot', 'supris', 'quot', 'mom', 'cake', 'present', 'mother', 'day', 'dad', 'bought', 'flower', 'gt'], ['happi', 'mother', 'day', 'mother', 'good', 'enjoy', 'day'], ['like', 'jame', 'bond', 'seri', 'spi', 'movi'], ['goodnight', 'happi', 'mother', 'day'], ['love', 'make', 'happi'], ['eat', 'truffl', 'yum'], ['sword', 'make', 'everyon', 'sexi', 'oh', 'harold'], ['know', 'need', 'get', 'cd', 'somewher', 'hope', 'sell', 'finland'], ['aww', 'thank', 'lol', 'ermm', 'happen', 'studi', 'ha', 'ha'], ['adventur', 'fun', 'yr', 'old', 'mo', 'old', 'brave', 'hope', 'great', 'time'], ['happi', 'mother', 'day', 'mum', 'old', 'amp', 'new'], ['come', 'fun', 'part', 'find', 'offer', 'per', 'countri', 'live', 'outsid', 'us', 'chang', 'quit', 'tini'], ['oh', 'sure', 'get', 'everyth', 'live', 'like', 'celebr'], ['happi', 'mother', 'day', 'take', 'mum', 'dinner', 'one', 'favourit', 'restaur', 'glenelg'], ['happi', 'mother', 'day'], ['thank', 'feedback', 'surreal', 'life', 'surreal', 'oil'], ['window', 'ledg', 'decor', 'quit', 'appropri', 'love'], ['got', 'greatest', 'boyfriend', 'world', 'love', 'much'], ['good', 'thank'], ['love', 'much', 'got', 'hide', 'spot', 'go', 'go', 'check', 'dataloung'], ['last', 'week', 'hit', 'guinea', 'pig', 'pictur', 'webshot', 'not', 'even', 'promot', 'way', 'go'], ['haha', 'dude', 'p', 'wish', 'novemb', 'also', 'turn', 'repli', 'pleas'], ['ohh', 'rememb', 'gave', 'dad', 'shoutout', 'mcr', 'messag', 'show', 'last', 'year', 'sweet'], ['go', 'lmk', 'let', 'us', 'go', 'togeth'], ['not', 'make', 'cri'], ['wow', 'dude', 'said', 'better', 'bobbi', 'lewi', 'never', 'heard', 'guy', 'take', 'compliment', 'read', 'bl', 'web', 'site'], ['wish', 'everyon', 'bless', 'amp', 'beauti', 'mother', 'day'], ['quot', 'vision', 'love', 'quot', 'play', 'quot', 'vision', 'love', 'n', 'aaoouoouoouu', 'quot', 'mariah', 'part'], ['uber', 'bore', 'atm', 'blue', 'shower', 'watch', 'hous', 'vid', 'csi', 'csi', 'ny', 'bone', 'doubl', 'yay'], ['good', 'show', 'even', 'like', 'ciara', 'last', 'song', 'time', 'go', 'bed'], ['good', 'friend', 'dave', 'wait', 'hope', 'not', 'wait', 'long', 'though'], ['love', 'blog', 'musicar', 'event', 'good', 'work'], ['today', 'fun', 'lt'], ['nice', 'one'], ['great', 'time', 'famili', 'big', 'up', 'bro', 'n', 'sis', 'law', 'hang', 'love', 'n', 'peac', 'free'], ['bahahaha', 'love', 'gabriel', 'absolut', 'fuck', 'hilari'], ['mother', 'day', 'wish', 'googl', 'pretti', 'amp', 'beauti', 'flower', 'googl', 'logo'], ['happi', 'mother', 'day', 'mom', 'love'], ['selena', 'mom', 'congratul', 'nice', 'day'], ['bring', 'soo', 'much', 'joy', 'show', 'great', 'song'], ['happi', 'mother', 'day', 'everyon', 'great', 'day', 'make', 'sure', 'go', 'see', 'ya', 'momma'], ['bring', 'soo', 'much', 'joy', 'show', 'great', 'song'], ['happi', 'mother', 'day'], ['welcom'], ['ok', 'dear', 'tweep', 'goodnight', 'need', 'get', 'earli', 'say', 'happi', 'mother', 'day', 'wife', 'n', 'mom'], ['feel', 'home', 'back', 'church'], ['great', 'time', 'talkin', 'mike', 'tonight', 'three', 'hrs'], ['epic', 'weekend', 'atleast', 'year', 'night', 'cap', 'hour', 'sleep', 'day', 'goodnight'], ['happi', 'mother', 'day'], ['n', 'way', 'happi', 'mother', 'day', 'sissi'], ['wow', 'buddhist', 'hooray', 'jew'], ['ooh', 'harlow', 'sweet'], ['thursday', 'night', 'amaz', 'taylor', 'swift', 'gave', 'one', 'braclet'], ['use', 'old', 'phone', 'gosh', 'miss', 'phone'], ['get', 'tonight', 'bridesmaid', 'mom', 'bride', 'amp', 'rockin', 'recept'], ['happi', 'babi', 'momma', 'day', 'gt', 'gt', 'momma', 'lt', 'lt', 'twittervill'], ['congratss'], ['thank'], ['ok', 'lol', 'think', 'might', 'date'], ['good', 'morn', 'world', 'anoth', 'wonderful', 'day', 'start', 'breakfst', 'champion', 'kid', 'ofcours'], ['hella', 'wow', 'doubt'], ['thank'], ['super', 'excit', 'bought', 'tix', 'see', 'hey', 'monday', 'denver', 'co'], ['ha', 'fun', 'think', 'rewatch', 'part', 'season', 'prepar', 'night'], ['friend', 'request', 'tomorrow', 'blame', 'nite'], ['hey', 'girli'], ['woolseri', 'morn', 'hope', 'see', 'north', 'molton', 'clinch', 'north', 'devon', 'leagu', 'titl', 'love', 'day'], ['thanx'], ['slowli', 'lose', 'follow', 'one', 'one'], ['would', 'help', 'not', 'poorer', 'lol', 'mexican', 'live', 'automat', 'make', 'time', 'poorer'], ['huh', 'wrong', 'unix', 'environ', 'dev'], ['see', 'one', 'side', 'look', 'interest', 'deep'], ['cold', 'rock', 'choc', 'yum', 'xd', 'fun', 'day'], ['happi', 'trip'], ['must', 'like', 'song'], ['last', 'week', 'interview', 'told', 'fb', 'queen', 'glad', 'see', 'connect'], ['happi', 'mother', 'day', 'god', 'mother', 'step', 'mother'], ['testfest', 'weer', 'een', 'groot', 'succ'], ['ok', 'yeah', 'good', 'night', 'thank', 'glad', 'hope', 'enjoy', 'bbq'], ['watch', 'jas', 'love', 'brother', 'best', 'friend'], ['thank', 'thank', 'thank', 'everyth', 'weekend', 'guy', 'amaz', 'see', 'alpin', 'thank', 'chattin', 'w', 'us'], ['goin', 'good', 'takin', 'easi', 'ths', 'weekend', 'prepar', 'big', 'event', 'comin', 'girl', 'inspir', 'great', 'thing'], ['goodnit', 'sexi', 'twigga'], ['great', 'night', 'great', 'peolpl'], ['nite', 'nite', 'birthday', 'girl', 'fun', 'concert'], ['good', 'morn', 'everyon'], ['good', 'morn', 'sunni', 'like', 'oxymoron', 'happen', 'true', 'today', 'hurrah'], ['great', 'hear', 'today', 'r', 'best', 'not', 'wait', 'see', 'cruis', 'lt', 'cindi', 'sign'], ['thank', 'complet', 'calvin', 'appreci'], ['great', 'bed', 'tomorrow', 'back', 'sd'], ['somehow', 'miss'], ['best', 'show', 'life', 'guess', 'go', 'sc', 'week'], ['yay', 'finish', 'journal', 'go', 'go', 'sleep', 'church', 'tomorrow', 'yay', 'not', 'forget', 'mother', 'day'], ['good', 'morn', 'work', 'espn', 'sunday', 'night', 'basebal', 'hope', 'not', 'get', 'rain'], ['swine', 'flu', 'temperatur', 'screen', 'feel', 'like', 'crimin', 'cold'], ['happi', 'mother', 'day', 'love', 'mom'], ['yeah', 'probabl', 'stori', 'complet', 'finish', 'not', 'though', 'wide', 'awak'], ['thank', 'think', 'us', 'care'], ['ohh', 'yea', 'film', 'one', 'fave', 'longg', 'time', 'humma', 'humma'], ['thank', 'happi', 'mother', 'day'], ['happi', 'mother', 'day', 'mother'], ['surpris', 'like', 'star', 'trek', 'contrari', 'theori', 'star', 'war', 'fan', 'anti', 'trekki'], ['order', 'pizza', 'watch', 'diggnat', 'tri', 'tweetdeck', 'good'], ['home', 'tonight', 'much', 'fun', 'goodnight', 'twitterbug'], ['still', 'huge', 'achiev', 'though'], ['lol', 'split', 'second', 'peac', 'truli', 'amaz'], ['neat', 'mother', 'day', 'noth', 'flash', 'chillin', 'time', 'girl'], ['hello', 'found', 'gbw', 'glad', 'see', 'twitter', 'learn', 'german'], ['beauti'], ['aww', 'help', 'get', 'sweepi', 'sis', 'say', 'whip', 'cream', 'bed', 'save'], ['ha', 'age', 'ago', 'la', 'right', 'weather', 'much', 'better'], ['think', 'normal', 'drawn', 'peopl', 'familiar', 'similar', 'us', 'cougar', 'thing', 'quick', 'fun'], ['sleep', 'woke', 'check', 'see', 'cold', 'hot', 'love', 'mom'], ['watch', 'quot', 'hostag', 'quot', 'also', 'got', 'idea', 'anim', 'make', 'hope', 'readi', 'post', 'link', 'fifth', 'june'], ['find', 'john', 'mayer', 'tweet', 'mighti', 'entertain', 'hearti', 'thank', 'john'], ['great', 'meet', 'ya', 'show', 'sure', 'safe', 'travel', 'home'], ['aww', 'love', 'thing', 'say', 'manchest', 'x'], ['happi', 'mommi', 'day'], ['oop', 'ignor', 'last', 'post', 'meant', 'direct', 'messag'], ['crap', 'lost', 'game', 'time', 'today', 'day', 'histori', 'lostthegam', 'blame'], ['celebr', 'mother', 'day', 'best', 'lamb', 'roast', 'lunch', 'follow', 'box', 'cadburi', 'share', 'around', 'tabl', 'wonder', 'day'], ['watch', 'dor', 'utv', 'movi', 'great', 'perform'], ['haha', 'well', 'kind', 'mommi', 'lil', 'hehe', 'thank'], ['ooh', 'clever', 'bow', 'econom', 'wisdom', 'sensei'], ['lol', 'much', 'appreci', 'excit'], ['sex', 'beach', 'cosmo', 'kamikaz', 'captain', 'america', 'ahh', 'fun', 'night', 'still', 'not'], ['ah', 'get', 'still', 'fair', 'bit', 'go', 'come', 'togeth', 'fair', 'well', 'aw'], ['go', 'bed', 'great', 'night', 'friend', 'glad', 'know', 'feel', 'class', 'someon', 'els'], ['thank', 'keep', 'good', 'lad'], ['happi', 'mother', 'day', 'babi', 'mommass', 'rofl'], ['one', 'hott', 'coupl', 'eventho', 'yrs', 'ago', 'still', 'r'], ['aww', 'bradi', 'love', 'perth', 'love', 'ad', 'top', 'page', 'lol', 'xx'], ['want', 'point', 'youtub', 'subscrib', 'tom', 'felton', 'thought', 'might', 'make', 'happi'], ['watch', 'freo', 'sunday', 'arvo', 'good', 'hobbi'], ['like', 'fake', 'tan', 'orang', 'colour'], ['odd', 'lap', 'mayb', 'cat'], ['brows', 'digit', 'art', 'tutori', 'like', 'found', 'hen', 'site', 'refresh', 'knowledg', 'skill'], ['movi', 'worst', 'fate', 'use', 'quot', 'straight', 'dvd', 'quot', 'quot', 'straight', 'divx', 'quot', 'quot', 'straight', 'internet', 'quot'], ['updat', 'live', 'benihana', 'tokyo', 'waikiki', 'happi', 'birthday', 'mark'], ['relax'], ['oh', 'annoy', 'problem', 'thigh', 'hip', 'hope', 'catch', 'soon'], ['chillin', 'follow', 'cool', 'peopl'], ['sup', 'guy', 'download', 'tweetdeck', 'gettin', 'move', 'right', 'tweet', 'nice', 'cloth', 'sit', 'summat', 'x'], ['good', 'time'], ['happi', 'sunday'], ['cousin', 'confirm', 'confirm', 'parti'], ['miss', 'still', 'coast', 'shit'], ['awsom', 'thank', 'not', 'wait', 'xx'], ['get', 'anxious', 'new', 'album'], ['fuck', 'proud'], ['decod', 'paramor', 'great', 'song', 'love'], ['courtney', 'seem', 'like', 'cool', 'chick', 'amp', 'pretti'], ['ps', 'got', 'ben', 'button', 'today', 'complet', 'best', 'pictur', 'great', 'year'], ['aww', 'realli', 'cute'], ['alkalin', 'trio', 'sweet', 'save', 'day', 'suck', 'great', 'time', 'anyway', 'awesom', 'see', 'everybodi', 'hangin'], ['perfect', 'time'], ['glad', 'could', 'make'], ['quot', 'shini', 'quot', 'dmore', 'quot', 'best', 'anim', 'movi', 'ever', 'come'], ['hes', 'definit', 'fav', 'host', 'ever', 'not', 'wait', 'watch', 'rest', 'tomorrow'], ['wow', 'crazi', 'night', 'ever', 'chang', 'emot', 'like', 'though'], ['nice', 'pleb', 'came'], ['yes', 'cold', 'coffe', 'yesterday', 'sugar', 'cream', 'way', 'like'], ['brand', 'iron', 'drea', 'white', 'boubous', 'cowgirl', 'get', 'haha', 'crunk', 'next', 'coupl', 'hour', 'haha', 'fun', 'time'], ['happi', 'birthday'], ['love', 'jordi', 'version', 'well', 'joe', 'donni', 'differ'], ['kind', 'feel', 'regga', 'mood', 'hope', 'enjoy', 'smooth', 'love', 'weekend'], ['not', 'open', 'eye', 'proper', 'mayb', 'sleep', 'lil', 'longer', 'fix'], ['haha', 'chanc', 'tweet', 'rubbish', 'back'], ['well', 'not', 'wait', 'parti', 'mother', 'day', 'like', 'hour'], ['love', 'new', 'blackberri'], ['last', 'night', 'went', 'realli', 'well', 'got', 'crack', 'shot'], ['lol', 'know', 'ya', 'mean', 'watch', 'everyon', 'els', 'act', 'fool', 'much', 'better', 'not', 'rememb', 'act', 'fool'], ['wow', 'awesom', 'andr', 'great', 'know', 'not', 'wait', 'dad', 'not', 'bad', 'either'], ['hope', 'meet'], ['excit', 'trouser', 'way', 'topshop', 'coupl', 'day'], ['doin', 'tweet', 'phone', 'clue', 'repli', 'anyon', 'thank', 'fiercemichi', 'soon', 'check'], ['okay', 'quot', 'thought', 'quot', 'get', 'sick', 'nope', 'hahaha', 'phew', 'sri', 'mike', 'lol', 'hope', 'get', 'better', 'soon'], ['mother', 'world', 'happi', 'mother', 'day'], ['stinkin', 'ador', 'want', 'come', 'check', 'studio'], ['mama', 'best', 'thing', 'ever', 'happen', 'thank', 'everyth', 'amp', 'sorri', 'hurt', 'love', 'lt'], ['love', 'lil', 'jam', 'pit', 'edgefesst'], ['realli', 'son', 'bitch', 'screw', 'ill', 'talk', 'msn', 'later', 'k', 'xox'], ['last', 'time', 'look', 'gave', 'us', 'demo', 'cool'], ['good', 'know', 'thank'], ['good', 'morn', 'camper', 'happi', 'mother', 'day'], ['lol', 'whisper', 'not', 'get', 'troubl', 'almost', 'feel', 'great', 'home', 'feel', 'like', 'kid'], ['woot'], ['inspit', 'spam', 'not', 'stop', 'lose', 'twittergadget', 'love', 'twit', 'gmail'], ['wish', 'mom', 'happi', 'mother', 'day'], ['sound', 'like', 'excit'], ['sweet', 'make', 'sure', 'put', 'bag'], ['ooh', 'haha', 'thank', 'post'], ['dia', 'de', 'madr', 'happi', 'mother', 'day'], ['man', 'love', 'sweetheart', 'wife', 'best', 'mother', 'longest', 'happi', 'mother', 'day'], ['morn', 'well', 'excit', 'danc', 'park', 'todayi', 'good', 'woo', 'venu', 'xx'], ['not', 'worri', 'soon'], ['beach', 'pretti'], ['got', 'love', 'summer'], ['good', 'deal', 'good', 'thank', 'one', 'love', 'mom'], ['beauti', 'morn', 'nice'], ['watch', 'everyth', 'illumin', 'dreaam', 'lt'], ['gorgeous', 'day', 'hash', 'around', 'waterley', 'bottom', 'wonder', 'name', 'villag', 'quiz', 'mistress', 'porto', 'even'], ['yer', 'hope', 'competit', 'not', 'end', 'post', 'video', 'lol', 'realli', 'good', 'singer', 'enter'], ['shame', 'not', 'still', 'compaq', 'portabl', 'realli', 'anyth', 'portabl', 'lmao', 'last', 'tweet', 'toodl', 'pip'], ['happi', 'muthath', 'day', 'mom', 'salut'], ['decor', 'mom', 'room', 'asleep', 'mother', 'day', 'wake', 'banner', 'balloon', 'woo'], ['mother', 'not', 'anyth', 'movi'], ['happi', 'mother', 'day', 'everyon'], ['wish', 'mommi', 'happi', 'day'], ['hey', 'man', 'congratul', 'graduat', 'man', 'r', 'world', 'wide', 'popular', 'philippin'], ['meet', 'zombi', 'expert', 'believ'], ['happi', 'mother', 'daay'], ['water', 'tomato', 'plant', 'pepper', 'plant', 'lettuc', 'feel', 'home', 'freddi', 'day'], ['scene', 'slut', 'alway', 'shit'], ['lol', 'sweet', 'still', 'yet', 'watch', 'movi', 'hope', 'love', 'weekend', 'happi', 'mother', 'day', 'aus', 'haha'], ['happi', 'mother', 'day', 'everyon'], ['exact', 'follow'], ['thank', 'accept', 'request', 'must', 'take', 'care', 'littl', 'girl', 'mayb', 'write', 'back', 'later'], ['thank', 'feel', 'good', 'new', 'forest', 'later'], ['anoth', 'loser', 'crap', 'lost', 'game', 'time', 'today', 'day', 'histori', 'lost'], ['full', 'thank', 'food', 'jean', 'brought', 'half', 'watermelon', 'eat', 'freeway', 'crash', 'die'], ['work', 'splendid'], ['think', 'aaron', 'pretti', 'darn', 'awesom'], ['today', 'salut', 'mother', 'honour', 'time', 'beer'], ['hey', 'girl', 'yeah', 'bunch', 'not', 'start', 'download', 'total', 'owe'], ['problem', 'seem', 'fix', 'thank'], ['happi', 'mother', 'day', 'feliz', 'dia', 'dela', 'madr', 'mine', 'alreadi', 'heaven', 'miss'], ['thank', 'appreci', 'know', 'unsubscrib', 'list', 'grow', 'tomorrow', 'lol'], ['crazi', 'fun', 'make', 'man', 'nice', 'sri', 'lanka', 'spiritu', 'place', 'yes'], ['best', 'snl', 'episod', 'seen', 'hot', 'minut', 'justin', 'wonder', 'ciara', 'end', 'tweet', 'tweet'], ['love', 'fatti', 'take', 'away', 'night', 'yummi', 'come', 'home', 'facespac', 'roomi'], ['way', 'home', 'aloha', 'good', 'night', 'everyon'], ['best', 'mother', 'day', 'breakfast', 'shop', 'lunch', 'drink', 'chocol', 'galor'], ['happi', 'mother', 'day', 'love'], ['happi', 'mother', 'day'], ['jass', 'warn', 'go', 'nxt', 'fun'], ['miss', 'like', 'cotton', 'candi', 'lt'], ['happi', 'mother', 'day', 'lt'], ['hi', 'ok', 'still', 'not', 'feel', 'great'], ['happi', 'mother', 'day'], ['love', 'lol', 'ever', 'need', 'slow', 'good', 'audiobook', 'oliv', 'twist', 'one', 'listen', 'late'], ['aww', 'kind', 'dog', 'chihuahua', 'name', 'zoey'], ['yeah', 'kind', 'glad', 'stay', 'home'], ['quot', 'arrest', 'quot', 'anyth', 'end', 'done'], ['realli', 'cool', 'put', 'topic', 'twitter', 'tweeter', 'twitter', 'twit', 'got', 'love'], ['happi', 'mom', 'day', 'everyon', 'us'], ['frank', 'black', 'wifey', 'show', 'aamaz', 'sd', 'trip', 'made'], ['final', 'home', 'citi', 'time', 'head', 'sleep', 'goodnight', 'amp', 'happi', 'mommi', 'day', 'mother'], ['miss', 'cat', 'not', 'sunday', 'morn', 'mine'], ['ok', 'tweep', 'sorri', 'mani', 'twitpic', 'delet', 'pic', 'soon', 'copi'], ['nine', 'clock', 'sunday', 'morn', 'outsid', 'sat', 'around', 'tabl', 'enjoy', 'earli', 'ray', 'sun', 'read', 'twitter', 'articl', 'sunday', 'time'], ['lohang', 'listen', 'music', 'realli', 'happi', 'librefm', 'audaci', 'combin', 'profil'], ['great', 'wed', 'band', 'awesom', 'play', 'ton', 'great', 'song', 'food'], ['thank', 'stephen', 'appreci'], ['hope', 'feel', 'better'], ['dinner', 'jiuliani', 'famili', 'yum'], ['hi', 'holli', 'volunt', 'tri', 'first', 'hope', 'fab', 'weekend', 'xoxox'], ['lol', 'cheer', 'yeah', 'went', 'well', 'thank'], ['love', 'husband', 'made', 'breakfast', 'bed', 'morn', 'say', 'chivalri', 'dead'], ['worth', 'spose'], ['honest', 'hope', 'theatr', 'get', 'hit', 'meteor', 'get'], ['oowwe', 'china', 'club', 'wuz', 'poppin', 'lipstic', 'n', 'pump', 'full', 'effect'], ['tonight', 'fun'], ['yeah', 'lie', 'bed', 'thing', 'bugger', 'block', 'creativ', 'wors', 'pin', 'pet', 'cat', 'appar'], ['mayb', 'funni', 'like', 'jester'], ['sweet', 'swiss', 'tobleron', 'best', 'come', 'soon', 'meet', 'fabul', 'rita', 'chichest'], ['thank', 'amigo'], ['happi', 'mother', 'day', 'mom', 'god', 'bless', 'yhaw'], ['happi', 'mother', 'day'], ['happi', 'mother', 'day', 'not', 'got', 'mom', 'present', 'yet', 'print', 'amazon', 'gift', 'card'], ['damn', 'appl', 'store', 'updat', 'come', 'wonder'], ['mark', 'twain', 'quot', 'spot', 'cat', 'bugger', 'come', 'crime', 'handi', 'time'], ['yes', 'go', 'see', 'star', 'trek', 'soo', 'much', 'fun'], ['carl', 'jr', 'sound', 'hella', 'good', 'bring'], ['sleep', 'well'], ['wonder', 'spend', 'mother', 'day', 'mum'], ['thank', 'found', 'alreadi'], ['watch', 'nemecek', 'go', 'comput', 'fun', 'lol', 'keed', 'norm', 'fun'], ['cupcak', 'call', 'anyth', 'quot', 'bitch', 'quot', 'even', 'certain', 'circumst'], ['know', 'love', 'mom', 'stay', 'late', 'wrap', 'gift', 'look', 'glorious', 'amp', 'card', 'happi', 'mother', 'day'], ['hahaha', 'guess', 'reinforc', 'skate', 'haha', 'rememb', 'r', 'friend', 'gluten', 'intol'], ['went', 'hawksmoor', 'last', 'night', 'probabl', 'best', 'steak', 'ever'], ['awesom', 'day', 'zoo', 'gettin', 'readi', 'church', 'yay'], ['mum', 'made', 'cri', 'coz', 'said', 'someth', 'sweet', 'love', 'much', 'mum', 'best'], ['chauffeur', 'quot', 'kind', 'wonder', 'quot', 'idea', 'perfect', 'woman'], ['hi', 'ok', 'hope', 'head', 'come', 'cloud', 'gt', 'love', 'meadowbank', 'shop', 'center'], ['cool', 'mother', 'awesom', 'hair', 'style', 'wish', 'happi', 'mother', 'day'], ['hooray'], ['like', 'quot', 'dude', 'care', 'quot', 'made', 'smile', 'yea', 'teach', 'not', 'drive', 'e', 'lol'], ['yay', 'thanku', 'hug'], ['total', 'addict', 'xbox', 'carcassonn', 'also', 'realli', 'love', 'tomb', 'raider', 'legend', 'still', 'bad', 'need', 'bolt'], ['ofcours', 'start', 'fightin', 'aight', 'parti', 'but', 'cool', 'theyu', 'held', 'chillin', 'home', 'girl', 'happi', 'mother', 'day'], ['get', 'new', 'laptop', 'day', 'excit', 'dell', 'inspiron', 'hdd', 'inch', 'screen'], ['readi', 'wait', 'donni', 'love'], ['fun', 'night'], ['sweetest', 'children', 'obvious', 'great', 'mom', 'love', 'read', 'blog', 'msgs', 'kudo'], ['lisa', 'yes', 'know', 'talk', 'yes', 'ass', 'not', 'let', 'get', 'great', 'thing', 'go', 'chris'], ['much', 'longer', 'nkotb', 'block', 'parti', 'love', 'need', 'go', 'bed', 'wonder', 'time'], ['say', 'happi', 'mother', 'day', 'mom'], ['fantast', 'weekend', 'hairdress', 'stylish', 'luncheon', 'amp', 'fabul', 'girli', 'night', 'wine', 'chees', 'amp', 'danc', 'till', 'morn'], ['awesom', 'think', 'would', 'soo', 'write', 'back', 'lil', 'someth', 'lt', 'cross', 'finger'], ['hi', 'selena', 'made', 'team', 'support', 'greec', 'cyprus'], ['thank', 'ad'], ['made', 'new', 'youtub', 'background', 'photoshop', 'thank'], ['happi', 'mother', 'day', 'mom'], ['thank', 'nice', 'quot', 'go', 'alright', 'quot', 'mail', 'yes', 'cours', 'leav', 'comment', 'blog', 'cheer', 'nap'], ['happi', 'mum', 'day', 'nelli', 'shout'], ['good', 'hear'], ['love', 'guy', 'stand', 'behind'], ['caught', 'traffic', 'around', 'howlin', 'wolf', 'wonder', 'wth', 'go', 'nice'], ['haha', 'love', 'sissi', 'ring', 'power', 'lol'], ['think', 'follow', 'follow', 'stalk', 'pleas'], ['walaikum', 'assalam', 'alhamdulillah', 'chicago', 'may', 'would', 'nice', 'meat', 'dua'], ['sure', 'would', 'like', 'cream', 'right'], ['rat', 'run', 'steve', 'irwin', 'way', 'avoid', 'long', 'delay', 'bruce', 'highway'], ['yay', 'good', 'com', 'final', 'needa', 'step', 'next', 'semest', 'forsur', 'though', 'distract'], ['listen', 'music', 'super', 'junior', 'korea', 'like', 'way', 'sing', 'danc', 'hope', 'someday', 'meet'], ['problemo', 'famili', 'guy'], ['fri', 'plus', 'greentea', 'mm'], ['ty', 'friend', 'yes', 'right', 'daughter', 'daughter', 'forev'], ['made', 'breakfast', 'mother', 'day'], ['happi', 'mother', 'day', 'mum'], ['hey', 'thank', 'x', 'welcom', 'must', 'say', 'love', 'travel', 'moment', 'x'], ['not', 'late', 'not', 'late', 'not', 'late'], ['happi', 'mother', 'day'], ['ironclad', 'determin'], ['happi', 'mother', 'day'], ['love', 'mommi', 'happi', 'mother', 'day'], ['beer', 'pong', 'dubstep', 'good', 'nite'], ['thank', 'lyxx'], ['realli', 'sweetest', 'person', 'ever', 'thank', 'make', 'everyon', 'dream', 'come', 'true', 'dream', 'back', 'x'], ['love', 'new', 'tv'], ['sanctuarysunday', 'mission', 'make', 'sanctuari', 'trend', 'topic', 'day', 'lot', 'peopl', 'board'], ['tri', 'blend', 'know', 'suck', 'harm', 'tri'], ['happi', 'mother', 'day', 'mark'], ['thank'], ['home', 'whoott', 'happi', 'mother', 'day', 'madr'], ['crap', 'go', 'miss', 'grand', 'go', 'tri', 'sneak', 'back', 'room'], ['mother', 'day', 'spit', 'awesom', 'listen', 'paranoid', 'jona', 'brother'], ['not', 'make', 'cousin', 'yacht', 'convent', 'hope', 'not', 'get', 'upset', 'hope'], ['think', 'play', 'michael', 'bubl', 'heaven', 'great'], ['also', 'like', 'ke', 'paar', 'shaayad'], ['make', 'sens', 'would', 'total', 'show', 'girlfriend', 'ask', 'wear', 'high', 'school', 'prom', 'dress'], ['kelli', 'major', 'problem', 'okay', 'alex', 'kelli', 'hahahahahahahaa', 'face'], ['weekend', 'go', 'great'], ['yaay', 'birthday'], ['best', 'cup', 'final', 'today', 'fun'], ['hi', 'lisa', 'beauti', 'pup', 'happi', 'mother', 'day', 'raven', 'rio', 'amp', 'thor', 'wonderfur', 'mama', 'kittykiss'], ['chocol', 'chees', 'cake', 'chweet', 'mummi', 'muaxx'], ['rubi', 'skye', 'last', 'night', 'well', 'superb', 'set', 'steve', 'last', 'hour', 'load', 'thrillseek', 'materi', 'old', 'new'], ['vote', 'hope', 'win'], ['oh', 'night', 'love', 'ace'], ['hey', 'fan', 'new', 'zealand', 'love', 'show', 'even', 'though', 'soo', 'behind', 'episod', 'haha', 'keep', 'good', 'work'], ['feel', 'owe', 'listen', 'new', 'album', 'everyth', 'releas', 'sinc', 'nice', 'twitter'], ['good', 'night', 'everyon', 'time', 'go', 'mimmiz'], ['wonder', 'white', 'supremist', 'say', 'abhor', 'racist'], ['back', 'cycl', 'mile', 'virtual', 'traffic', 'free', 'road', 'sun', 'almost', 'shine', 'new', 'pb', 'great', 'start', 'day'], ['sanctuarysunday', 'thank', 'join', 'sanctuarysunday', 'follow', 'sanctuari', 'peopl', 'keep', 'date', 'tweet'], ['wish', 'happi', 'mother', 'day', 'mom'], ['ok', 'go', 'sleep', 'real', 'good', 'night', 'twitter', 'land'], ['thank', 'hope', 'allergi', 'not', 'nasti', 'flu'], ['hi', 'better', 'drink', 'hot', 'tea', 'honey', 'thank', 'take', 'care', 'plis'], ['case', 'miss', 'fb', 'status', 'look', 'maui', 'hotel', 'recommend', 'yes', 'maui'], ['hahahaha', 'listen', 'itun', 'librari', 'bit', 'sonia', 'dada', 'atm', 'good'], ['yeh', 'not', 'even', 'imagin', 'good', 'luck'], ['weekend', 'probabl', 'best', 'still', 'anoth', 'day', 'go'], ['go', 'tita', 'gi', 'sister', 'belov', 'lola', 'go', 'treat', 'dinner', 'wohoo', 'excit', 'hungri'], ['wed', 'anniversari', 'meal', 'yest', 'first', 'proper', 'meal', 'wife', 'sinc', 'rohan', 'born', 'well', 'check', 'phone', 'time'], ['happi', 'mother', 'day', 'euch', 'allen'], ['pretti', 'janett', 'exact', 'hey', 'monday', 'band', 'arm'], ['happi', 'sunday', 'beauti', 'day', 'london', 'meet', 'chergo', 'breakfast', 'xx'], ['fun', 'wish', 'mum', 'happi', 'mother', 'day', 'us'], ['gorgeous', 'check', 'new', 'pic'], ['happi', 'mother', 'day', 'watch', 'snl', 'not', 'miss', 'hoot', 'jimmi', 'fallon'], ['bout', 'hit', 'shit', 'tomorrow', 'happi', 'mother', 'day', 'mom'], ['omg', 'buy', 'dvd', 'yeah', 'anoth', 'good', 'movi', 'also', 'thank', 'movi', 'buddi'], ['good', 'mornig', 'everon', 'great', 'morn', 'even', 'play', 'theatr', 'lord', 'fli', 'much', 'fun'], ['happi', 'mother', 'day', 'sweet', 'mum'], ['last', 'night', 'long', 'drive', 'slept', 'realli', 'well', 'time', 'dino', 'wasstraat'], ['wow', 'calm', 'even'], ['welcom', 'chica'], ['oh', 'haha', 'thank', 'someth', 'new'], ['seen', 'beauti'], ['goodnight', 'twitterworld', 'tweet', 'later', 'goodnight', 'j'], ['cool', 'look', 'forward'], ['good', 'morn', 'woke', 'mother', 'day'], ['happi', 'mother', 'day'], ['justin', 'timberlak', 'total', 'rock', 'snl', 'tonight', 'ooh', 'happi', 'mother', 'day', 'anoth', 'hallmark', 'mkting', 'tool'], ['oh', 'man', 'want', 'bay', 'soon', 'possibl', 'thank', 'great', 'day'], ['pictur', 'tell', 'surround', 'ador', 'children', 'hehe'], ['sit', 'mel', 'hous', 'finish', 'eat', 'mcdick', 'laugh', 'dumb', 'stuff', 'said', 'tonight', 'readi', 'bed', 'think'], ['rblpnbro', 'not', 'quit', 'need', 'sad', 'true', 'soon', 'howev', 'well'], ['shoould', 'sleep', 'alreadi', 'got', 'caught', 'watch', 'late', 'night', 'offici', 'bed', 'next', 'episod'], ['quot', 'joint', 'crazi', 'quot', 'thank', 'hey', 'trax', 'heard', 'rear', 'end'], ['poopi', 'head'], ['awesom', 'good', 'idea'], ['today', 'wrote', 'two', 'song', 'one', 'templ', 'probabl', 'never', 'perform', 'ever', 'one', 'mother', 'day', 'happi', 'vesak', 'everyon', 'rena', 'xoxo'], ['photo', 'hannahisdead', 'omg', 'want', 'read', 'pride', 'prejudic', 'zombi', 'fuckyeah', 'zombi'], ['love', 'electro', 'hous'], ['want', 'wish', 'mom', 'happi', 'mother', 'day'], ['alreadi', 'know', 'dish', 'torta', 'hotdog', 'amp', 'itlog', 'hurrah'], ['wow', 'morn', 'hrs', 'ding', 'dong', 'breakfastservic', 'surpris', 'marjolein', 'guido', 'dirk', 'hapi', 'father'], ['dark', 'berri', 'mocha', 'frapp', 'heaven', 'tri', 'everyon', 'let', 'pass'], ['prom', 'rate', 'irrit', 'go', 'bed', 'goodnight'], ['erm', 'yeah', 'watch', 'sway', 'collaps', 'river', 'lol', 'next', 'time', 'shall', 'drag'], ['ahh', 'fun', 'work', 'last', 'night', 'parti', 'went', 'movi', 'today', 'see', 'wolverin', 'good', 'weekend'], ['cat', 'clean', 'hope', 'xx'], ['outta', 'see', 'guy', 'later', 'tomorrow', 'happi', 'mom', 'day'], ['mc', 'happi', 'mother', 'day', 'mom', 'love', 'yah'], ['think', 'might', 'fall', 'love', 'jihoon', 'boy', 'flower'], ['final', 'someon', 'recogn', 'genius'], ['much', 'good', 'food', 'mother', 'day', 'not', 'complain', 'seafood', 'durian', 'puff', 'macaron', 'yum'], ['thank', 'gorgeous', 'flower'], ['sweet', 'haha', 'like', 'super', 'proud', 'new', 'mom', 'feel', 'like', 'got', 'perfect', 'daughter', 'great', 'mom'], ['ahh', 'mother', 'day', 'first', 'one', 'yay'], ['would', 'cool', 'peopl', 'make', 'video', 'mime', 'song', 'make', 'one', 'big', 'video', 'everyon'], ['view', 'flickr', 'account', 'mayb', 'not', 'much', 'happi', 'yay'], ['excel', 'good', 'see'], ['feed', 'babi', 'fun', 'smile', 'coo'], ['happi', 'christma', 'wait', 'happi', 'day', 'serious', 'happi', 'mother', 'day', 'lmao'], ['happi', 'mother', 'day', 'hope', 'great', 'one', 'harlow', 'mom', 'love', 'awesom', 'mommi'], ['gossip', 'girl', 'amp', 'pizza', 'way', 'thank', 'lil', 'babe'], ['lol', 'yeah', 'slice', 'cheddar', 'chees', 'sleep'], ['wish', 'happi', 'mother', 'day', 'mother', 'especi'], ['not', 'realiz', 'young', 'advanc', 'happi', 'birthday', 'stefan', 'mtfbwi', 'alway'], ['good', 'one'], ['follow', 'babi', 'said', 'n', 'da', 'chat', 'love', 'ya', 'goodnit'], ['lol', 'know', 'aim', 'pleas'], ['thank', 'would', 'share', 'sunda', 'realli', 'late', 'say', 'not', 'tell', 'peopl'], ['thank', 'tri'], ['thank', 'deserv'], ['fog', 'horn', 'doom', 'great', 'way', 'start', 'morn', 'live', 'next', 'harbour', 'realli', 'great'], ['love', 'weather', 'want', 'go'], ['happi', 'mother', 'day'], ['thank', 'madam', 'lucki', 'coz', 'wonder', 'dog', 'soo', 'cute'], ['congrat', 'ya', 'ran'], ['thank'], ['go', 'track', 'itun', 'buy', 'awesom', 'track', 'not', 'love'], ['twitter', 'world', 'relax', 'famili', 'sunday', 'methink'], ['nice', 'glass', 'look', 'good'], ['thank', 'sunni', 'outsid', 'good', 'start'], ['got', 'best', 'friend'], ['haha', 'thank', 'new', 'word', 'week', 'mofo'], ['cool', 'show', 'last', 'night', 'fit'], ['good', 'night', 'twitter', 'peopl'], ['yayi'], ['happi', 'mother', 'dayi', 'denise', 'lt'], ['aww', 'love', 'hope', 'great', 'mother', 'day', 'littl', 'mother', 'hen', 'get', 'contact', 'sharn'], ['wow', 'lucki', 'happi', 'birthday'], ['great', 'book', 'look', 'fantast', 'want'], ['happi', 'mommi', 'dad', 'mommi', 'watch', 'footbal', 'yay', 'eagl', 'winningg', 'better', 'keep', 'sigh'], ['happi', 'mother', 'day', 'lt'], ['happi', 'mother', 'day', 'everybodi'], ['outz', 'wif', 'big', 'big', 'big', 'happi', 'famili', 'mommi', 'day', 'meal', 'happi', 'mommi', 'day', 'mommi'], ['happi', 'mother', 'daay'], ['church', 'bellss', 'ringin', 'got', 'go', 'adieu', 'god', 'bless', 'german'], ['woot', 'favourti', 'well', 'second', 'favourit', 'episod', 'came', 'tow', 'ross', 'rachel', 'know'], ['happi', 'momma', 'day', 'ging', 'lucki', 'momma', 'like', 'enjoy', 'nite', 'love', 'ya'], ['go', 'come', 'show', 'minnesota', 'love', 'though', 'hun'], ['happi', 'mother', 'day', 'mom', 'hope', 'breakfast', 'nice', 'love'], ['loll', 'dad', 'leavingg', 'move', 'las', 'vega', 'myy', 'ex', 'boyfrienndd', 'final', 'done', 'talk', 'left', 'alon'], ['cutest', 'cat', 'moment', 'video', 'enjoy'], ['ok', 'hit', 'hay', 'thank'], ['thank', 'retweet', 'man', 'quiet', 'sunday', 'morn'], ['whoop', 'wrong', 'smiley', 'suppos', 'lol'], ['got', 'best', 'mother', 'day', 'present', 'tys', 'made', 'cri', 'uncontrol', 'not', 'present'], ['spend', 'wonder', 'mother', 'day', 'brad', 'mom', 'dad', 'happi', 'mother', 'day', 'mom'], ['ask', 'sing', 'yet', 'coffe', 'mornin', 'time', 'psycholog', 'past', 'question', 'amp', 'revis', 'suck'], ['go', 'good', 'old', 'tonight', 'mother', 'day', 'feed', 'love', 'ever'], ['new', 'follow', 'pretti', 'cool', 'peep', 'check'], ['obama', 'ish', 'funni'], ['good', 'morn'], ['go', 'sleep', 'good', 'night', 'everyon'], ['say', 'nicest', 'thing'], ['ohh', 'beauti', 'place', 'hol', 'go', 'steadi', 'mead'], ['guapisimo', 'chico', 'ladi', 'gaga', 'look', 'amaz', 'usual'], ['not', 'believ', 'weekend', 'alreadi', 'time', 'go', 'nice', 'day', 'fam', 'today', 'mum', 'good', 'day'], ['gasp', 'love', 'thank', 'much', 'share', 'tim'], ['new', 'follow', 'pretti', 'cool', 'tweep', 'check'], ['truli', 'enlighten'], ['listen', 'eye', 'fire', 'enjoy', 'thank'], ['love', 'thank', 'much', 'say', 'quot', 'hi', 'jenn', 'amp', 'laura', 'quot', 'yesterday', 'arcadia', 'friend', 'shannon', 'surpris', 'vid'], ['finish', 'film', 'day', 'anoth', 'fun', 'day', 'set', 'hahaha'], ['happi', 'mother', 'day', 'amma', 'made', 'cake', 'rememb', 'love'], ['happi', 'mom', 'day'], ['readi', 'work', 'except', 'arm'], ['lol', 'like', 'style', 'alic', 'tell', 'got', 'standard', 'maintain', 'lol', 'nation', 'cork', 'girl', 'go', 'wild', 'london', 'week'], ['pleas', 'hun'], ['feel', 'inspir', 'even', 'huh'], ['inde', 'plenti', 'joke', 'lie', 'bed', 'hope', 'go', 'free', 'juri', 'servic', 'tomorrow'], ['thanku', 'cook', 'simpl', 'law', 'hve', 'fun', 'make'], ['thank', 'make', 'sure', 'read', 'group', 'descript', 'better', 'understand', 'project'], ['nite', 'nite', 'twitt', 'wish', 'happi', 'sunday', 'alreadi', 'major', 'gift', 'n', 'gift', 'way', 'tyg'], ['support', 'superfli', 'way'], ['know', 'right', 'told', 'busiest', 'time', 'year'], ['hey', 'let', 'us', 'follow', 'would', 'not', 'awesom'], ['quiet', 'mother', 'day', 'even', 'happi', 'mother', 'day', 'yummi', 'mummi'], ['nah', 'follow', 'first', 'follow', 'think', 'overnight', 'pretti', 'good'], ['happi', 'mother', 'dayi', 'andd', 'rest', 'fabul', 'mommi'], ['deathstar', 'destroy', 'starship', 'enterpric', 'not', 'get', 'enough', 'video', 'starwar', 'startrek'], ['omj', 'sister', 'brought', 'coldston', 'cupcak', 'today', 'instead', 'cake', 'celebr', 'bday', 'famili', 'excit', 'take', 'pic'], ['not', 'wait', 'day', 'till', 'happi'], ['haha', 'bet', 'settl', 'not', 'bad'], ['not', 'worri', 'man', 'see', 'much', 'week', 'last', 'week'], ['haha', 'dude', 'p', 'wish', 'novemb', 'also', 'turn', 'repli', 'pleas'], ['happi', 'mother', 'day'], ['happi', 'mother', 'day', 'mom', 'love'], ['sleepi', 'time', 'happi', 'mother', 'day', 'momz'], ['movi', 'awesom'], ['happi', 'mother', 'day'], ['wonder', 'mommi', 'world'], ['got', 'pull', 'cop', 'got', 'warn'], ['sunday', 'morn', 'bird', 'chirp', 'hope', 'best', 'pray', 'best'], ['like', 'binari', 'code', 'name', 'say', 'zirconcod', 'well', 'xd', 'look', 'nice', 'better'], ['not', 'seem', 'find', 'send', 'pleas', 'oh', 'tag', 'lol'], ['happi', 'mother', 'day'], ['like', 'pic', 'lucki', 'girl'], ['aha', 'yeah', 'els', 'fail', 'push', 'yeah', 'not', 'know', 'time', 'leav', 'yet', 'though', 'xx'], ['name', 'rest', 'let', 'us', 'see', 'mysteri', 'jet', 'pretti', 'cool', 'ida', 'maria', 'shud', 'realli', 'listen', 'say', 'anyth'], ['got', 'standard', 'alic', 'otherwis', 'would', 'got', 'enjoy', 'life', 'life'], ['lol', 'guy', 'awesom'], ['hello', 'great'], ['happi', 'mother', 'day'], ['head', 'bed', 'book', 'good', 'night'], ['god', 'bless', 'hope', 'rest', 'weekend', 'joyful'], ['happi', 'hug', 'mom', 'day', 'love', 'mom'], ['great', 'idea'], ['oh', 'yes', 'ave', 'never', 'orderd', 'lil', 'funni', 'first', 'check', 'ta'], ['good', 'not', 'think'], ['thank'], ['star', 'trek', 'awesom', 'kirk', 'hot', 'spock', 'cool', 'fun', 'cool', 'sexi', 'definit', 'worth', 'see', 'saw', 'cinerama'], ['thank', 'much', 'natali', 'hope', 'well'], ['back', 'sooper', 'dooper', 'extra', 'bharia', 'extra', 'dhumchik', 'two', 'day', 'stay', 'mom', 'place', 'yay', 'fun', 'fun', 'feelin'], ['thank'], ['happi', 'mother', 'day'], ['sound', 'like', 'good', 'five', 'day'], ['probabl', 'spam', 'follow', 'account'], ['great', 'pic', 'fun', 'love', 'food', 'wine', 'beer', 'fest'], ['lt', 'henc', 'new', 'forum', 'signatur'], ['jesus', 'heal'], ['tri', 'figur', 'use', 'twitter'], ['ok', 'thank'], ['noth', 'wrong', 'think', 'hot', 'belong'], ['realli', 'ador', 'site', 'haha'], ['join', 'biggest', 'bestest', 'group', 'facebook'], ['oh', 'yea', 'feel', 'realli', 'feckin', 'tire', 'today'], ['hey', 'home', 'sleep', 'not', 'believ', 'weekend', 'finish', 'fast', 'happi', 'mother', 'day', 'good', 'morn', 'great', 'sleep'], ['gdgd', 'well', 'better', 'go', 'get', 'readi', 'work', 'haha', 'fun', 'tonight', 'x', 'x'], ['famili', 'imna', 'crash', 'woke', 'day'], ['see', 'approach', 'nice', 'round', 'number', 'expect', 'crash', 'time', 'come', 'back', 'tonight'], ['thank'], ['look', 'sister', 'facebook', 'miss', 'yani'], ['done', 'mother', 'day', 'quot', 'peopl', 'day', 'behind', 'us', 'quot', 'quot', 'took', 'mom', 'starbuck', 'enjoy'], ['sowwyy', 'girl', 'make', 'twist', 'time'], ['happi', 'mother', 'day', 'mother', 'list'], ['way', 'offend', 'yeah', 'rockstar', 'pretti', 'ok'], ['got', 'fist', 'fight', 'old', 'biker', 'dare', 'even', 'ask', 'yes', 'kick', 'ass'], ['print', 'mom', 'amazon', 'gift', 'card', 'happi', 'mother', 'day', 'talk', 'last', 'minut'], ['zomg', 'cute', 'matt', 'shit', 'good', 'movi'], ['yes', 'actual', 'jam', 'twitter', 'traffic', 'yesterday', 'happen', 'not', 'worri'], ['well', 'hello', 'twitter'], ['happi', 'mother', 'day', 'amp', 'later', 'not', 'wait', 'see', 'concert', 'lol', 'well', 'see', 'day', 'like'], ['twin', 'peak', 'high', 'yay'], ['yes', 'cute', 'predict', 'work'], ['love', 'shoe', 'perez', 'look', 'fine', 'alway', 'oh', 'ladi', 'gaga', 'say', 'outstand'], ['happi', 'mother', 'day', 'day', 'chocol'], ['talk', 'phone', 'someon', 'miss', 'lott'], ['nice', 'lunch', 'even', 'better', 'mom', 'pay'], ['good', 'morn'], ['thank', 'guy', 'awesom', 'thing', 'blog', 'tonight', 'grate'], ['sound', 'awesom'], ['get', 'readi', 'go', 'studi', 'outsid', 'fun', 'nice', 'sunni', 'day'], ['pretti', 'black', 'top', 'flower', 'pink', 'hue'], ['newcastl', 'enjoy', 'famili', 'mum', 'mother', 'day', 'time', 'year'], ['kakabalik', 'lang', 'tarlac', 'good', 'afti'], ['thank', 'fun', 'work', 'lol', 'xx'], ['bill', 'absolut', 'fantast', 'programm', 'love', 'bell', 'bit', 'toward', 'end'], ['someon', 'admit', 'crush', 'cool'], ['rather', 'outdat', 'amp', 'bigot', 'worst', 'outdat', 'patronis', 'imperialist', 'monoculturalist', 'amp', 'best'], ['got', 'back', 'run', 'realli', 'good'], ['thank', 'add', 'tri', 'sign', 'later', 'get', 'home', 'still', 'luck', 'email', 'someon'], ['not', 'good', 'twitter', 'instead', 'watch', 'xx'], ['oh', 'cali', 'plan', 'go', 'might', 'get', 'see', 'da', 'hero', 'rock', 'sock'], ['stuff', 'refus'], ['ugh', 'not', 'sleep', 'reallyy', 'gettin', 'gahif', 'piss', 'bad', 'sometim', 'atleast', 'know', 'friend'], ['thank', 'still'], ['love', 'melika', 'come', 'like', 'next', 'time', 'go'], ['end', 'go', 'stay', 'amp', 'watch', 'snl', 'one', 'funnier', 'show', 'done', 'season'], ['come', 'today', 'could', 'go', 'graveyard', 'hoorayi'], ['mm', 'hair', 'smell', 'guud', 'wonder', 'quot', 'pantien', 'quot'], ['cav', 'easier', 'rout', 'denver'], ['well', 'nice', 'great', 'day', 'tweet', 'soon'], ['glad', 'zoo', 'fun', 'great', 'mother', 'day', 'hun'], ['quot', 'complet', 'dishwash', 'safe', 'except', 'pattern', 'might', 'come', 'quot', 'blue', 'coat', 'humour', 'best', 'three', 'cheer', 'viz'], ['happi', 'mother', 'day'], ['yet', 'anoth', 'good', 'weekend', 'someon', 'sigh', 'man', 'like', 'boy'], ['fab', 'new', 'pic', 'way'], ['time', 'invit', 'ssm', 'grace', 'accept'], ['grace', 'funzen', 'magic', 'mood', 'tool', 'keep', 'cool', 'pool', 'real', 'life'], ['good', 'morn', 'everyon', 'nice', 'day', 'iloveitwhen', 'sun', 'shine', 'go', 'write', 'stuff'], ['near', 'month', 'excit'], ['unassum', 'unpretenti', 'suppos', 'endear', 'relat'], ['sure', 'left', 'audienc', 'awestruck', 'katherin', 'look', 'forward', 'read', 'wonder', 'report'], ['yay', 'twitter'], ['found', 'control', 'left', 'hand', 'peopl', 'like', 'twitterrif', 'excel'], ['haha', 'sound', 'like', 'go', 'heap', 'fun', 'xx'], ['okay', 'quot', 'crawl', 'quot', 'bed', 'umm', 'umm', 'talk', 'need', 'talk', 'someth', 'good', 'night', 'tweeter'], ['quit', 'amus', 'watch', 'pangaea', 'sing', 'quot', 'f', 'killah', 'priest', 'quot', 'guess', 'not', 'featur', 'album'], ['thanx', 'peep', 'follow'], ['sound', 'like', 'perfect', 'way', 'spend', 'sunday', 'even', 'enjoy'], ['yesterday', 'awesom', 'sunni', 'day', 'best', 'friend', 'good', 'food', 'amp', 'ton', 'fun', 'could', 'ask'], ['think', 'morn', 'not', 'worri', 'soon', 'pass'], ['welcom', 'go', 'repost', 'sever', 'time', 'get', 'messag', 'mayb', 'help', 'anoth', 'dog'], ['pineappl', 'rock', 'bud'], ['thank', 'jona'], ['check', 'green', 'day', 'demand', 'amp', 'saw', 'new', 'live', 'video', 'right', 'blow', 'mind', 'love', 'sgb', 'even', 'time', 'mom'], ['crack', 'night', 'last', 'night', 'not', 'think', 'ever', 'laugh', 'much', 'nice', 'lazi', 'day', 'today', 'woop'], ['saw', 'tonight', 'well', 'great', 'movi', 'hope', 'well', 'mate', 'cheer', 'e'], ['move', 'great', 'especi', 'lot', 'help'], ['woo', 'hoo', 'congratul'], ['printchick', 'thank', 'sharen', 'love'], ['helloo', 'gosh', 'miss', 'see', 'around', 'thought', 'last', 'night', 'amarula'], ['work', 'ina', 'good', 'mood'], ['sorri'], ['found', 'free', 'wifi', 'point', 'sunni'], ['celebr', 'mother', 'also', 'celebr', 'legaci', 'woman', 'god'], ['np', 'mate', 'great', 'meet', 'pragu'], ['church', 'went', 'mall', 'parent', 'got', 'new', 'backpack', 'fit', 'schoolbook', 'laptop'], ['order', 'mine', 'thank'], ['go', 'walk', 'around', 'hour', 'total', 'motiv', 'wahahaha'], ['welcom', 'home', 'babe'], ['star', 'trek', 'realli', 'good', 'love'], ['yay', 'get', 'extra', 'hmm', 'anyway', 'go', 'parti', 'hard', 'get'], ['film', 'usual', 'handl', 'fuji', 'oh', 'met', 'girl', 'san', 'diego', 'kwento', 'soon', 'miss', 'youu'], ['america', 'celebr', 'mother', 'day', 'differ', 'day', 'england', 'mother', 'day', 'american', 'mumzi', 'x'], ['yes', 'hate', 'boy'], ['fab', 'wed', 'yesterday', 'feet', 'still', 'sore', 'danc', 'must', 'good', 'sign', 'v', 'glad', 'wake', 'bed', 'morn'], ['enjoy', 'sound', 'idyl', 'geordiebird', 'lost', 'holiday'], ['not', 'wait', 'live', 'age', 'away', 'still', 'plan', 'go', 'wear', 'lol'], ['yeh', 'merch', 'shop', 'look', 'fab'], ['lala', 'littl', 'girl', 'love', 'new', 'song', 'answer', 'love', 'freaki', 'twitter', 'guy'], ['like', 'new', 'profil', 'pic', 'cute'], ['roast', 'yummi', 'think', 'mum', 'impress'], ['love', 'charg'], ['ad', 'new', 'icon', 'feedicon', 'databas', 'fun'], ['face', 'make', 'peopl', 'laugh', 'ugli'], ['bare', 'awak', 'eat', 'breakfast', 'marathon', 'morn', 'good', 'luck', 'racer', 'happi', 'mother', 'day'], ['hair', 'dy', 'today', 'ugh', 'bore', 'still', 'tire', 'friday', 'lol', 'swear', 'bossman'], ['march', 'quiet', 'regard', 'mother', 'day', 'sweet', 'wish'], ['not', 'use', 'heard', 'powershel', 'nice'], ['think', 'becom', 'obsess', 'kid', 'lt'], ['ok', 'saw', 'joey', 'thought', 'look', 'interest', 'like', 'thing', 'sanctuarysunday'], ['tiesto', 'vicki', 'park', 'excel'], ['best', 'italian', 'meal', 'ever', 'last', 'night', 'god', 'think', 'may', 'get', 'kitti', 'cat', 'today'], ['love', 'sissi'], ['came', 'back', 'first', 'citi', 'rooftop', 'parti', 'man', 'even', 'next', 'new', 'yorker', 'bldg', 'still', 'get', 'pretti', 'windi'], ['extrem', 'excit', 'day', 'behind'], ['watch', 'merlin', 'omg', 'cute'], ['would', 'rather', 'sit', 'bench', 'friend', 'psychiatr', 'patient', 'go', 'parti', 'quot', 'cool', 'quot', 'person'], ['ooh', 'yay', 'forev', 'sinc', 'last', 'ss', 'tv', 'bake', 'dinner', 'good', 'yummi', 'prawn', 'xx'], ['amp', 'star', 'great', 'sunday'], ['sound', 'nice', 'tri', 'recip', 'got', 'tell', 'turn'], ['shame', 'freud', 'not', 'follow', 'implic'], ['morn', 'someth', 'weekend', 'leftov', 'domino', 'noiic'], ['good', 'day', 'anoth', 'lindi', 'day', 'today', 'level', 'b', 'free', 'tester', 'olympiou', 'diamanti', 'floor', 'thessaloniki'], ['realli', 'worth', 'watch', 'cinema', 'mum', 'realli', 'enjoy'], ['entir', 'possibl'], ['bahah', 'would', 'realli', 'funni', 'would', 'realli', 'cut', 'haha'], ['oo', 'wish', 'hot'], ['good', 'thank', 'nice', 'even', 'father', 'cool', 'thank', 'link', 'way'], ['mom', 'not', 'twitter', 'go', 'post', 'anyway', 'love', 'mommi'], ['haha', 'fuck', 'hell', 'know', 'ay', 'shit', 'son', 'make', 'troubl', 'could', 'take'], ['welcom'], ['love', 'love', 'say', 'love'], ['succes', 'cancertown', 'launch', 'yesterday'], ['know', 'sleep', 'rate', 'need', 'right'], ['cute'], ['wow', 'cute', 'pic'], ['mayb', 'miss', 'chanc', 'time'], ['sure', 'would', 'consid', 'offer', 'right', 'price'], ['happi', 'mother', 'day', 'mom'], ['haha', 'like', 'default', 'pictur', 'meow'], ['glad', 'went', 'glad', 'not', 'leav', 'earli', 'glad', 'afterparti', 'beth', 'back'], ['happi', 'mother', 'day', 'mommi', 'love', 'much', 'dono', 'id', 'without'], ['true', 'clean', 'cloth', 'good', 'thing', 'enjoy', 'day', 'love', 'new', 'avatar', 'way'], ['funnili', 'enough', 'roland', 'presid', 'social', 'club'], ['happi', 'mother', 'day', 'twitter', 'mom', 'sent', 'mom', 'sleepi', 'video', 'phone', 'call'], ['aww', 'ray', 'best', 'mean', 'lot', 'say', 'not', 'wait', 'hang', 'hope', 'soon'], ['sleep', 'sound', 'good', 'right'], ['grey', 'anatomi', 'fuckn', 'awesom', 'atm'], ['yep', 'good', 'morn', 'night', 'even', 'whatev', 'xd'], ['well', 'say', 'look', 'hot', 'pic', 'got', 'work', 'us'], ['final', 'went', 'found', 'song', 'sang', 'church', 'wellington', 'onlin', 'easier', 'expect', 'yay', 'googl', 'fb'], ['wish', 'happi', 'mother', 'day'], ['good', 'morn'], ['geek'], ['not', 'go', 'dwell', 'happen', 'pass', 'shame', 'support', 'life', 'x'], ['home', 'made', 'red', 'velvet', 'cupcak', 'pretti', 'damn', 'good', 'master', 'frost', 'goodnight'], ['see', 'messag', 'mandingo', 'hope', 'music', 'like'], ['decaf', 'tea', 'late', 'never', 'id', 'fli', 'around', 'room', 'justin', 'timberlak', 'host', 'funni', 'sketch', 'samberg'], ['alison', 'great', 'around', 'miley', 'love', 'meet', 'see', 'tell', 'give', 'shoutout', 'fan'], ['naplan', 'test', 'tuesday', 'wednesday', 'amp', 'thursday', 'afraid', 'math', 'one', 'english', 'not', 'much'], ['click', 'without', 'subscript', 'need', 'vote', 'tweet', 'today', 'best', 'list'], ['not', 'slept', 'good', 'long', 'time', 'feel', 'great'], ['yeah', 'thank'], ['sew', 'thing', 'nice', 'feel', 'crafti', 'product', 'foxi'], ['feel', 'grate', 'great', 'mum', 'famili'], ['thank', 'x'], ['givein', 'ladi', 'ga', 'ga', 'arun', 'money', 'get', 'hee', 'hee', 'love'], ['print', 'mom', 'amazon', 'gift', 'card', 'happi', 'mother', 'day', 'talk', 'last', 'minut'], ['send', 'bless'], ['came', 'tantal', 'close', 'ace', 'facebook', 'communism', 'quiz', 'one', 'question', 'quot', 'hope', 'britain', 'next', 'communist', 'quot', 'correct', 'answer'], ['enjoy', 'silenc'], ['good', 'next', 'month', 'go', 'awesom'], ['good', 'morn', 'everyon', 'hope', 'al', 'love', 'sunday', 'hope', 'not', 'rain', 'tomorrow'], ['favourit', 'photo', 'took', 'last', 'night', 'not', 'wait', 'see', 'pic'], ['guy', 'rock', 'tonight', 'la', 'love', 'ya', 'guy', 'cab', 'wait', 'see', 'anoth', 'awesom', 'show', 'soon'], ['eftel', 'great', 'nice', 'time', 'famili', 'dinner', 'forget', 'key', 'car', 'hmm', 'bless', 'anwb', 'back', 'germani'], ['alway', 'forget', 'much', 'fun', 'kyle'], ['woke', 'go', 'shower', 'go', 'nan', 'mother', 'day', 'lunch', 'happi', 'mother', 'day'], ['ah', 'final', 'home', 'comfi', 'bed', 'goodnight'], ['tri', 'put', 'veggi', 'soup', 'watch', 'bride', 'war', 'bodi', 'recov', 'hope', 'spring', 'back', 'tomorrow'], ['happi', 'mother', 'day', 'mother', 'mamma', 'mia', 'abba'], ['god', 'bless', 'dear', 'friend'], ['number', 'next', 'tweet', 'must', 'someth', 'realli', 'special'], ['right', 'ugghh'], ['happi', 'momi', 'day'], ['ali', 'amp', 'aj', 'new', 'album', 'summer', 'yay'], ['send', 'love', 'mother', 'day', 'wish', 'happi', 'day', 'ahead'], ['omg', 'booth', 'hallucin', 'latest', 'epi', 'bone', 'absolut', 'brilliant', 'quot', 'gud', 'lookin', 'guy', 'keep', 'open', 'mind', 'quot', 'lol'], ['morn', 'david', 'safe', 'journey', 'enjoy', 'time', 'state', 'xx'], ['thank', 'lot', 'kind', 'got', 'back', 'nice', 'drive', 'fun', 'car', 'drive', 'nice', 'day'], ['thank', 'ooh', 'see', 'read', 'desert', 'island', 'great', 'book'], ['fine', 'thank', 'guy', 'not', 'quak'], ['happi', 'mother', 'day'], ['sign', 'sign', 'repeat', 'not', 'annoy'], ['good', 'morn', 'jess', 'want', 'say', 'thank', 'everyon', 'follow', 'us', 'tell', 'friend', 'us', 'pleas', 'xx'], ['oh', 'god', 'final', 'found', 'someon', 'onlin', 'haha'], ['must', 'get', 'old', 'bent', 'second', 'thing', 'said', 'last', 'coupl', 'day', 'not', 'realli', 'turnon'], ['weird', 'subconsci', 'wonder', 'dream', 'next'], ['enjoy', 'good', 'day', 'not', 'forget', 'twitpic', 'xx'], ['yes', 'realli'], ['omg', 'excti'], ['yeah', 'poor', 'yao', 'hope', 'fun', 'look', 'laker', 'jerseyz', 'haha', 'enjoy', 'time', 'buddi'], ['omg', 'yr', 'like', 'goddess', 'prove', 'yr', 'love', 'amp', 'love', 'lead', 'back', 'fav', 'old', 'skool', 'track', 'x'], ['globe', 'theatr', 'better', 'romeo', 'amp', 'juliet', 'suppos', 'watch'], ['got', 'saturday', 'frame', 'sign', 'foto', 'last', 'night', 'valentino', 'rossi', 'aswel', 'ee', 'night'], ['use', 'yahoo', 'pipe', 'combin', 'feed', 'doabl', 'amp', 'reliabl', 'guess'], ['fight', 'mum', 'mother', 'day'], ['know', 'extrem', 'happi', 'would', 'not', 'chang', 'world', 'not', 'want', 'anybodi', 'els'], ['happi', 'mother', 'day', 'singl', 'dad', 'play', 'mom', 'dad', 'role', 'enjoy', 'day'], ['like', 'plane', 'train', 'automobil', 'best', 'luck', 'juan', 'pelota'], ['great', 'wee', 'visitor'], ['seen', 'game', 'websit', 'awesom', 'go', 'msn'], ['great', 'movi', 'best', 'welsh', 'flatmat'], ['cheer', 'john', 'thank', 'follow', 'look', 'forward', 'twitter', 'think', 'good', 'place', 'rant', 'xx'], ['watch', 'men', 'volleybal', 'tv', 'reason', 'not', 'good', 'women', 'beach', 'volleybal', 'not', 'quit', 'place'], ['cobra', 'mexican', 'bird', 'flu', 'bar', 'hate', 'play', 'mix', 'oh', 'shit', 'freez', 'frame'], ['seen', 'game', 'websit', 'awesom', 'go', 'msn'], ['love', 'pink', 'not', 'care', 'today', 'shall', 'not', 'tweet', 'hardcor', 'work', 'jami', 'nice', 'day', 'everyone', 'xxloser'], ['thank', 'huge', 'respons', 'bless', 'amp', 'congratul', 'us', 'anna', 'inde', 'famili', 'church', 'love', 'much'], ['came', 'back', 'see', 'boat', 'rock', 'amaz', 'cool', 'movi', 'definit', 'get', 'dvd'], ['goodnight', 'twittervers'], ['thank', 'judi', 'back'], ['happi', 'mother', 'day'], ['say', 'love', 'mom'], ['happi', 'happi', 'birthday', 'babi', 'girl', 'love', 'ya', 'hope', 'get', 'everyth', 'want'], ['happi', 'happi', 'birthday', 'babi', 'girl', 'love', 'ya', 'hope', 'get', 'everyth', 'want'], ['still', 'awak', 'way', 'better', 'reason', 'fantast', 'night', 'fantast', 'peopl', 'fantast', 'food'], ['strang', 'day', 'forget'], ['morn', 'love', 'day', 'last'], ['cup', 'tea', 'cold', 'tast', 'realli', 'good'], ['yesterday', 'fun', 'concert', 'year', 'know', 'late', 'xd', 'buena', 'vista', 'social', 'club', 'live', 'free'], ['tweet', 'thought', 'rememb', 'see', 'one', 'not', 'see', 'glad', 'teatre', 'ok'], ['text', 'hope', 'know', 'favorit'], ['quot', 'thick', 'pig', 'shit', 'went', 'oxford', 'quot', 'helena', 'cantab', 'friend', 'descript', 'boyfriend', 'yesterday'], ['kind', 'tire', 'enough', 'sleep', 'quot', 'migrat', 'quot', 'got', 'sing', 'along', 'haha'], ['littl', 'taylor', 'feel', 'sorri', 'way', 'spell', 'name'], ['hi', 'beauti', 'go'], ['week', 'away', 'huh', 'want', 'sip', 'got', 'shh', 'not', 'tell', 'love'], ['aww', 'thank', 'great', 'guy', 'weekend', 'far', 'hug', 'xx'], ['laugh', 'glad', 'self', 'confid', 'wonder', 'trait', 'applaud', 'extra', 'loud', 'okay'], ['watch', 'battlestar', 'galactica', 'season', 'read', 'right'], ['also', 'tri', 'friend', 'fire', 'not', 'alreadi', 'heard', 'great', 'stuff', 'florenc', 'machin', 'great', 'great', 'music'], ['wolverin', 'awesom', 'love', 'great', 'actor'], ['good', 'point', 'mine', 'way', 'get', 'deliv', 'post', 'pic', 'wen', 'get'], ['happi', 'mother', 'day', 'mamma'], ['hous', 'dog', 'realli', 'sweet'], ['got', 'watt', 'chingo', 'bling', 'chile', 'not', 'thang', 'without', 'bgeezi', 'need', 'show'], ['lol', 'ahh', 'well', 'good', 'song'], ['mexican', 'coca', 'cola', 'bottl', 'new', 'favorit', 'thing', 'high', 'fructos', 'corn', 'syrup', 'sugar', 'awesom', 'old', 'school'], ['cool', 'lil', 'night', 'berri', 'eat', 'pizza', 'waitin'], ['hello', 'well', 'sunni', 'head', 'fuzzi', 'coffe', 'not', 'brew', 'yet', 'day'], ['predict', 'heavyweight', 'battl', 'laker', 'cleveland', 'final', 'well', 'hope', 'cross', 'finger'], ['watch', 'video', 'facebook', 'make', 'feel', 'like', 'biggest', 'creep', 'guess', 'also', 'tweet', 'woohoo'], ['lol', 'gt', 'not', 'mention', 'pleasur'], ['definit', 'separ', 'profession', 'robber', 'amp', 'amateur', 'one'], ['airsoft', 'horribl', 'hope', 'not', 'get', 'hurt'], ['munchin', 'bacon', 'butti', 'woohoo', 'fave'], ['haha', 'cute', 'beauti', 'r', 'cool'], ['eat', 'dillybar', 'dq', 'yuum'], ['talkin', 'special'], ['happi', 'mother', 'day', 'mother', 'especi', 'mine', 'enjoy', 'ya', 'day', 'mother'], ['happi', 'mother', 'day'], ['ay', 'buti', 'pa', 'kayo', 'uy', 'thank'], ['got', 'bouquet', 'flower', 'mom', 'heheh', 'sweet'], ['still', 'bit', 'warn', 'signal', 'head', 'say', 'quot', 'want', 'yesterday', 'headach', 'back', 'ok', 'get', 'coffe', 'quick', 'quot'], ['yes', 'bag', 'goodi', 'lol'], ['rofl', 'like', 'hear'], ['miss', 'quil', 'far', 'away'], ['print', 'mom', 'amazon', 'gift', 'card', 'happi', 'mother', 'day', 'talk', 'last', 'minut'], ['inde', 'thank', 'share', 'go', 'sleep', 'giggl', 'night'], ['sorri', 'hear', 'go', 'okay', 'tweet', 'away'], ['want', 'red', 'cruiser', 'not', 'like', 'one', 'lmfao'], ['happi', 'mother', 'day', 'go', 'later', 'pm', 'watch', 'well', 'renown', 'group', 'singer'], ['came', 'back', 'well', 'yesterday', 'hannah', 'movi', 'love', 'went', 'highest', 'part', 'cinema', 'danc', 'beauti', 'song'], ['got', 'finish', 'clean', 'put', 'mom', 'present', 'happi', 'mother', 'day', 'go', 'sleep'], ['miss', 'mom', 'today', 'best', 'friend', 'even', 'though', 'gone', 'sever', 'yrs', 'still', 'miss', 'dear', 'happi', 'mother', 'day'], ['good', 'morn', 'ate', 'pizza', 'breakfast'], ['happi', 'mother', 'day'], ['love', 'wake', 'think', 'weekday', 'realiz', 'weekend'], ['thank', 'xx'], ['man', 'aswel', 'love', 'want', 'gossip', 'girl', 'decid', 'summer', 'spend', 'lot'], ['rofl', 'not', 'wear', 'dark', 'grungi', 'though', 'ask', 'bradi', 'ok', 'said', 'yess'], ['good', 'morn', 'twitterworld', 'slept', 'less'], ['happi', 'mother', 'day'], ['still', 'awak', 'lol', 'finish', 'talk', 'realli', 'good', 'brawl', 'player', 'talk', 'join', 'websit', 'like', 'ssbb'], ['look', 'like', 'lot', 'fun', 'ladi', 'gaga'], ['hello', 'twit', 'world', 'best', 'buddi', 'bbq', 'until', 'jay', 'z', 'spotifi'], ['today', 'first', 'real', 'mother', 'day', 'son', 'actual', 'not', 'born', 'yet', 'last', 'year', 'not', 'wait', 'hug', 'get', 'home'], ['perfect', 'night', 'best', 'month', 'life', 'far', 'boo'], ['hey', 'not', 'wait', 'guy', 'come', 'jersey', 'woop', 'hope', 'lookin', 'coz', 'x'], ['yay', 'go', 'wyatt', 'total', 'amaz', 'happi', 'yay'], ['well', 'hover', 'button', 'lol', 'not', 'sleep', 'well', 'tiff', 'welcom'], ['best', 'night'], ['oh', 'cool', 'come', 'berlin'], ['love'], ['yay', 'let', 'us', 'welcom', 'mrs', 'mcnugget', 'twittervers'], ['read', 'maltes', 'sunday', 'newspap', 'coffe', 'aah', 'glorious', 'sunday'], ['bit', 'late', 'new', 'twitterif', 'interfac', 'iphon', 'cool', 'oh', 'richi', 'lauren', 'engag'], ['awak', 'earli', 'like', 'look', 'pictur', 'last', 'night', 'bloodi', 'awesom', 'word'], ['final', 'go', 'home', 'long', 'night', 'readi', 'crash', 'awesom', 'dream'], ['surpris', 'good', 'day', 'time', 'sleep', 'hope', 'sweet', 'dream', 'await'], ['meet', 'stranger', 'lol', 'alon', 'vega', 'amaz'], ['hate', 'english', 'day', 'everyday'], ['yeah', 'keep', 'think', 'someth', 'els', 'cari', 'grant', 'not', 'shabbi', 'either', 'bring', 'babi'], ['love', 'one', 'especi', 'shoe', 'anyway', 'gmn', 'punya', 'acc', 'lookbook', 'ya'], ['hehe', 'found', 'ya'], ['not', 'associ', 'fake', 'ass'], ['australian', 'scene', 'amaz', 'right', 'look', 'third', 'strike', 'chelsea', 'smile', 'bmth', 'day'], ['spent', 'last', 'two', 'hour', 'play', 'babe', 'hella', 'fun', 'love', 'lt'], ['excel', 'look', 'like', 'twitterif', 'competit'], ['right', 'action', 'grab', 'shower', 'grab', 'camera', 'think', 'walk', 'sunshin', 'along', 'canal', 'later', 'good', 'tweepl'], ['yes', 'hindustan', 'rock', 'dude', 'dunia', 'mein', 'asay', 'koi', 'fusion', 'nehi', 'milegi'], ['happi', 'mother', 'day', 'mommi', 'hope', 'good', 'day'], ['date', 'like', 'man', 'not', 'get', 'play', 'like', 'bitch'], ['thank', 'daughter', 'way', 'get', 'follow'], ['thank', 'appreci'], ['grandma', 'place', 'mum', 'celebr', 'mother', 'day', 'generat', 'come'], ['nice', 'one'], ['yucki', 'last', 'soccer', 'game', 'season', 'start', 'friday'], ['sound', 'delici'], ['nice', 'sunday', 'xx'], ['man', 'made', 'fat', 'ass', 'buger', 'mm', 'tast', 'fuckin', 'delici', 'love', 'food', 'eat', 'feel', 'lol'], ['season', 'wire', 'done', 'kind', 'weak', 'compar', 'first', 'season', 'expect', 'still', 'good', 'though', 'season', 'come'], ['well', 'anoth', 'twiiter', 'say', 'realli', 'let', 'us', 'say', 'could', 'fit', 'minibus'], ['hahah', 'lucki', 'wait', 'day', 'poop', 'lol', 'about', 'gold', 'coast', 'dnt', 'mind', 'ask'], ['nice', 'sunni', 'day'], ['good', 'morn'], ['awesom'], ['awesom', 'know', 'peopl', 'think', 'take', 'make', 'nashvill', 'offer', 'help', 'want'], ['nice', 'time', 'plenti', 'dream'], ['current', 'emarosa', 'new', 'album', 'shiit', 'haha'], ['episod', 'cri', 'saw', 'home', 'video', 'soo', 'cute'], ['new', 'pictur', 'bore'], ['not', 'work', 'today', 'car', 'back', 'perfect', 'go', 'random', 'shop', 'later'], ['vampir', 'knight', 'music', 'feel', 'special'], ['good', 'morn'], ['love', 'broughti', 'ferri'], ['sun', 'last'], ['bump', 'dj', 'opus', 'drunk', 'car', 'lmao', 'not', 'act', 'like', 'not', 'know'], ['good', 'morn', 'everybodi', 'happi', 'mother', 'day'], ['die', 'mg', 'cloth', 'black', 'money'], ['got', 'grubbi', 'paw', 'live', 'record', 'paramor', 'hear', 'better', 'chocol'], ['thank', 'becom', 'friend', 'twitter', 'selalu', 'ada', 'ruang', 'untuk', 'sahabat'], ['guten', 'good'], ['somebodi', 'smuggl', 'sydney', 'slave', 'etern'], ['fun', 'pleasant', 'surpris'], ['music', 'updat', 'leav', 'check', 'song', 'photograph', 'air', 'disco', 'friend', 'jack', 'stand', 'prodigi', 'enjoy'], ['woke', 'lil', 'better', 'lt'], ['still', 'mother', 'day', 'lunch', 'uncl', 'hous', 'nice', 'time'], ['love', 'famili', 'guy', 'hour', 'work', 'go'], ['bit', 'excit', 'bradi', 'lol'], ['happi', 'mother', 'day'], ['ever', 'met', 'guy', 'thatv', 'everyth', 'want', 'need', 'never', 'realli', 'went', 'daddi'], ['lmao', 'witti'], ['heard', 'slut', 'total', 'miss', 'mayb', 'next', 'time'], ['lol', 'yeah', 'mama', 'thank', 'happi', 'mama', 'day', 'laker', 'day', 'love'], ['wish', 'happi', 'mother', 'day', 'mother'], ['yes', 'super', 'laka', 'ng', 'ulan', 'buti', 'nalang', 'red', 'bandana', 'bodi', 'ko', 'lang', 'ang', 'wet', 'look', 'hahah'], ['right', 'glorious', 'day', 'sat', 'go', 'someth', 'activ', 'good', 'day'], ['ultim', 'train', 'look', 'forward', 'sunset'], ['thank', 'hon', 'project', 'bra', 'start', 'today'], ['support'], ['frist', 'post', 'find', 'new', 'car', 'parent', 'excit'], ['look', 'like', 'yet', 'anoth', 'beauti', 'day', 'london'], ['thank', 'song', 'awesom', 'sing', 'along', 'day'], ['not', 'ars', 'get', 'bed', 'hello', 'sunshin'], ['got', 'back', 'run', 'amp', 'feel', 'grreeaat'], ['beauti', 'sunshin', 'woke', 'litter', 'minut', 'later', 'start', 'rain', 'must', 'curs'], ['say', 'happi', 'mother', 'day', 'mom'], ['oh', 'good', 'thing', 'viral'], ['happi', 'mother', 'day', 'mom'], ['drunk', 'love', 'guy'], ['thank', 'littl', 'girl', 'love', 'anim', 'cute'], ['go', 'head', 'bed', 'hope', 'dream', 'consist', 'ravish', 'thing', 'zachari', 'quinto'], ['go', 'garden', 'centr', 'today', 'funn', 'current', 'drink', 'egyptian', 'spice', 'tea', 'watch', 'hollyoak'], ['morn', 'sweeti', 'cool', 'xx'], ['nako', 'umuulan', 'pa', 'naman', 'anyway', 'enjoy', 'bike', 'ride'], ['go', 'go', 'shower', 'goin', 'see', 'hannah', 'montana', 'laterz', 'woo', 'well', 'excit'], ['nkotb', 'world', 'best', 'place'], ['spend', 'great', 'time', 'famili', 'friend', 'thank', 'guy'], ['realli', 'tire', 'sunday', 'morn', 'xx'], ['forgot', 'pin', 'debit', 'card', 'thank', 'god', 'card', 'still', 'work', 'sever', 'attempt', 'bought', 'cake', 'sister', 'birthday', 'wheew'], ['woo', 'get', 'mine', 'monday', 'not', 'wait', 'x'], ['think', 'safe', 'say', 'not', 'alon', 'think'], ['sure'], ['shitload', 'fun', 'friend'], ['happi', 'mother', 'day', 'mom', 'hope', 'good', 'day'], ['oh', 'dear', 'rotten', 'life', 'lead', 'not'], ['aww', 'mom', 'appreci', 'much', 'familia', 'leav', 'tour'], ['listen', 'maroon', 'quot', 'song', 'jane', 'quot', 'one', 'favourit', 'album', 'time'], ['oh', 'dear', 'late', 'good', 'old', 'michigan', 'well', 'look', 'forward', 'chat', 'wake', 'hour', 'overlap'], ['much', 'enjoy', 'quot', 'name', 'quot', 'articl'], ['morrningg', 'slept', 'hour', 'headach'], ['great', 'photo', 'bravi', 'look', 'forward', 'upcom', 'pilot', 'itali'], ['feel', 'much', 'less', 'alon', 'love', 'fitzcarraldo', 'peopl', 'mention', 'idea', 'talk'], ['suck'], ['lost', 'hiatus', 'noo', 'back', 'school', 'tomorow', 'back'], ['need', 'ask', 'someth', 'lmao', 'love'], ['watch', 'run', 'fat', 'boy', 'soo', 'funni'], ['thank', 'love', 'way', 'happi', 'mother', 'day', 'mom'], ['went', 'john', 'grisham', 'instead', 'pleas', 'amp', 'never', 'suspect', 'thing', 'lol', 'hope', 'tomorrow', 'better', 'day'], ['love', 'read', 'littl', 'quot'], ['good', 'mood'], ['thank'], ['lol', 'peek', 'come', 'along', 'nice', 'total', 'understand', 'leav', 'set', 'quiet'], ['realis', 'much', 'love', 'sunday'], ['happi', 'mother', 'day'], ['love', 'lego', 'indiana', 'jone', 'aracheologist', 'dream'], ['kid', 'derbyshir', 'school', 'string', 'concert', 'buxton', 'opera', 'hous', 'today', 'quit', 'excit'], ['damn', 'right'], ['thank', 'busi', 'exam', 'tomorrow'], ['read', 'book', 'sunshin', 'goona', 'good', 'day'], ['congratul'], ['relax', 'work', 'mother', 'day', 'oh', 'well', 'good', 'day', 'hope', 'well'], ['buy', 'sleep', 'need'], ['fine', 'thank', 'wbu'], ['happi', 'mother', 'day'], ['hehe', 'yea', 'suppos', 'sound', 'mean', 'hahhaa'], ['awesom', 'milkshak', 'areo', 'mint', 'blend', 'like', 'lumpi', 'smoothi', 'chatter'], ['cool', 'bean', 'yeah', 'man', 'prob'], ['haha', 'dude', 'p', 'wish', 'novemb', 'also', 'turn', 'repli', 'pleas'], ['happi', 'mother', 'day'], ['sound', 'cool', 'liverpool', 'ace', 'especi', 'like', 'beatl', 'cos', 'museum', 'shop', 'dedic'], ['much', 'appreci', 'yeah', 'sure', 'challeng', 'great', 'reward', 'would', 'not', 'trade', 'anyth'], ['love', 'everryth', 'breadtalk', 'would', 'eat', 'whole', 'place', 'could'], ['good', 'morn', 'not', 'think', 'stop', 'rain', 'past', 'three', 'day', 'care'], ['oh', 'brilliant', 'idea', 'say', 'say', 'idea', 'woman'], ['saw', 'pic', 'awesom'], ['happi', 'mother', 'day', 'mom'], ['nutella', 'love', 'stalk', 'iri', 'breakfast', 'bed', 'courtesi', 'n', 'hous', 'til', 'noon'], ['aww', 'thank', 'soulmat', 'haha'], ['aww', 'bless', 'inde', 'come', 'day', 'woo'], ['happi', 'mother', 'day'], ['mccoy', 'initi', 'rant'], ['like', 'alreadi', 'new', 'follow', 'join', 'midst', 'zombi', 'mayhem'], ['work', 'paint', 'due', 'school', 'hate', 'sleep', 'damn', 'day', 'start', 'late'], ['hey', 'seen', 'music', 'live', 'funni', 'lol'], ['gatorad', 'first', 'thing', 'morn', 'yumyum', 'feel', 'shatter', 'must', 'aris', 'revis', 'tomorrow'], ['came', 'back', 'home', 'ne', 'gig', 'anoth', 'fun', 'night', 'workout'], ['listen', 'youtub', 'leonard', 'cohen', 'win', 'xfactor'], ['hi', 'get', 'tought', 'could', 'write', 'someth', 'today', 'go', 'go', 'shop', 'soo', 'fun', 'not'], ['bore', 'heheh', 'hate', 'ipt'], ['ngobrolin', 'favorit', 'band', 'moment', 'cii', 'kesian', 'ya', 'kamu', 'speakernya', 'rusak', 'hahaha', 'benerin', 'dong', 'ci'], ['love', 'hubbi', 'spray', 'tan', 'back', 'leg', 'hope', 'not', 'look', 'like', 'allsort', 'much', 'longer'], ['realli', 'alway', 'dirti', 'ha', 'ha', 'sex', 'addict'], ['oh', 'jealous', 'though', 'miss', 'fri', 'potato', 'bread'], ['good', 'morn', 'twitter'], ['best', 'sunday'], ['today', 'menu', 'not', 'worri'], ['lmfao', 'omgosh', 'first', 'heard', 'song', 'felt', 'like', 'go', 'pee', 'omgosh', 'waltzer', 'man', 'lol', 'xoxo'], ['happi', 'mother', 'day', 'beauti', 'mommi'], ['busi', 'love', 'time'], ['win', 'best', 'movi', 'ever', 'best', 'actress', 'singer', 'dancer', 'role', 'model', 'ever', 'lt', 'xoxo'], ['hey', 'samantha', 'welcom', 'happi', 'mother', 'day'], ['feel', 'better', 'today'], ['happi', 'mother', 'day', 'mom', 'love', 'alway'], ['got', 'back', 'kuantan', 'soo', 'much', 'fun'], ['great', 'song', 'cobra', 'starship', 'feat', 'leighton', 'meester'], ['woo', 'recov', 'run', 'race', 'life', 'yest', 'manag', 'min', 'not', 'bad', 'absolutley', 'trian'], ['keep', 'chill'], ['not', 'mind', 'whistler', 'actual', 'whistl', 'tune', 'whistl', 'noth', 'drive', 'crazi'], ['bought', 'awesom', 'shooeess'], ['band', 'recommend', 'steph', 'gt', 'paramor', 'els', 'great', 'band', 'consist', 'gt', 'hayley', 'william', 'josh', 'farro', 'zac', 'farro', 'jeremi', 'davi', 'best', 'band'], ['thank', 'usual', 'learn', 'happen', 'get', 'littl', 'rest', 'review', 'note', 'remind', 'would', 'better', 'get', 'rest'], ['forward', 'start', 'teach', 'new', 'student', 'hypnosi', 'plenti', 'laugh', 'sure'], ['yeah', 'like'], ['tamlyn', 'wish', 'cool', 'sock', 'draw'], ['hey', 'watch', 'not', 'post', 'mani', 'advert', 'twitter', 'feed', 'would', 'not', 'normal', 'follow', 'blog', 'interest'], ['omg', 'best', 'roast', 'ever', 'full', 'haha'], ['happi', 'mother', 'day'], ['still', 'cross', 'finger', 'fun', 'group'], ['thank', 'babe', 'guess', 'find', 'right', 'person', 'one', 'day', 'til', 'better', 'alon'], ['final', 'home', 'tomorrow', 'day', 'quot', 'amaz', 'quot'], ['yaay', 'back', 'love', 'read', 'tweet', 'p'], ['sure', 'repeat', 'soon', 'seem', 'tv', 'quit', 'lot', 'late', 'glad', 'mention', 'last', 'night', 'watch'], ['thank', 'hun', 'next', 'time', 'go'], ['took', 'advic', 'enjoy', 'small', 'alon', 'would', 'come', 'lol'], ['not', 'know', 'mayb', 'flu', 'feel', 'bitbett'], ['happi', 'mom', 'day', 'well', 'mani', 'come'], ['good', 'morn', 'one', 'ore', 'day', 'yay', 'twittertakeov'], ['happi', 'mother', 'day', 'mom'], ['happi', 'mother', 'day', 'mom'], ['ooh', 'goodluck', 'rest'], ['listen', 'song', 'myspac', 'realli', 'good'], ['well', 'take', 'not', 'cope', 'set', 'fox'], ['know', 'share', 'sun', 'shine', 'bright', 'africa'], ['drive', 'fast', 'much', 'fun', 'went', 'hahaha', 'goodnight'], ['watch', 'america', 'next', 'top', 'model', 'yah', 'haha'], ['mention', 'spend', 'time', 'two', 'bffs', 'total', 'worth'], ['aww', 'love', 'pic'], ['make', 'mix', 'minut', 'far', 'aim', 'minut', 'love', 'far', 'dj', 'sugarfre'], ['realli', 'cool', 'pc', 'not', 'mac', 'well', 'oold', 'iphon', 'though'], ['amaz', 'night', 'girl'], ['facepanda', 'cool'], ['fast', 'check', 'submit', 'comment', 'oh', 'thank'], ['happi', 'mother', 'day', 'mom'], ['yea', 'look', 'good', 'flower', 'mean'], ['saw', 'star', 'trek', 'not', 'hardcor', 'fan', 'anyth', 'realli', 'good', 'get'], ['lookin', 'forward', 'love', 'meal', 'grandpar', 'posh', 'italian'], ['start', 'peopl', 'come', 'us', 'go', 'short', 'stack', 'origin', 'still', 'ss'], ['soon', 'good', 'luck', 'brawn', 'mclaren', 'fix', 'look', 'sharp', 'p'], ['peep', 'remix', 'quot', 'wu', 'dynasti', 'quot', 'remix', 'tape', 'delay', 'give', 'idea'], ['mayb', 'memori', 'suck'], ['best', 'weekend', 'ever', 'xx'], ['hi', 'yes', 'not', 'absolut', 'terribl', 'earth', 'hear', 'good', 'tune', 'ear', 'lol'], ['loong', 'day', 'bed', 'cuddl', 'papabear', 'watch', 'south', 'park', 'yay', 'birthday', 'bbq', 'tomorrow', 'not', 'wait'], ['heey', 'awsom', 'god', 'bless'], ['ami', 'meredith', 'soccer', 'team', 'well', 'also', 'news', 'soccer', 'team', 'aswel', 'xx'], ['motorcycl', 'sale', 'road', 'mind', 'would', 'stupid', 'get', 'summer', 'month', 'away'], ['yay', 'happi', 'mother', 'day', 'fb'], ['head', 'theatr', 'show', 'tonight', 'exit'], ['bit', 'curious', 'much', 'pay'], ['busi', 'fun', 'mother', 'day', 'thank', 'got', 'wii', 'fit', 'yay'], ['excit', 'rove', 'tonight', 'jennif', 'garner', 'gina', 'riley'], ['lara', 'thank', 'much', 'ff', 'recommend'], ['thank', 'share', 'anyth', 'coffe', 'good', 'big', 'fan', 'not', 'live'], ['haha', 'dork', 'sound', 'yummi', 'share'], ['thxx', 'bathroom', 'said'], ['good', 'morn', 'twittertakeov'], ['ever', 'pointless', 'argument', 'drunk', 'mum', 'drunk', 'nan', 'drunk', 'mum', 'bf', 'dinner', 'fun', 'time', 'round', 'hahah'], ['yeah', 'tragic', 'need', 'haircut'], ['suffer', 'restless', 'leg', 'butt', 'syndrom'], ['omg', 'love', 'guy', 'thank', 'keepin', 'entertain', 'awak', 'missinmydgbigtym'], ['thank'], ['blogtv', 'fun', 'not', 'wait', 'til', 'next', 'time'], ['hehe', 'funni', 'midget', 'thing', 'cheer', 'alex', 'wave', 'germani', 'right', 'spain'], ['happi', 'even', 'make', 'laundri', 'wonder'], ['excit', 'tour', 'fotc', 'idea', 'see', 'tomorrow'], ['empitom', 'epic', 'fail', 'know', 'epic', 'fail'], ['good', 'day', 'drive', 'mountain', 'visit', 'kati', 'eat', 'chip', 'amp', 'fudg', 'stock', 'love', 'smell', 'soap'], ['yvonn', 'thank', 'ffrecommend', 'love', 'profil', 'photo', 'agre', 'quot', 'sleep', 'quot', 'lol'], ['saw', 'new', 'star', 'trek', 'movi', 'yesterday', 'good', 'quiet', 'day', 'today', 'gym', 'lunch'], ['least', 'get', 'closer', 'normal', 'bedtim', 'enjoy', 'trip', 'keep', 'us', 'updat', 'sweet', 'dream'], ['want', 'know', 'not', 'like', 'hun', 'know', 'go', 'back'], ['oh', 'love', 'sunday', 'morn', 'like', 'mum', 'made', 'scrambl', 'egg', 'toast'], ['feel', 'higher', 'mt', 'everest'], ['chillin'], ['plop', 'twice', 'twice'], ['yeah', 'teas', 'boofi', 'buy', 'red', 'hair', 'extens', 'way'], ['oh', 'get', 'well', 'soon', 'alexa', 'take', 'rest'], ['oh', 'would', 'rivet', 'tv', 'trip', 'break', 'room', 'coffe', 'toothpick', 'eye', 'keep', 'open'], ['morrn', 'last', 'day', 'random', 'awesom', 'weekend', 'go', 'round', 'dbar', 'style', 'good', 'timezz'], ['emo', 'moment', 'mani', 'tear', 'love', 'famili', 'soror'], ['welcom', 'twitter', 'hope', 'would', 'not', 'long', 'saw', 'light', 'join', 'us'], ['home', 'go', 'sleep', 'goodnight', 'twitter', 'world'], ['happi', 'mother', 'day', 'kid', 'amp', 'mum'], ['basic', 'listen', 'miley', 'cyrus', 'fourteen', 'hour', 'love'], ['love', 'quot', 'good', 'girl', 'go', 'bad', 'quot'], ['haha', 'yeah', 'heard', 'leicest', 'home', 'self', 'movi', 'candi', 'amaz', 'even'], ['good', 'see', 'famili', 'good', 'day', 'today'], ['omg', 'mad', 'came', 'radio'], ['hi', 'twit', 'friend', 'happi', 'mother', 'day', 'beauti', 'amaz', 'mother'], ['chill', 'room', 'comput'], ['pack', 'trip', 'ascari', 'track', 'thank', 'bacardi'], ['watch', 'soon', 'love', 'new', 'york', 'sweet', 'lookout'], ['watch', 'dan', 'funni', 'haha'], ['good', 'morn'], ['yes', 'clear', 'relish', 'act', 'togeth', 'spark', 'perform', 'milk', 'laugh'], ['love', 'song', 'night', 'quot', 'quot', 'brad', 'paisley', 'happi', 'mother', 'day', 'love', 'amp', 'light', 'joy'], ['follow', 'not', 'either', 'way', 'realli', 'cool', 'tshirt', 'hey', 'johno', 'x'], ['say', 'diana', 'want', 'burn', 'pic', 'dvd', 'cd'], ['rees', 'piec', 'ili'], ['good', 'morn', 'chairman', 'board', 'live', 'thing'], ['anytim', 'not', 'match', 'stamina', 'nice', 'warm', 'comfi', 'bed', 'call', 'scream', 'night', 'ninja'], ['like', 'new', 'trend', 'next'], ['happi', 'mother', 'day'], ['go', 'bed', 'happi', 'mother', 'day', 'peopl'], ['not', 'wait', 'see', 'friday', 'hope', 'meet', 'guy', 'would', 'make', 'night', 'even', 'better'], ['sunris', 'blvd', 'east', 'awesom', 'get', 'sleep', 'yay'], ['morn', 'well'], ['aww', 'sweet'], ['great', 'day', 'anoth', 'one', 'await'], ['sunni', 'feel', 'realli', 'well', 'today', 'yippe'], ['perfect', 'thank', 'lt', 'lt'], ['chillin', 'hangov', 'hollyoak', 'plate', 'morn'], ['good', 'morn', 'everyon'], ['ohh', 'ok', 'thought', 'go', 'nut', 'mayb', 'pass', 'way', 'back'], ['nice', 'jet', 'ski', 'test', 'hope', 'book', 'go', 'well', 'cheer', 'ad', 'got', 'twitter', 'watch', 'gadget', 'show'], ['thank', 'yoou', 'twittertakeov'], ['discov', 'bug', 'new', 'netplay', 'build', 'publish', 'bug', 'fix', 'hope', 'new', 'beta', 'tomorrow'], ['nice', 'day'], ['listen', 'weightless', 'time', 'low', 'thank', 'make', 'listen'], ['gott', 'home', 'work', 'relax'], ['happi', 'mother', 'day'], ['final', 'made', 'mother', 'day', 'got', 'car'], ['lol', 'tri', 'take', 'old', 'man', 'eh', 'good', 'heheh', 'cute'], ['sleep', 'miss', 'fun', 'hey', 'dg', 'let', 'us', 'play', 'anoth', 'gamm', 'brian'], ['yeay', 'haha', 'thank', 'much', 'jiah'], ['anyon', 'big', 'finger', 'love'], ['chill', 'mcfli', 'last', 'night', 'absoulut', 'incred', 'love'], ['wow', 'good', 'idea', 'yesterday', 'alreadi', 'took', 'present', 'thank', 'anyway'], ['print', 'mom', 'amazon', 'gift', 'card', 'happi', 'mother', 'day', 'talk', 'last', 'minut'], ['still', 'thorough', 'enjoy', 'convers'], ['thank'], ['sanctuarysunday', 'awesom', 'news', 'leo', 'award', 'sanctuari', 'look', 'like', 'got', 'nomint', 'not', 'bad'], ['walk', 'cloud', 'sweet', 'novemb', 'lake', 'hous'], ['not', 'wait', 'make', 'call', 'tomorrow', 'got', 'keep', 'move', 'forward'], ['thank', 'headsup', 'tour', 'book', 'ticket', 'palac', 'june'], ['realli', 'want', 'see', 'not', 'wait', 'thursday'], ['welcom', 'twitter', 'let', 'know', 'question', 'would', 'love', 'help'], ['aw', 'taxi', 'man', 'go', 'fast', 'mee'], ['love', 'simpl', 'safari', 'toolbar'], ['thank'], ['today', 'go', 'two', 'year', 'best', 'two', 'year', 'ever'], ['watch', 'find', 'nemo', 'nephew', 'cute'], ['njoy', 'sunday', 'plce', 'learn', 'joomla'], ['happi', 'mommi', 'day', 'mother', 'world'], ['parent', 'teacher', 'thing', 'yesterday', 'bore', 'go', 'skl', 'saturday', 'lol'], ['anticip', 'make', 'cup', 'tea', 'agre', 'must', 'happen', 'awesom'], ['oh', 'cute', 'poppi'], ['thank'], ['happi', 'mother', 'day'], ['thank', 'new', 'work', 'arriv', 'week'], ['weetabix', 'choco', 'milk', 'yum'], ['aww', 'thank', 'inde', 'graduat', 'friday', 'final', 'stand', 'teach', 'america', 'law', 'school'], ['ya', 'kelil', 'total', 'awesom', 'amaz', 'templ', 'cultur', 'amaz', 'thailand'], ['final', 'home', 'big', 'travel', 'ahh', 'time', 'realx'], ['thank'], ['let', 'us', 'hope', 'pray', 'go', 'wiser', 'way', 'let', 'us', 'hope', 'pray', 'go', 'wiser', 'way'], ['perfect', 'thank', 'enjoy', 'sunday', 'work'], ['think', 'fun', 'got', 'hide', 'defend', 'enemi', 'fun', 'huh'], ['cut', 'slice', 'chees', 'cake', 'make', 'everyth', 'better'], ['happi', 'mother', 'day', 'mommi'], ['haha', 'interest', 'haha'], ['sun', 'attempt', 'increas', 'effort', 'ala', 'not', 'said', 'see', 'bath', 'couch', 'amp', 'book', 'immedi', 'futur'], ['pleasur', 'great', 'recip'], ['thank', 'share'], ['thank', 'love'], ['rain', 'cat', 'dog', 'gda', 'sk', 'today', 'look', 'nice', 'window'], ['thank', 'tweet', 'use', 'set', 'ref', 'middl', 'ad', 'chapter', 'edit'], ['awesom', 'beer', 'pong', 'parti', 'hous', 'yard', 'tonight', 'go', 'sun', 'rise', 'offici'], ['hour', 'find', 'good', 'star', 'trek', 'film', 'realli', 'ticket', 'cost', 'euro', 'hope', 'worth'], ['realli', 'enjoy', 'podcast', 'time', 'listenen', 'show', 'def', 'listen'], ['enjoy', 'quot', 'gear', 'war', 'quot', 'pc', 'game', 'realli', 'good'], ['good', 'night', 'set', 'twitter', 'thing', 'new', 'expect', 'come', 'handi'], ['kyneton', 'breakfast', 'morn', 'slow', 'live', 'noic', 'beauti', 'sunni', 'autumn', 'day', 'drove', 'back', 'melb', 'via', 'daylesford'], ['thank', 'monday'], ['anoth', 'note', 'geodefens', 'easi', 'onward', 'medium', 'map', 'whole', 'world', 'pain', 'await', 'explor'], ['hope', 'hear', 'soon'], ['go', 'big', 'weekend', 'not', 'wait', 'see', 'x'], ['well', 'noth', 'flash', 'differ', 'chocol', 'chang', 'good', 'meet', 'yesterday', 'atmospher', 'amp', 'discuss'], ['aww', 'loov'], ['happi', 'mother', 'day'], ['went', 'shop', 'sport', 'tour', 'yesterday', 'garley', 'funni', 'need', 'brunch', 'shower'], ['come', 'year', 'wil', 'said', 'yes', 'would', 'good'], ['hey', 'thank', 'follow', 'love', 'name', 'elijah', 'go', 'name', 'son'], ['watch', 'eat', 'drunk', 'annoy', 'tri', 'realli', 'hard', 'not', 'glre'], ['go', 'al', 'need', 'check', 'one', 'store', 'hope', 'find', 'thing', 'look'], ['good', 'time', 'must', 'sleep', 'lol', 'gym', 'amp', 'danc', 'rehears', 'like', 'hour'], ['know', 'updat', 'realli', 'amus', 'prop', 'auction', 'much', 'baseship', 'bed', 'go'], ['nice', 'brunch', 'bay', 'thank', 'god', 'mommi'], ['thankyou', 'sugaar', 'way', 'leav', 'town', 'realli', 'hope', 'could', 'see', 'next', 'time', 'ya', 'ra', 'skrg', 'sempit', 'bgt', 'sih', 'waktunya', 'ya'], ['simpl', 'greet', 'unexpect', 'peopl', 'actual', 'lighten', 'mood', 'not', 'ever', 'happen'], ['pleas', 'settl', 'cheap', 'cider', 'meet', 'deadlin', 'seen', 'new', 'blog'], ['happi', 'mother', 'day', 'mother'], ['cool', 'not', 'wait', 'hear', 'stori', 'xoxo'], ['good', 'morn', 'fabul', 'morn'], ['go', 'eat', 'pasta', 'bake', 'favourit', 'food', 'later', 'go', 'flea', 'market', 'lilim'], ['ahh', 'okay', 'make', 'sens', 'start', 'prepar'], ['good', 'hear', 'morn'], ['not', 'frighten', 'like', 'see', 'boy', 'leather', 'go', 'everi', 'year', 'brilliant', 'atmo'], ['day', 'like', 'today', 'thank', 'mom', 'teach', 'proverb', 'thank', 'twitter', 'love'], ['mum', 'realli', 'happi', 'pretti', 'small', 'oh', 'wow', 'tomorrow', 'test', 'one', 'present', 'one', 'pasta', 'recepi'], ['saw', 'play', 'amaz'], ['day', 'till', 'birthday', 'hope', 'weather', 'good', 'best', 'good', 'thursday', 'friday', 'otherwis', 'il', 'scream', 'happi', 'keiron'], ['heheh', 'pretti', 'excit', 'though'], ['chillin', 'listen', 'tune'], ['come', 'apart', 'easi', 'enough'], ['excus', 'love', 'bein', 'comfi'], ['went', 'short', 'flight', 'around', 'geelong', 'waterfront', 'surpris', 'well', 'handl', 'still', 'exhaust', 'last', 'week', 'meetup'], ['love'], ['happi', 'mother', 'day', 'not', 'got', 'mom', 'present', 'yet', 'print', 'amazon', 'gift', 'card'], ['thank', 'way', 'men', 'hairstyl', 'right', 'grow', 'hair', 'long', 'anyway', 'hope', 'good', 'weekend'], ['hope', 'mom', 'like', 'pamper', 'gift', 'sent'], ['lushh', 'wernt', 'manag', 'keep', 'lol', 'aww', 'amaz', 'xx'], ['mum', 'ask', 'us', 'thank', 'introduc', 'us', 'kenni', 'mother', 'day', 'dinner'], ['moral', 'support', 'student'], ['headach', 'morn', 'instead'], ['learn', 'play', 'guitar', 'one', 'best', 'thing', 'done', 'boredom'], ['amaz', 'happi', 'enjoy', 'sunday', 'xx'], ['read', 'lactos', 'stuff', 'eat', 'hard', 'chees', 'lactos', 'jump', 'joy', 'raini', 'day', 'yay'], ['busi', 'exam', 'week', 'come', 'alway', 'look', 'bright', 'side', 'life', 'whistl'], ['true', 'depend', 'coupl', 'person', 'found', 'ad', 'increas', 'fun', 'amp', 'increas', 'bond'], ['happi', 'birthday'], ['flu', 'allergi', 'not', 'matter', 'tri', 'squeez', 'sundayi'], ['brief', 'preview', 'omg', 'jame', 'creepi', 'role', 'scare'], ['hahaha', 'cartoon', 'mascot', 'go', 'monster', 'nice', 'detail', 'good', 'shadow', 'realist', 'tonsil'], ['happi', 'mother', 'day', 'mommi'], ['sound', 'like', 'great', 'day', 'enjoy'], ['go', 'mariah', 'never', 'listen', 'hater', 'fan', 'long', 'grate', 'music', 'not', 'wait', 'album'], ['westend', 'enjoy', 'sun'], ['not', 'get', 'lot', 'sleep', 'last', 'night', 'good', 'thing', 'read'], ['yeah', 'well', 'thank', 'blush'], ['happi', 'mother', 'day', 'tell', 'mom', 'awesom', 'madr', 'amp', 'great', 'exampl', 'archuleta', 'familia'], ['oh', 'know', 'aprreci', 'back', 'plan'], ['good', 'morn', 'tweepl', 'sun'], ['go', 'kill', 'person', 'went', 'manchest', 'kid', 'not', 'want', 'polic', 'door'], ['happi', 'mother', 'day'], ['good', 'morn', 'everyon'], ['love', 'random', 'act', 'kind', 'laughter'], ['day', 'still', 'tire'], ['sweet'], ['senior', 'ball', 'hella', 'fun', 'good', 'night'], ['happi', 'mother', 'day', 'show', 'love', 'beauti', 'amaz', 'mom', 'lt'], ['duckrac', 'bath', 'not', 'quit', 'work', 'especi', 'duck', 'polar', 'bear', 'seal', 'amp', 'whale'], ['print', 'mom', 'amazon', 'gift', 'card', 'happi', 'mother', 'day', 'talk', 'last', 'minut'], ['nice', 'see', 'tweet', 'sunday', 'may', 'celebr', 'mother', 'day', 'today', 'nice', 'yer', 'mom'], ['got', 'home', 'anoth', 'wonder', 'night'], ['haha', 'love', 'hmm', 'lol', 'need', 'good', 'band'], ['way', 'nab', 'youngster', 'go', 'best', 'friend', 'swear', 'younger', 'men', 'appar', 'go', 'longer'], ['made', 'email', 'pal', 'happi'], ['happi', 'mother', 'day', 'mom'], ['cute'], ['wtf', 'polyvor', 'enjoy', 'though'], ['love', 'song', 'lol', 'amaz', 'steph', 'xoxo'], ['feel', 'shit', 'nerv', 'trip', 'plastic', 'telescop', 'yesti', 'fell', 'wall', 'head', 'still', 'hurt'], ['omg', 'book', 'soo', 'funni'], ['soo', 'happi', 'final', 'kean', 'cipriano', 'repli', 'chat', 'messag', 'hope', 'not', 'fake'], ['good', 'morn', 'look', 'forward', 'listen', 'prodigi', 'radio', 'big', 'weekend', 'brought', 'album', 'yesterday', 'amaiz', 'tbqh', 'x'], ['forgiv', 'good', 'lord', 'time', 'wat', 'except', 'mighti', 'oracl', 'not', 'amp', 'ing', 'care', 'fulli', 'support', 'unixodbc'], ['go', 'ask', 'waldi', 'hope', 'make', 'new', 'keyword'], ['singapor', 'warm', 'blast', 'alreadi'], ['star', 'trek', 'not', 'disappoint', 'star'], ['hello', 'everyon', 'sit', 'rock', 'sam', 'air', 'best', 'classic', 'rock', 'station', 'twitter'], ['wish', 'mother', 'happi', 'mother', 'day', 'love', 'ya'], ['honour', 'friend'], ['work', 'hard', 'mayb', 'hard', 'work'], ['ok', 'bedtim', 'bonzo', 'got', 'done', 'math', 'homework', 'brain', 'done', 'day', 'nite', 'nite', 'great', 'day'], ['enjoy', 'fanci', 'meal', 'smtime', 'thr', 'joy', 'solitud', 'realli', 'enjoy', 'food', 'amp', 'lk', 'date', 'world'], ['okay', 'okay', 'sleep', 'realz', 'goodnight', 'follow'], ['hmm', 'dollhous', 'sound', 'pretti', 'good', 'think', 'download', 'tri', 'watch'], ['tell', 'friend', 'tie', 'rail', 'expect', 'tweet', 'tomorrow', 'headach', 'feel', 'tire'], ['woke', 'longest', 'sleep', 'nice', 'get', 'work', 'done', 'prep', 'next', 'wk', 'amp', 'free', 'k', 'come', 'home', 'tonight'], ['listen', 'heart', 'aka', 'took', 'car', 'need', 'hour', 'loong', 'day', 'tomorrow'], ['pretti', 'damn', 'good', 'friday', 'night'], ['got', 'home', 'anoth', 'amaz', 'night'], ['gloomi', 'day', 'not', 'stop', 'bliss', 'hope', 'ronaldo', 'score', 'derbi', 'match', 'today'], ['congrat', 'sarah', 'awsum'], ['happi', 'mother', 'day', 'mother'], ['ok', 'peep', 'good', 'morn', 'go', 'bed', 'hit', 'later'], ['wow', 'weather', 'amaz', 'today'], ['hehe', 'expert', 'eh'], ['swine', 'flu', 'victim', 'unit'], ['omg', 'dunk', 'dampier', 'massiv', 'big', 'up', 'love'], ['train', 'fost', 'tiberiu', 'lovin', 'la', 'noi', 'aflat', 'ca', 'sunt', 'imbecili', 'pest', 'tot', 'fun'], ['hat', 'slight', 'unexpect', 'yet', 'success', 'end', 'groul', 'day', 'night'], ['happi', 'mother', 'day', 'mom', 'especi', 'wonderfuli', 'mommi'], ['effort', 'though'], ['happi', 'mader', 'day'], ['yeah', 'exact', 'fan', 'overpow', 'hater', 'anyday', 'know', 'wat', 'wat', 'wnt', 'dnt', 'even', 'care', 'anymor', 'know', 'truth'], ['thank', 'dedic', 'lamb', 'unparallel', 'also', 'true', 'lamb', 'dedic', 'unparallel'], ['retweet', 'jesus', 'post', 'made', 'laugh', 'not', 'worri', 'not', 'sublimin', 'code'], ['take', 'dad', 'law', 'sunday', 'stroll', 'old', 'leigh', 'beauti', 'morn', 'say', 'hi', 'morri', 'lol'], ['hurray', 'old', 'friend', 'beer', 'ladi', 'friend'], ['hope', 'school', 'go', 'good', 'tomorrow'], ['yep', 'awesom', 'max', 'haha'], ['dig', 'download', 'film', 'mi', 'familia', 'love', 'itun'], ['went', 'quick', 'not', 'chanc', 'lol'], ['went', 'muslim', 'marriag', 'first', 'time', 'life', 'came', 'back', 'stomach', 'full', 'tasti', 'briyani', 'realli', 'like', 'much'], ['go', 'chop', 'tini', 'bit', 'one', 'two'], ['hahahah', 'lol', 'fun', 'aye', 'div', 'experi', 'love', 'spongebob', 'l'], ['one', 'good', 'gig'], ['hey', 'hey', 'happi', 'mother', 'day'], ['awesom', 'time'], ['great', 'exercis', 'sunday', 'morn', 'quot', 'stop', 'wheel', 'karma', 'quot', 'transform', 'negat', 'love', 'life'], ['realli', 'happi', 'n', 'leigh', 'thnx', 'share', 'happi', 'us', 'mean', 'world', 'us', 'love', 'ya', 'marta'], ['brent', 'cross', 'wow', 'live', 'close'], ['bonjour', 'twitterland'], ['happi', 'mother', 'day'], ['happi', 'mother', 'day', 'heidi', 'klum'], ['happi', 'mother', 'day'], ['got', 'home', 'interest', 'night'], ['alway', 'miss', 'not'], ['sit', 'bus', 'dublin', 'listen', 'tokio', 'must', 'know'], ['make', 'good', 'girl', 'go', 'bad'], ['find', 'someth', 'like', 'easi', 'get', 'good', 'gift', 'lot', 'money', 'honest', 'nowher', 'near', 'person', 'though'], ['dayss', 'ahh', 'super', 'excit', 'tell', 'heart', 'not', 'beat', 'jls', 'awesom', 'yesterday'], ['happi', 'mother', 'day', 'mommi'], ['good', 'morn', 'world', 'hope', 'everyon', 'ok'], ['wish', 'peopl', 'would', 'notic'], ['g', 'morn', 'rain', 'rain', 'not', 'care', 'much'], ['lan', 'poker', 'much', 'fun', 'someon', 'help', 'rememb', 'ki', 'compr', 'chal', 'raha', 'hai', 'abhi'], ['friend', 'true', 'fan'], ['happi', 'mother', 'day', 'wonder', 'mom'], ['not', 'think', 'bear', 'cute', 'earli', 'day', 'kudo', 'fair', 'empress'], ['print', 'mom', 'amazon', 'gift', 'card', 'happi', 'mother', 'day', 'talk', 'last', 'minut'], ['wait', 'final', 'shipwreck', 'start', 'goodtim', 'lt'], ['discov', 'great', 'site'], ['money', 'world', 'could', 'never', 'make', 'happi', 'mom', 'son'], ['sat', 'pjs', 'drink', 'tea', 'watch', 'polit', 'show', 'love'], ['nice', 'see', 'euruko', 'pictur', 'big', 'screen', 'confer', 'break'], ['home', 'cours', 'ass', 'day', 'n', 'visit', 'boy', 'rob', 'mother', 'yo', 'mutha'], ['relat', 'ruin', 'wp', 'blog', 'mani', 'time', 'warn', 'quot', 'back', 'quot'], ['ok', 'point', 'taken', 'tell', 'team', 'stop', 'cynic', 'champion', 'standard', 'far', 'better', 'anyway'], ['unfortun', 'peopl', 'work', 'let', 'bad', 'morn', 'offici', 'reveng', 'dish', 'best', 'serv', 'cold'], ['ali', 'like', 'wonder', 'sunday'], ['funni', 'gnight'], ['hmm', 'tasti', 'go', 'curri', 'rice', 'pea', 'probabl'], ['alright', 'live', 'next', 'hour', 'vivid', 'spring', 'summer', 'music', 'rawk', 'enjoy'], ['like', 'tripl', 'got', 'lot', 'well', 'well', 'done'], ['set', 'excit', 'sunday', 'lol'], ['aw', 'thank', 'sam', 'phil', 'love'], ['yes', 'like', 'much', 'not', 'even', 'cheesi'], ['would', 'applaud', 'sort', 'good', 'theolog', 'psycholog', 'amp', 'sociolog', 'reason', 'agre', 'lighten'], ['found', 'food', 'engin', 'futur', 'life', 'cool', 'iphon', 'app', 'call', 'afterlif'], ['go', 'shop', 'mammyy', 'makeup', 'face', 'general', 'quit', 'nice', 'today'], ['episod', 'season', 'love', 'chuck', 'bass', 'go', 'short', 'stack', 'film', 'next', 'sat', 'make', 'flag'], ['hey', 'sherri', 'thanx', 'da', 'messag', 'wonder', 'could', 'follow', 'plzz'], ['oh', 'nice', 'someth', 'nice', 'next', 'week', 'go', 'madrid', 'next', 'weekend', 'day'], ['thankyou'], ['knoow', 'pizza', 'girl', 'episod', 'xd', 'lt'], ['pretti', 'least', 'think', 'need', 'catch', 'sleep', 'soon', 'though'], ['good', 'morn', 'mommi', 'happi', 'mother', 'day', 'pull', 'cat', 'tail', 'know', 'like'], ['listen', 'right', 'much', 'fun', 'get', 'somehow'], ['thursday', 'basic', 'noth'], ['welcom'], ['cool'], ['midwest', 'girl', 'close', 'yet', 'far'], ['well', 'mother', 'amp', 'grandma', 'bit', 'kid', 'mode'], ['wonder', 'imagin', 'ocean', 'us', 'not', 'far'], ['final', 'home', 'crazi', 'parti', 'thank', 'drive', 'home'], ['like', 'sound', 'love', 'beauti', 'love', 'wind', 'face'], ['welcom'], ['happi', 'birthday', 'littl', 'sister', 'gee', 'celebr', 'articl'], ['hope', 'mum', 'mother', 'day', 'love', 'close', 'famili', 'amp', 'friend'], ['like', 'fuck', 'still', 'drunk', 'hell', 'great', 'time', 'crazi'], ['ammoxx', 'great', 'day', 'woman', 'notic', 'smile', 'never', 'disappear', 'face', 'ha', 'murray', 'cos', 'owe'], ['wish', 'could', 'choos', 'band', 'play', 'trash', 'june'], ['happi', 'mother', 'day', 'american', 'mama'], ['hi', 'hun', 'realli', 'love', 'tutori', 'yday', 'soo', 'much', 'one', 'best', 'tutori', 'watch', 'long', 'time', 'xx'], ['hahahah', 'use', 'say'], ['great', 'day', 'woman', 'notic', 'smile', 'never', 'disappear', 'face', 'ha', 'murray', 'cos', 'owe'], ['sorri', 'could', 'not', 'help', 'tri', 'get', 'trend', 'topic'], ['ok', 'kind', 'thought', 'mean', 'would', 'funni', 'though'], ['amaz', 'time', 'danc', 'dj', 'dan', 'rubi', 'skye', 'tonight', 'still', 'look', 'roommat', 'sf', 'know', 'anybodi'], ['congrat', 'howi', 'hope', 'bring', 'littl', 'jame', 'germani', 'soon', 'wish', 'best', 'famili'], ['not', 'cancel', 'account', 'yet', 'not', 'log', 'sinc', 'novemb', 'think', 'mayb', 'main', 'rogu'], ['son', 'get', 'vote', 'today', 'coz', 'grown', 'love', 'care', 'man', 'love', 'mum'], ['anoth', 'note', 'total', 'love', 'pic', 'pic'], ['pretti', 'sure', 'sort', 'tweet', 'lose', 'follow', 'stuff', 'well', 'worth'], ['good', 'morn', 'drive', 'work'], ['new', 'hair', 'go', 'greeatt', 'use'], ['mm', 'look', 'yummi', 'good', 'see'], ['yes', 'done', 'last', 'homework', 'readi', 'dx', 'go', 'waalki', 'sun', 'shine', 'oh', 'yeah'], ['yeah', 'talk', 'bore'], ['happi', 'mother', 'day'], ['good', 'morn', 'everybodi'], ['thank', 'come', 'tonight', 'hope', 'ya', 'fun'], ['oh', 'watch', 'third', 'episod', 'jona', 'awesom'], ['hee', 'hee', 'way', 'thank', 'linkedin', 'tip', 'still', 'use', 'thank', 'advanc'], ['love', 'jumper'], ['realli', 'good', 'night'], ['hope', 'feel', 'better', 'soon'], ['oh', 'sweet', 'definit', 'check', 'get', 'chanc'], ['ooh', 'realli', 'well', 'know', 'alway', 'welcom'], ['happi', 'mother', 'day'], ['happi', 'lina', 'haha', 'birthdaypres', 'would', 'comment', 'new', 'video'], ['knew', 'mom', 'love', 'flower', 'love', 'rieger', 'begonia', 'hang', 'basket', 'seem', 'perfect'], ['complet', 'excel', 'dave', 'matthew', 'concert', 'jason', 'mraz', 'open', 'amp', 'heard', 'quot', 'stay', 'leav', 'quot', 'amp', 'quot', 'crush', 'quot', 'first', 'time', 'live'], ['happi', 'mother', 'day', 'mom'], ['aww', 'love', 'char', 'enjoy', 'lucki', 'food', 'lol'], ['love', 'britain', 'got', 'talent', 'last', 'night', 'shaun', 'greg', 'amaz', 'hot', 'not', 'say', 'notic'], ['happi', 'mother', 'day'], ['hallelujah', 'final', 'finish', 'career', 'assign', 'feel', 'finish', 'task', 'great', 'idea', 'mayb', 'lol'], ['quot', 'viewer', 'linkedin', 'profiel', 'also', 'view', 'barack', 'obama', 'francisco', 'van', 'jole', 'erwin', 'quot', 'good', 'compani'], ['fyi', 'also', 'turkish', 'star', 'war', 'rip'], ['happi', 'mother', 'day', 'valk'], ['thank', 'tadi', 'jam'], ['good', 'mornin', 'everyon', 'beauti', 'sunday', 'beauti', 'mom', 'breakfast', 'ladi', 'let', 'us', 'move'], ['happi', 'birthday'], ['grate', 'amaz', 'famili', 'bless', 'happi', 'mother', 'day', 'everyon'], ['funni', 'sit', 'extern', 'keyboard', 'mous', 'macbook', 'bed', 'look', 'strang', 'comfort'], ['mess', 'cross', 'kneel', 'bit', 'get', 'call'], ['happi', 'mother', 'day', 'not', 'got', 'mom', 'present', 'yet', 'print', 'amazon', 'gift', 'card'], ['nice', 'quiet', 'sunday'], ['hotel', 'thank'], ['great', 'night', 'ashleigh', 'make', 'good', 'danc', 'teacher', 'kick', 'ben', 'butt', 'pillow', 'fight'], ['thank'], ['good', 'morn', 'melodi', 'wish', 'wonder', 'mother', 'day', 'famili'], ['show', 'product', 'bit', 'behind'], ['sure', 'sleep', 'tell', 'favorit', 'part', 'tomorrow', 'laugh', 'pretti', 'much', 'whole', 'time'], ['alway', 'seem', 'know', 'exact', 'right', 'thing', 'say', 'thank', 'youregreat'], ['aww', 'bless', 'guy', 'cute', 'still', 'touch', 'bb', 'contest', 'xxoo'], ['new', 'friend', 'call', 'shame'], ['funni', 'cute', 'kid'], ['happi', 'sunday', 'sunshin', 'frankfurt', 'hope', 'mother', 'enjoy', 'day'], ['go', 'program', 'not', 'program', 'long', 'time'], ['one', 'favorit', 'ever', 'pleas', 'keep', 'great', 'work', 'john'], ['love', 'hat', 'cool', 'look', 'like', 'fun', 'day', 'love', 'use', 'word', 'quot', 'crikey', 'quot'], ['happi', 'momma', 'day', 'honor', 'mom', 'sign', 'maternalhealth', 'mother', 'luvin', 'kid'], ['cute', 'dog'], ['must', 'admit', 'first', 'saw', 'name', 'post', 'thought', 'exploit', 'attempt'], ['tri', 'play', 'john', 'travolta', 'quot', 'greas', 'lightn', 'quot', 'basslin', 'cool'], ['hey', 'web', 'url', 'look', 'good'], ['heya', 'thank', 'accept', 'add'], ['vacat', 'golden', 'time', 'spam', 'googl', 'redirect'], ['mother', 'day', 'went', 'lunch', 'celebr', 'went', 'shop', 'gift', 'mom'], ['go', 'back', 'bed', 'lol', 'enjoy', 'time', 'gym', 'sleep'], ['oh', 'hahah', 'ok'], ['star', 'treek', 'one', 'hot', 'guy', 'get', 'watch', 'hot', 'stuff', 'woo'], ['watch', 'camp', 'rock', 'eat', 'raspberri', 'rippl', 'icecream', 'awesom'], ['sign', 'night', 'good', 'sunday', 'night'], ['hope', 'abl', 'join', 'us', 'futur', 'edit'], ['pleas', 'wish', 'wife', 'evelyn', 'happi', 'mother', 'day', 'tell', 'hope', 'wonder', 'day', 'spoil', 'today'], ['not', 'happen', 'go'], ['great', 'weekend', 'ate', 'much', 'think', 'look', 'forward', 'trip', 'hobart', 'friday'], ['wolverin', 'awesom', 'love', 'great', 'actor'], ['thank'], ['glad', 'wore', 'black', 'rat', 'flowi', 'shirt', 'full', 'dozen', 'mix', 'oystser', 'seafood', 'platter', 'death', 'chocol'], ['thank', 'love', 'word', 'crikey', 'like', 'sayin'], ['morn', 'darlin', 'hope', 'feelin'], ['find', 'someon', 'give', 'massag', 'wish', 'could', 'half', 'world', 'away', 'lol'], ['quot', 'good', 'even', 'kind', 'sir', 'bow', 'quot'], ['oic', 'need', 'get', 'upgrad', 'space', 'want', 'use', 'prob', 'use', 'photoshop', 'dreamweav'], ['lol', 'half', 'alreadi', 'bulki', 'gear', 'super', 'slim', 'light', 'ssd', 'perform', 'unreal'], ['take', 'looki', 'sound', 'great'], ['happi', 'mother', 'day'], ['top', 'way', 'go', 'green', 'pretti', 'help', 'kind', 'cool', 'actual'], ['haha', 'better', 'drunken', 'tweet', 'mean'], ['meant', 'heavi', 'rain', 'n', 'flood', 'bkk', 'last', 'night', 'lucki', 'bkk'], ['worri', 'good', 'news', 'good', 'spread'], ['amaz', 'x'], ['read', 'book', 'call', 'quot', 'gamer', 'girl', 'quot', 'not', 'bad'], ['bow', 'glad', 'servic'], ['two', 'small', 'dog', 'good', 'hear', 'center', 'parc', 'wd', 'take', 'cruis', 'new', 'york', 'queen', 'mari', 'real', 'treat'], ['happi', 'mother', 'day', 'mom'], ['haha', 'drunk', 'golf', 'sound', 'awesom', 'predict', 'great', 'score', 'today'], ['thank', 'comment'], ['watch', 'standard', 'dvd', 'version', 'blu', 'uk', 'yet', 'effect', 'best', 'seen', 'home', 'system', 'yet', 'titti'], ['current', 'costa', 'coffe', 'like', 'place', 'sat', 'busi', 'loung', 'oo', 'businessi', 'today'], ['ice', 'skate', 'last', 'show', 'part', 'morn', 'mozart', 'awesom', 'not', 'wait', 'friday', 'saturday', 'love'], ['thank', 'link', 'vote', 'amp', 'send'], ['good', 'morn'], ['happi', 'mom', 'day'], ['look', 'nice', 'atleast', 'haha', 'lt'], ['twikini', 'enjoy', 'sun'], ['nice', 'meet', 'ya'], ['bit', 'earli', 'want', 'nice', 'lunch', 'good', 'time'], ['awesom', 'book', 'not', 'wait', 'film', 'enjoy', 'not', 'scare', 'x'], ['inde', 'look', 'forward', 'day'], ['happi', 'mother', 'day', 'esp', 'mommi'], ['walk', 'dog', 'horseforth', 'park', 'hangov', 'sunday', 'morn', 'yay'], ['happi', 'mother', 'day', 'mom', 'jah', 'tc'], ['would', 'love', 'ala', 'cub', 'would', 'not', 'gracious', 'enough', 'stop', 'wreck', 'hous', 'soak', 'bone'], ['haha', 'hi', 'mum', 'wow', 'yes', 'modern', 'need', 'get', 'facebook', 'account', 'talk', 'write'], ['thank'], ['alway', 'think', 'look', 'good', 'place', 'apperici', 'everyon', 'support', 'everi', 'site', 'join'], ['hello', 'biggest', 'fan', 'realli', 'carnt', 'till', 'new', 'moon', 'come', 'good', 'luck', 'nd', 'cast', 'film', 'xx'], ['good', 'morn', 'tweet'], ['moo', 'lol', 'copi', 'thing', 'look', 'good'], ['hi', 'thank', 'follow', 'good', 'luck', 'friend', 'ha'], ['see', 'think', 'thought', 'smile', 'caught', 'radio', 'big', 'daft', 'grin', 'face'], ['son', 'bitch', 'could', 'not', 'put', 'releas', 'alreadi', 'bought'], ['aww', 'sweet', 'wish', 'could', 'see', 'yourz'], ['done', 'run', 'feel', 'great', 'fatigu', 'speed'], ['lol', 'blow', 'kiss', 'catch', 'daddi', 'neway', 'chillin', 'hun', 'see', 'earli', 'sleep'], ['actual', 'love', 'nesquik', 'cereal'], ['great', 'weekend', 'one', 'hang', 'nick', 'amp', 'brendon', 'church', 'morn', 'not', 'believ', 'loretta', 'mother', 'day', 'raffl'], ['nice', 'love', 'amaz', 'singer', 'love'], ['ahh', 'babi', 'cute', 'happi', 'mother', 'day'], ['thank'], ['happi', 'mother', 'day', 'day'], ['john', 'john', 'switch', 'mean', 'pimp', 'someon', 'still', 'pwns', 'halo', 'wast', 'hahahaha', 'anoth', 'amaz', 'night'], ['mother', 'day', 'not', 'thnx', 'pm'], ['good', 'luck', 'pressur', 'test', 'not', 'worri', 'everyth', 'great'], ['happi', 'mother', 'day', 'mom', 'wonder', 'great', 'day'], ['spent', 'night', 'final', 'relax', 'nogard', 'wow', 'finish', 'work', 'need', 'take', 'small', 'break', 'art', 'realli', 'miss'], ['amaz', 'night', 'favorit', 'ladi', 'friend'], ['work', 'drunk', 'golfer', 'excit', 'not', 'bad', 'sir'], ['cool', 'wonder', 'not', 'sleep', 'much'], ['back', 'leg', 'kill', 'yesterday', 'big', 'old', 'leak', 'kitchen', 'look', 'like', 'stay', 'pjs', 'day', 'infront', 'tv'], ['hop', 'shower', 'help', 'tidi', 'room', 'shit', 'hole', 'mum', 'fuck', 'friend'], ['get', 'puppyy', 'name', 'think', 'romeo', 'cute'], ['love', 'mother', 'day'], ['love', 'uniqu', 'accordion', 'thief', 'buff', 'thank'], ['goin', 'cousin', 'soon', 'dog', 'soo', 'cute'], ['might', 'get', 'around', 'not', 'sure', 'make', 'flat', 'html', 'fun', 'fun', 'fun'], ['want', 'itt', 'got', 'itt'], ['turtl', 'shoe', 'make', 'awesom', 'coupl', 'shoe', 'could', 'talk', 'back', 'turtl', 'p', 'lol'], ['happi', 'mother', 'dat'], ['blind', 'faith'], ['fantast', 'actor', 'time', 'got', 'recognit'], ['got', 'yaay', 'realli', 'worri', 'phone', 'would', 'not', 'fit', 'glad', 'happi', 'mother', 'day', 'lol'], ['love', 'flock', 'ubuntu'], ['goodmorn', 'twitter', 'oh', 'gosh', 'woke', 'soo', 'nice', 'lol', 'oh', 'hai', 'thar', 'twittervers', 'happi', 'mothersday', 'everybodi', 'especi', 'mine'], ['happi', 'mother', 'day', 'mom', 'play', 'ago'], ['happi', 'mother', 'day', 'mom'], ['tri', 'not', 'fall', 'asleep', 'ancient', 'assign', 'drink', 'water', 'ice', 'lime', 'yum'], ['receiv', 'first', 'pressi', 'happi', 'happi'], ['fish', 'wow', 'listen', 'ska', 'pandora', 'lazi', 'sunday', 'morn'], ['lol', 'like', 'cult', 'haha'], ['head', 'feel', 'soo', 'much', 'better'], ['ohh', 'love', 'mors', 'everi', 'episod', 'video', 'amp', 'sometim', 'gaze', 'love'], ['fantast', 'friend', 'includ', 'sever', 'one', 'met', 'thank', 'life', 'amaz', 'peopl'], ['omg', 'right', 'hahaha', 'stupid'], ['ha', 'good', 'love', 'boy', 'cos', 'never', 'stir', 'hatr', 'mighti', 'red', 'scum', 'everyon', 'love', 'citi'], ['hey', 'mari', 'twitter', 'luvv', 'youu'], ['happi', 'mother', 'day', 'beaut', 'mum'], ['clean', 'day', 'today', 'run', 'stuff', 'set', 'schedul', 'week', 'feel', 'much', 'better', 'calmer'], ['buttfuck', 'stupid', 'silli', 'forget'], ['happi', 'mother', 'day', 'mom'], ['happi', 'mother', 'dayi'], ['haha', 'lol', 'english', 'work', 'doo', 'colleg'], ['realli', 'well', 'stay', 'long', 'need', 'definit', 'come', 'visit', 'look', 'forward'], ['good', 'girl', 'sarah', 'got', 'club'], ['winter', 'flu', 'twitter', 'logi', 'get', 'notic', 'haha', 'love', 'rove'], ['lol', 'current', 'player', 'brick', 'would', 'nice', 'someth', 'slim'], ['mayb', 'go', 'see', 'hannah', 'montana', 'movi', 'todaay', 'seen', 'one', 'time', 'not', 'wait', 'see'], ['happi', 'mother', 'day', 'tri', 'not', 'nail', 'teenag', 'tree'], ['not', 'wait', 'see'], ['happi', 'mother', 'day', 'mom'], ['happi', 'mother', 'day', 'everyon', 'still', 'play', 'pet', 'societi'], ['great', 'site', 'photo', 'fantast', 'use', 'visit', 'pembrok', 'inc', 'skomer', 'june'], ['wonder', 'day', 'gorgeous', 'girl', 'follow', 'dinner', 'drink', 'swede'], ['not', 'realli', 'nice', 'pic', 'could', 'imagin', 'thought'], ['lol', 'oh', 'dnt', 'worri', 'l', 'abl', 'squeez', 'soon', 'enough', 'hope', 'good', 'day', 'today'], ['thank', 'share'], ['good', 'weekend'], ['law', 'week', 'go', 'go', 'fuck', 'excit'], ['know', 'make', 'late', 'night', 'call', 'india', 'team', 'member', 'pictur', 'struggl', 'messag', 'thank'], ['great', 'sunbath', 'garden', 'afternoon', 'watch', 'ado', 'see', 'win', 'import', 'match', 'tv'], ['lol', 'mani', 'stalker', 'today', 'love', 'get', 'creepi', 'stalker'], ['glorious', 'sunni', 'day', 'london', 'town', 'drama', 'school', 'fight', 'peopl', 'sword', 'protect', 'romant', 'structur', 'face'], ['mcfli', 'gig', 'last', 'nightt', 'omg', 'amazin', 'not', 'sit', 'whole', 'thing', 'mcfli', 'see', 'best', 'mate', 'tutus'], ['love', 'smell', 'roast', 'oven', 'thank', 'idea'], ['love', 'ever', 'know'], ['precis', 'follow', 'import', 'feel', 'explain', 'bit'], ['great', 'make', 'sure', 'get', 'copi'], ['xd', 'hello', 'import', 'date'], ['sanctuarysunday', 'fav', 'charact', 'ashley', 'awesom'], ['break', 'back', 'book', 'fun', 'love'], ['mother', 'alreadi', 'bought', 'gave', 'mother', 'day', 'present', 'mother'], ['girlfriend', 'still', 'like', 'sesam', 'st'], ['rent', 'soon', 'hope', 'get', 'home', 'tonight', 'though', 'train', 'problem'], ['thank', 'share'], ['aww', 'lol', 'yh', 'worth', 'mcfli', 'worth', 'eekk'], ['thabk', 'made', 'feel', 'special'], ['final', 'got', 'twitter', 'let', 'us', 'hope', 'make', 'good', 'use', 'site'], ['quot', 'perfect', 'practic', 'make', 'perfect', 'quot'], ['cool', 'would', 'happi', 'contribut', 'futur', 'articl', 'enjoy', 'rest', 'weekend'], ['round', 'round', 'garden', 'amaz', 'thing', 'still', 'talk'], ['proud', 'watch', 'film'], ['day', 'home', 'today', 'prove', 'rather', 'love'], ['finnish', 'doubl', 'cheeseburg', 'good', 'readi', 'watch', 'spanish'], ['round', 'round', 'garden', 'amaz', 'thing', 'still', 'talk'], ['happi', 'mother', 'day', 'mama'], ['yay', 'live', 'demo', 'rhode', 'love', 'euruko'], ['awesom', 'sunday', 'servic', 'god', 'jesus', 'pray', 'man'], ['thank', 'much'], ['thank', 'follow'], ['um', 'glad', 'enjoy'], ['yesterday', 'year', 'anniversari', 'best', 'day', 'ever', 'yay', 'mcr'], ['not', 'think', 'isp', 'happi', 'us', 'weekend'], ['print', 'mom', 'amazon', 'gift', 'card', 'happi', 'mother', 'day', 'talk', 'last', 'minut'], ['darl', 'dd', 'say', 'quot', 'mum', 'best', 'friend', 'quot', 'told', 'tell', 'said', 'love', 'ya', 'moo', 'jd'], ['sort', 'oper', 'system', 'app', 'seper', 'drive'], ['great', 'hug'], ['welcom', 'love', 'cute', 'stuff'], ['garden', 'get', 'lot', 'fresh', 'air', 'love', 'sunday'], ['speakerphon', 'besti', 'love', 'kid'], ['pleas'], ['greet', 'everi', 'momma', 'happi', 'momma', 'day'], ['not', 'msn', 'case', 'lot', 'easier', 'hahaha'], ['kill'], ['happi', 'mother', 'day', 'mom', 'pseudo', 'stepmom'], ['learn', 'fli', 'higher'], ['morn', 'happi', 'mother', 'day', 'miz', 'thank', 'lanc'], ['yep', 'tri', 'beat', 'cold', 'winter', 'morn', 'swim', 'alway', 'good', 'start', 'day'], ['thank', 'clayton', 'go', 'favorit', 'greek', 'restur', 'church', 'mom', 'day', 'love', 'huckabe'], ['mom', 'happi', 'present', 'yayi'], ['aha', 'thank', 'jae'], ['book', 'amp', 'save', 'summer', 'amazon', 'villag', 'suit', 'best', 'place'], ['sshh', 'everybodi', 'think', 'asleep', 'not', 'disturb'], ['hey', 'hope', 'right', 'watch', 'warm', 'gp', 'spain'], ['spent', 'time', 'guild', 'war', 'birthday', 'updat', 'menageri', 'welcom', 'new', 'featur', 'ranger', 'anyway'], ['caught', 'lunch', 'today', 'correct', 'stalk'], ['happi', 'mother', 'day', 'xx'], ['revis', 'continu', 'get', 'bore', 'tire', 'not', 'wait', 'get', 'interest', 'thing', 'week', 'half', 'left', 'though'], ['dan', 'public', 'transport', 'decid', 'everyth', 'north', 'london', 'utter', 'crap', 'southern', 'train', 'alright'], ['hear', 'lot', 'good', 'thing', 'new', 'trek', 'movi', 'see', 'dad', 'quot', 'fellow', 'treki', 'quot', 'would', 'like', 'see'], ['thank', 'agre'], ['happi', 'mother', 'day', 'strong', 'hard', 'work', 'mother', 'may', 'god', 'bless', 'famili'], ['fab', 'eh', 'feel', 'free', 'come', 'along', 'chat', 'drink', 'luigi', 'tomorrow'], ['well', 'thank', 'tri', 'rememb', 'put', 'somewher'], ['peopl', 'england', 'watch', 'one', 'thankyou'], ['avid', 'fan', 'playboy', 'magazin', 'love', 'magazin'], ['watch', 'live', 'near', 'excit', 'race'], ['happi', 'mother', 'day', 'mom'], ['better', 'believ', 'would', 'not', 'miss', 'world'], ['look', 'forward', 'ever', 'write', 'thing', 'misanthrop', 'must', 'peac', 'w', 'human', 'well'], ['stupid', 'alarm', 'lol', 'morn', 'twiit'], ['hope', 'happi', 'mother', 'day'], ['loov'], ['mm', 'noth', 'lucki', 'got', 'great', 'friend', 'like', 'cheer'], ['right', 'shower', 'littl', 'treasur', 'ill', 'see', 'later'], ['hour', 'til', 'plane', 'ahh', 'yay'], ['last', 'night', 'bad', 'guy', 'tri', 'enter', 'garden', 'alon', 'realli', 'got', 'scare', 'feel', 'realli', 'stupid', 'not', 'funni'], ['alway', 'bit', 'smug', 'denial', 'stuff', 'pretti', 'spectacular'], ['smell', 'cigarett', 'alcohol', 'least', 'like'], ['sweet', 'someth', 'new', 'show'], ['hid', 'passport', 'pant', 'genius'], ['happi', 'mother', 'day', 'favorit', 'mom'], ['agfest', 'pretti', 'awesom', 'load', 'peopl', 'lol'], ['thank', 'becam', 'ibm', 'master', 'inventor', 'realli', 'enjoy', 'blog', 'particular', 'vegan', 'tag'], ['gm', 'tweeter', 'happi', 'mother', 'day', 'mother', 'pretend', 'mother'], ['great', 'talk', 'toni', 'afternoon', 'go', 'give', 'anoth', 'go'], ['us', 'tweep', 'not', 'forget', 'call', 'mom', 'today'], ['happi', 'mother', 'day', 'gt', 'gt', 'gt', 'rose'], ['cool', 'nice', 'bless', 'ya', 'upto', 'love', 'l', 'xoxox'], ['happyy', 'mothersdayi', 'mummi', 'best'], ['mood', 'way', 'much', 'fun', 'lol', 'love', 'danc', 'techno', 'lt', 'amp', 'amp', 'set', 'back', 'lt', 'gnite'], ['europ', 'sound', 'finish', 'exam', 'teus', 'talk'], ['happi', 'mother', 'day', 'mom'], ['right', 'make', 'compromis', 'kill', 'us'], ['ahh', 'sunshin', 'delet', 'spam', 'email', 'day', 'bbq', 'sun', 'wonder'], ['ah', 'midday', 'great', 'time', 'breakfast'], ['haha', 'head', 'bigger', 'awwh', 'lol'], ['quot', 'said', 'quot', 'darl', 'happen', 'fall', 'asleep', 'carri', 'home', 'cuz', 'know', 'not', 'quot', 'quot', 'goodnight', 'twittererer'], ['haha', 'like', 'go'], ['love', 'degre', 'right', 'amaz', 'enjoy', 'melt', 'vega', 'l'], ['mother', 'day', 'drama', 'awesom'], ['happi', 'mother', 'day', 'mother', 'happi', 'mother', 'day', 'mother', 'miss', 'mom'], ['hehe', 'thank', 'advic', 'choos', 'shoe', 'three', 'hard'], ['nice', 'r', 'plan', 'oh', 'n', 'happi', 'mother', 'day', 'happen', 'b', 'mother'], ['sunday', 'morn', 'realis', 'film', 'snob', 'said', 'msn', 'entertain'], ['thank'], ['know', 'great', 'climb', 'soo', 'good'], ['chillax', 'hyde', 'park'], ['love', 'sunday', 'especi', 'still', 'pj', 'plan', 'get', 'time', 'soon'], ['sound', 'good'], ['awesom', 'look', 'sourc', 'well'], ['helloo', 'scene', 'peopl'], ['good', 'morn', 'people', 'look', 'like', 'go', 'nice', 'day', 'today', 'better', 'last', 'week', 'rain'], ['bought', 'ludi', 'rug', 'dog', 'best'], ['english', 'broken'], ['happi', 'mother', 'day'], ['good', 'role', 'model', 'like', 'yinz', 'think'], ['good', 'manag', 'turn', 'studio', 'envi', 'product'], ['congrad', 'shower', 'sound', 'like', 'fun', 'upcom', 'quot', 'jump', 'audienc', 'quot', 'wd', 'love', 'join'], ['excel', 'got', 'name', 'yet', 'not', 'forget', 'twitpic'], ['love', 'hairss'], ['local', 'coffeeshop', 'sold', 'shitti', 'stuff', 'last', 'time', 'quit'], ['would', 'not', 'call', 'cool', 'danger', 'reckon', 'fit', 'stupid', 'categori'], ['happi', 'mother', 'day', 'mum'], ['nah', 'realli', 'gradual', 'ptfe', 'tape', 'goe', 'mm', 'time', 'year', 'love', 'x'], ['good', 'morn', 'hun', 'promis', 'glad', 'like', 'love', 'day'], ['got', 'follow', 'go', 'look', 'forward'], ['headach', 'gone', 'thank', 'god', 'time', 'tea', 'think'], ['yay', 'nekkid', 'write', 'work', 'keep', 'warm', 'awe', 'alway', 'cactus', 'good', 'luck'], ['happi', 'mother', 'day', 'mum', 'also', 'sis', 'quot', 'mum', 'quot', 'jess', 'ahah'], ['heao', 'keen', 'next', 'weekend', 'mummi', 'lt'], ['thank', 'new', 'follow'], ['like', 'idea', 'elimin', 'bludger', 'beater', 'tackl', 'peopl', 'make', 'near', 'danger', 'book', 'quidditch'], ['kickoff', 'red', 'car', 'hope'], ['chang', 'mind', 'dammit', 'tsar', 'chang', 'mind', 'time', 'without', 'prior', 'notic'], ['fear', 'crept', 'alreadi', 'dismiss', 'let', 'thing', 'right', 'coz', 'time', 'feel', 'differ'], ['morn', 'final', 'got', 'stream', 'media', 'pc', 'via', 'wireless', 'router', 'much', 'easier', 'use', 'usb', 'dongl', 'ah', 'techi', 'simplic'], ['wish', 'birthday', 'massacr', 'would', 'come', 'australia', 'think', 'said', 'think', 'though'], ['great', 'time', 'celebr', 'mother', 'day', 'mom', 'best', 'job', 'earth'], ['almost', 'almost', 'thank', 'quot', 'good', 'save', 'quot', 'z'], ['juz', 'donat', 'chariti', 'not', 'feel', 'good', 'gave', 'good', 'workout', 'heavi', 'lift'], ['happi', 'birthday'], ['defo', 'not', 'wait', 'nice', 'afternoon', 'music'], ['tell', 'pete', 'look', 'sexi', 'beard'], ['sociolog', 'done', 'english', 'biolog', 'left', 'go', 'die'], ['realli', 'help', 'swear', 'lot', 'realiz', 'haha'], ['happi', 'hear', 'feel', 'fine'], ['firefli', 'weekend', 'scifi', 'channel', 'happi', 'man'], ['yes', 'sound', 'like', 'great', 'idea', 'messag', 'lj'], ['rt', 'entertain', 'night', 'bring', 'favourit', 'way', 'enjoy', 'music', 'togeth'], ['celebr', 'mother', 'day', 'appl', 'pie'], ['happi', 'mother', 'day', 'ladi', 'hope', 'wonder', 'day'], ['actual', 'also', 'thought', 'mother', 'day', 'may', 'rememb', 'pentecost', 'useless', 'complic', 'would', 'say'], ['hahah', 'seem', 'think', 'similar', 'way'], ['smile', 'everyth', 'work'], ['hello', 'yup', 'sure', 'xx'], ['sensat', 'ocean', 'white', 'portug', 'absolut', 'amaz', 'adoreii'], ['happi', 'mother', 'day', 'god', 'bless', 'amp', 'mother', 'worldwid', 'mother', 'natur', 'technolog', 'emot', 'motion'], ['happi', 'mother', 'day'], ['glad', 'not', 'uni', 'anymor'], ['say', 'gud', 'eve', 'guy', 'let', 'us', 'play', 'poker', 'facebook', 'yeah', 'not', 'read', 'poker', 'face'], ['son', 'captur', 'god', 'littl', 'girl'], ['made', 'card', 'mom', 'not', 'wait', 'see', 'smile', 'face', 'see'], ['would', 'love', 'hear', 'nokia', 'perspect'], ['think', 'recent', 'job', 'opportun', 'hope', 'get', 'one', 'gettng', 'readi', 'church'], ['littl', 'late', 'congratul', 'leah', 'happi', 'mother', 'day'], ['sensat', 'ocean', 'white', 'portug', 'absolut', 'amaz', 'adoreii'], ['obama', 'last', 'night', 'quot', 'cover', 'vote', 'apolog', 'fox', 'quot'], ['inde', 'live', 'life', 'edg', 'thing', 'one', 'foot', 'foul', 'law'], ['well', 'put', 'good', 'brother', 'fine', 'form'], ['never', 'late', 'need', 'buck', 'idea', 'stop', 'bunch', 'stuffi', 'old', 'reactionari'], ['string', 'dress', 'work', 'track', 'pleas', 'come', 'biggest', 'fan'], ['greet', 'happi', 'mother', 'day'], ['oh', 'realli', 'good', 'dude', 'thank', 'ad'], ['omg', 'luat', 'examenul', 'la', 'spss', 'happi'], ['read', 'cool', 'definit', 'get', 'one'], ['great', 'day', 'rain', 'keep', 'may', 'go', 'swim', 'instead', 'dine'], ['could', 'use', 'garageband', 'though', 'probabl', 'overkil'], ['answer', 'realli', 'cool', 'question'], ['love'], ['realli', 'bore', 'today', 'ate', 'bowl', 'ful', 'rasberri', 'grape', 'wait', 'dinner'], ['happi', 'mother', 'day'], ['happi', 'mother', 'day', 'everyon'], ['assign', 'actual', 'look', 'pretti', 'glad', 'chang', 'topic', 'last', 'minut'], ['thanki', 'pictur', 'soon', 'wash', 'love', 'good', 'satde', 'xx'], ['like', 'mr', 'piggl', 'mean', 'pickl'], ['thank', 'make', 'laugh'], ['haha', 'earli'], ['love', 'guy', 'get', 'ass', 'australia', 'decemb', 'birthday'], ['happi', 'mother', 'day', 'good', 'day'], ['two', 'favourit', 'convers', 'guy'], ['happi', 'mother', 'day', 'allergi', 'gay', 'oh', 'hope', 'miller', 'better', 'day'], ['hit', 'school', 'tomorrow', 'ahaha', 'stay', 'til', 'think', 'xx'], ['happi', 'mother', 'day', 'mother', 'grandmoth', 'furbabi', 'mommi', 'etc', 'head', 'breakfast', 'mom', 'short'], ['love', 'read', 'love', 'film', 'make'], ['hey', 'negat', 'primatech', 'handl', 'tube', 'decad', 'longer', 'hero'], ['haha', 'twitter', 'hard', 'though', 'not'], ['thank', 'follow', 'man'], ['sure', 'care', 'also', 'make', 'statement', 'not', 'parallel', 'idea', 'happen', 'seen'], ['happi', 'mother', 'day', 'twitter', 'mom', 'includ'], ['goodnight', 'everyon', 'happi', 'mother', 'day', 'mother'], ['happi', 'mother', 'day', 'mom'], ['oh', 'rock', 'horni'], ['whaattaatt', 'good', 'cook', 'realli', 'creativ', 'silli', 'sierra'], ['dap', 'best', 'lol'], ['pleas', 'come', 'onlin', 'hope', 'amaz', 'weekend'], ['unfortunatelli', 'norway', 'big', 'famili', 'happen', 'therefor', 'need', 'old', 'hit'], ['today', 'interest'], ['town', 'mother', 'nice', 'amp', 'sunni'], ['good', 'parti', 'last', 'night', 'although', 'extrem', 'tire', 'xd', 'bed', 'loung', 'around', 'watch', 'tv', 'sleep', 'day'], ['wow', 'coffe', 'hand', 'alreadi', 'outsid', 'peac', 'sunday', 'morn'], ['happi', 'mother', 'day', 'mum', 'love', 'lot', 'month', 'day', 'go', 'month', 'go', 'bbi', 'love', 'bash'], ['watch', 'wolverin', 'yesterday', 'spur', 'moment', 'kind', 'thing', 'awesom', 'proud', 'south', 'african', 'director'], ['sunset', 'view', 'beauti', 'room'], ['well', 'thank', 'import'], ['happi', 'birthday'], ['good', 'luck', 'chan', 'gue', 'kmrn', 'bawa', 'backpack', 'kosong', 'quit', 'help'], ['good', 'nation', 'formula', 'one', 'one', 'hour'], ['pretti', 'ladi', 'happi', 'mother', 'day', 'mother', 'futur'], ['bloodi', 'fed', 'lost', 'last', 'statement', 'r', 'hound', 'anoth', 'one', 'dodg', 'one', 'last', 'week'], ['awesom', 'get'], ['sit', 'go', 'home', 'week', 'not', 'wait', 'see', 'famili'], ['good', 'luck', 'auction'], ['go', 'watch', 'boy', 'stripe', 'pj', 'hope', 'not', 'cri'], ['gave', 'bike', 'thorough', 'wash', 'degreas', 'greas', 'think', 'realli', 'good', 'job'], ['amaz', 'time', 'last', 'night', 'mcfli', 'incred'], ['oo', 'show', 'french', 'skill', 'lol', 'thing', 'good', 'love', 'weather', 'outsid'], ['succes', 'follow', 'tayla'], ['happi', 'mother', 'day', 'love'], ['happi', 'mother', 'day', 'mommi', 'woman', 'man', 'long', 'someon', 'day']]
[0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
  • Import the train_test_split function from the Scikit-Learn package
In [107]:
from sklearn.model_selection import train_test_split
  • Use the train_test_split function to split arrays of X and y into training and testing variables
In [108]:
X_train, X_test, y_train, y_test = train_test_split(X, y,
                                                   random_state=0,
                                                   train_size=0.80)
  • Print the size of these new variables
In [109]:
print("Size of X_train: {}".format(len(X_train)))
print("Size of y_train: {}".format(len(y_train)))
print("\n")
print("Size of X_test: {}".format(len(X_test)))
print("Size of y_test: {}".format(len(y_test)))
print("\n")
print("Train proportion: {:.0%}".format(len(X_train)/
                                        (len(X_train)+len(X_test))))
Size of X_train: 14981
Size of y_train: 14981


Size of X_test: 3746
Size of y_test: 3746


Train proportion: 80%
  • Print random tweets, just to verify everything goes as expected
In [110]:
id = random.randint(0,len(X_train))
print("Train tweet: {}".format(X_train[id]))
print("Sentiment: {}".format(y_train[id]))
Train tweet: ['help', 'uni', 'assign', 'via', 'skype', 'got', 'love', 'connect', 'world', 'sudi', 'design', 'even', 'better']
Sentiment: 1

Model¶

  • Import the LogisticRegression model from Scikit-Learn
In [111]:
from sklearn.linear_model import LogisticRegression
  • Create s fit_lr function used to fit a Logistic Regression model on X and y training data
In [112]:
def fit_lr(X_train, y_train):
    model = LogisticRegression()
    model.fit(X_train, y_train)
    return model

POS/Neg Frequency¶

  • Use the build_freqs function on training data to create a frequency dictionary

  • use the frequency dictionary together with the tweet_to_freq function to convert X_train and X_test data to 2-d vectors

In [113]:
freqs = build_freqs(X_train, y_train)
X_train_pn = [tweet_to_freq(tweet, freqs) for tweet in X_train]
X_test_pn = [tweet_to_freq(tweet, freqs) for tweet in X_test]
In [114]:
model_lr_pn = fit_lr(X_train_pn, y_train)
print(model_lr_pn.coef_, model_lr_pn.intercept_)
[[ 0.00264615 -0.00194929]] [-0.55956082]

Count Vector¶

  • Use the fit_cv function on training data to build the Bag-of-Words vectorizer Transform X_train and X_test data by using the vectorizer
In [115]:
cv = fit_cv(X_train)
X_train_cv = cv.transform(X_train)
X_test_cv = cv.transform(X_test)
C:\Users\Administrator\anaconda3\lib\site-packages\sklearn\feature_extraction\text.py:524: UserWarning: The parameter 'token_pattern' will not be used since 'tokenizer' is not None'
  warnings.warn(
  • Fit the Logistic Regression model on training data by using the fit_lr function
In [116]:
model_lr_cv = fit_lr(X_train_cv, y_train)

TF-IDF¶

  • Use the fit_cv function on training data to build the Bag-of-Words vectorizer
  • Transform X_train and X_test data by using the vectorizer
In [117]:
tf = fit_tfidf(X_train)
X_train_tf = tf.transform(X_train)
X_test_tf = tf.transform(X_test)
C:\Users\Administrator\anaconda3\lib\site-packages\sklearn\feature_extraction\text.py:524: UserWarning: The parameter 'token_pattern' will not be used since 'tokenizer' is not None'
  warnings.warn(
  • Fit the Logistic Regression model on training data by using the fit_lr function
In [118]:
model_lr_tf = fit_lr(X_train_tf, y_train)

Performance Metrics¶

  • Import the accuracy score and confusion matrix from Scikit-Learn
In [119]:
from sklearn.metrics import accuracy_score
from sklearn.metrics import confusion_matrix
  • Use the fitted model_lr_pn (positive/negative frequencies) to predict X_test
In [120]:
y_pred_lr_pn = model_lr_pn.predict(X_test_pn)
  • Print the model accuracy by comparing predictions and real sentiments
In [121]:
print("LR Model Accuracy: {:.2%}".format(accuracy_score(y_test, y_pred_lr_pn)))
LR Model Accuracy: 77.92%
  • Plot the confusion matrix by using plot_confusion helper function
In [122]:
plot_confusion(confusion_matrix(y_test, y_pred_lr_pn))
Out[122]:
<module 'seaborn' from 'C:\\Users\\Administrator\\anaconda3\\lib\\site-packages\\seaborn\\__init__.py'>

Count Vector¶

  • Use the fitted model_lr_cv (Bag-of-words) to predict X_test
In [123]:
y_pred_lr_cv = model_lr_cv.predict(X_test_cv)
  • Print the model accuracy by vomparing predictions and real sentiments
In [124]:
print("LR Model Accuracy: {:.2%}".format(accuracy_score(y_test, y_pred_lr_cv)))
LR Model Accuracy: 88.52%
  • Plot the confusion matrix by using the plot_confusion helper function
In [125]:
plot_confusion(confusion_matrix(y_test, y_pred_lr_cv))
Out[125]:
<module 'seaborn' from 'C:\\Users\\Administrator\\anaconda3\\lib\\site-packages\\seaborn\\__init__.py'>

TF-IDF¶

  • Use the fitted model_lr_tf (TF-IDF) to predict X_test
In [126]:
y_pred_lr_tf = model_lr_tf.predict(X_test_tf)
  • print the model accuracy by comparing predictions and real sentiments
In [127]:
print("LR Model Accuracy: {:.2%}".format(accuracy_score(y_test, y_pred_lr_tf)))
LR Model Accuracy: 88.65%
  • Plot the confusion matrix by using the plot_confusion helper function
In [128]:
plot_confusion(confusion_matrix(y_test, y_pred_lr_tf))
Out[128]:
<module 'seaborn' from 'C:\\Users\\Administrator\\anaconda3\\lib\\site-packages\\seaborn\\__init__.py'>
  • Conclusion

Bag-of-words and TF-IDF seems to be more accurate than Positive and negative Frequencies, again these are not the only or best method but it seems efficiently accurate for the type of application we want to develope.

Mini-Pipeline¶

  • Final tweet used to check if the model works as well as we expected
In [129]:
my_tweet ="""ZEUZ @TIMbi: we have come to the end of our sentiment analysis for social media using NLP content!
And don't forget to try out other methods visit https://cqu.edu.cn ..."""
  • Create a predict_tweet function used to pre-process, transform and predict tweet sentiment
In [130]:
def predict_tweet(tweet):
    processed_tweet = process_tweet(tweet)
    transformed_tweet = tf.transform([processed_tweet])
    prediction = model_lr_tf.predict(transformed_tweet)
    
    if prediction == 1:
        return "Prediction is a positive sentiment"
    else:
        return "Prediction is a negative sentiment"
  • Predict my tweet sentiment by using the predict_tweet function!
In [131]:
predict_tweet(my_tweet)
Out[131]:
'Prediction is a negative sentiment'
In [ ]: